- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-13-2020
08:41 AM
05-13-2020
08:41 AM
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.
Labels:
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2020
05:27 AM
05-29-2020
05:27 AM
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.
Problem solved? Click Accept as Solution!
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2020
05:27 AM
05-29-2020
05:27 AM
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.
Problem solved? Click Accept as Solution!
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2020
07:45 AM
05-29-2020
07:45 AM
Re: Populate Product custom variables using variable in address
thank you