Hi,
I have website called abc.com and I want to implement a referral system for it. For example website users will have link like this and can share it to friends : abc.com?refcode=123456
I want to keep this 123456 on cookies so I create a code like this
When page loads like abc.com?refcode=123456, there is no problem but if visitor go to another page cookie value is becoming to zero (0). How can I keep this value on cookie in every page of my website?
I have website called abc.com and I want to implement a referral system for it. For example website users will have link like this and can share it to friends : abc.com?refcode=123456
I want to keep this 123456 on cookies so I create a code like this
- Code: Select all
<cms:set_cookie 'refcode' value="<cms:gpc 'refcode' method='get'/>" scope='global'/>
When page loads like abc.com?refcode=123456, there is no problem but if visitor go to another page cookie value is becoming to zero (0). How can I keep this value on cookie in every page of my website?