My client is wanting to be able to populate custom data in a product page to include information contained in the link.
Say we send the customer the following link: http://magentostoreblahblah.com/productpage.html?VAR=DATA
Then the product page loads with DATA pre-loaded in the VAR field.
Is this possible? And what would it take.
Thank you
Solved! Go to Solution.
Override product detail page file with your theme.
And add following code to get value from url:
echo $this->getRequest()->getParam('VAR');
Issue resolved ?
Please press Kudos and accept as solution.
Override product detail page file with your theme.
And add following code to get value from url:
echo $this->getRequest()->getParam('VAR');
Issue resolved ?
Please press Kudos and accept as solution.
thank you