aliaspt Posted September 23, 2010 Share Posted September 23, 2010 Solved. Link to comment Share on other sites More sharing options...
Zenith Posted September 23, 2010 Share Posted September 23, 2010 Not something included by default. I just made an image of a size chart and uploaded with the product images. Link to comment Share on other sites More sharing options...
aliaspt Posted September 23, 2010 Author Share Posted September 23, 2010 I have considered that but my images sometimes are more than 3 and I'm afraid the customer won't notice all of them. I guess I'll just add it to the product description for now... No paid modules for that either? Link to comment Share on other sites More sharing options...
Zenith Posted September 23, 2010 Share Posted September 23, 2010 The only other way I can think of is to add the sizes to the attributes, this way they would show in the dropdown when a customer selects their size. Don't know about paid modules, I don't believe in paid modules for Open Source Software! Link to comment Share on other sites More sharing options...
aliaspt Posted September 23, 2010 Author Share Posted September 23, 2010 The problem is that the size chart is different for every manufacturer. I do have size attributes as a drop-down but customers need to know what their size is. So I wanted to stick size charts right under the size drop-down box. Hehe, I don't mind free stuff for sure! But I bet there aren't that many people willing to "donate" their labor like you do. Link to comment Share on other sites More sharing options...
Zenith Posted September 23, 2010 Share Posted September 23, 2010 What about using the "Features" option on the Product? Maybe try that. Link to comment Share on other sites More sharing options...
aliaspt Posted September 23, 2010 Author Share Posted September 23, 2010 I considered that, too. The tab it creates is called "Data Sheet" - not quite good for fashion stuff I sell. And I didn't see how I can add an image there. I can only give names to features and feature values. Didn't notice any other options... I have seen some other website has created CMS for size charts (I don't know if they are PrestaShop-based). The link looks like this: www.website.com/media/cms/sizechart/t_1.jpg. Maybe there is a way to create CMS like this? Link to comment Share on other sites More sharing options...
Zenith Posted September 23, 2010 Share Posted September 23, 2010 You can easily change the tab name via the Back Office translations page.If you have an image, what about uploading it as an attachment. Link to comment Share on other sites More sharing options...
aliaspt Posted September 23, 2010 Author Share Posted September 23, 2010 Ah, that's nice. Still don't know how to add an image to that tab, though. Concerning attachments, I believe they are for downloading, not for viewing. Link to comment Share on other sites More sharing options...
Zenith Posted September 23, 2010 Share Posted September 23, 2010 Can't add images to features tab i don't think, it's text only.Same thing really if it's an attached image, it will just open on the customers computer. Link to comment Share on other sites More sharing options...
aliaspt Posted September 24, 2010 Author Share Posted September 24, 2010 Thinking, thinking... I personally wouldn't want to download a size chart to view it. Just stick in the description perhaps? Link to comment Share on other sites More sharing options...
Zenith Posted September 24, 2010 Share Posted September 24, 2010 Yeah put it in the description, you can have HTML code. Link to comment Share on other sites More sharing options...
aliaspt Posted September 24, 2010 Author Share Posted September 24, 2010 It will be difficult to not notice it then for sure. Thank you! Link to comment Share on other sites More sharing options...
aliaspt Posted October 13, 2010 Author Share Posted October 13, 2010 Well, it appears that not everyone scrolls down the page. I still would like to add a size chart link right by the size drop-down box. Anyone could help please? Ideally, the link would scroll the page down to the size chart image (I have different size charts for various brands). Which file should be edited?Thanks! Link to comment Share on other sites More sharing options...
rocky Posted October 13, 2010 Share Posted October 13, 2010 You can manually edit product.tpl and add a link to the size chart there. I did that for the munum website. The size chart is displaying in thickbox. Would that work for you? Link to comment Share on other sites More sharing options...
aliaspt Posted October 13, 2010 Author Share Posted October 13, 2010 Rocky, that looks great! I would like it to just scroll down to the bottom of the page instead of popping up. Link to comment Share on other sites More sharing options...
rocky Posted October 14, 2010 Share Posted October 14, 2010 I simply created a CMS page containing the size chart image, then I added the following to product.tpl: <a href="{$base_dir}content/10-size-chart/?content_only=1&TB_iframe=true&width=700&height=470&thickbox=true" class="button thickbox">Size chart Change 10-size-chart to the friendly URL of your size chart CMS page and the height and width as necessary. 1 Link to comment Share on other sites More sharing options...
aliaspt Posted October 14, 2010 Author Share Posted October 14, 2010 Rocky, thanks so much for the code but I'm afraid it may not work for me. My brands have different size charts (depending on the country). Link to comment Share on other sites More sharing options...
rocky Posted October 14, 2010 Share Posted October 14, 2010 That's easy. Just go to Tools > Translations > Front Office translations > product section and enter "Size chart" as the translation for "More details", then click "Update translations" at the bottom of the page. Link to comment Share on other sites More sharing options...
aliaspt Posted October 14, 2010 Author Share Posted October 14, 2010 Great! That was easy indeed! Rocky, you are the BEST! Link to comment Share on other sites More sharing options...
tirm Posted December 5, 2010 Share Posted December 5, 2010 we also have same problem,what is product.dpl? Link to comment Share on other sites More sharing options...
rocky Posted December 6, 2010 Share Posted December 6, 2010 It is the file themes//product.tpl that you must edit. Link to comment Share on other sites More sharing options...
tirm Posted December 8, 2010 Share Posted December 8, 2010 But i m not making my website,i purchased it so dont have files. Link to comment Share on other sites More sharing options...
rocky Posted December 9, 2010 Share Posted December 9, 2010 If it is a PrestaShop website, then the file must be there, otherwise your product page wouldn't work. Link to comment Share on other sites More sharing options...
tirm Posted December 10, 2010 Share Posted December 10, 2010 can you help,where we found files plz? Link to comment Share on other sites More sharing options...
rocky Posted December 10, 2010 Share Posted December 10, 2010 I can't be any more specific. It is themes/prestashop/product.tpl if you are using the default PrestaShop theme (or customised it) or in another directory in the themes directory if you installed another theme. Link to comment Share on other sites More sharing options...
Dudinsky Posted May 23, 2011 Share Posted May 23, 2011 Hey,I think it depends how your product.tpl is builded (depends of your theme), but if you want to add a link to your size chart, you have to add the link after the code which calls created attributs, in my case the code is: {$group.name|escape:'htmlall':'UTF-8'} : {assign var='groupName' value='group_'|cat:$id_attribute_group} 0}$('#resetImages').show('slow');{/if}"> {foreach from=$group.attributes key=id_attribute item=group_attribute} {$group_attribute|escape:'htmlall':'UTF-8'} {/foreach} I think the code looks approximately the same on every themes. Link to comment Share on other sites More sharing options...
Bilegt Posted October 29, 2014 Share Posted October 29, 2014 On 12/10/2010 at 2:46 AM, rocky said: I can't be any more specific. It is themes/prestashop/product.tpl if you are using the default PrestaShop theme (or customised it) or in another directory in the themes directory if you installed another theme. Hey Rocky, I have seen your code here. My question is this possible to be changed that size chart according to products? what do you think? What I am saying is I don't want to list 20 or 30 lines of size chart in CMS, it is inconvenient for customer to find something from that list. If it is shoes chart will show only shoes, if it is bra size chart must show only bra size. Do you think it is possible? thanks 2 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now