Dadou76620 Posted September 8, 2016 Share Posted September 8, 2016 Hello I have wanted to see the list of products on my website-hosting.tpl as products.tpl file located in (/templates/orderforms/premium_comparison). But the following code shows me nothing {foreach from=$products key=num item=product} {/foreach} Thank you for your future responses 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted September 9, 2016 Share Posted September 9, 2016 Hello I have wanted to see the list of products on my website-hosting.tpl as products.tpl file located in (/templates/orderforms/premium_comparison).But the following code shows me nothing that's because the $products array only exists in the cart - not outside of it... so that code will not work. to do what you want to do, you're going to have to do one of two things - and that's not including styling your website-hosting.tpl template to look like premium comparison (if that's what you want to do)... 1. you can either use Data Feeds to obtain product names, prices, descriptions etc 2. or write a hook to recreate the $products array - you probably wouldn't need as complicated an array as the one used in the cart, just one containing ids, names, descriptions, prices etc and then add a link to the product which will allow the ordering process to continue via the cart... i've posted similar hooks recently for getting various details such as bundle names, group descriptions etc - just do a search on my forum name and $products - but before coding the hook, make a note of what information you're actually going to need from it, e.g do you need to show multiple product groups, do you need sidebars for them (as in the cart), do you need to show multiple pricing options... the choices are endless and you can decide whether you want to keep it simple or complicated! 0 Quote Link to comment Share on other sites More sharing options...
Dadou76620 Posted September 21, 2016 Author Share Posted September 21, 2016 Thank you for your reply 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.