[quote name=‘Tash’]Hi, How easy is it to add a facebook etc, share button on my template? And can i just add links/buttons to my FB page using dreamweaver and then save the template before i upload everything? Or does it need to be done on the online Admin panel? I havent purchased CS Cart yet, but it seems to be really easy to use and has everything i need.[/quote]
It’s relatively easy. That would deppends on the code which will be used for the share button. You can use the “html block” function in the admin panel or put the code direct into the template file which in my opinion is better solution because of the block code. If you put some java script or other code in the block, it might not work properly like the FileZilla script.
only add facebok share button from product
skins/selected_skin/blocks/product_templates/default_template.tpl
{$product.product|unescape}
{assign var="rating" value="rating_`$obj_id`"}{$smarty.capture.$rating}
----------- add like this ------------
{$product.product|unescape}
{assign var="rating" value="rating_`$obj_id`"}{$smarty.capture.$rating}
i changed
{$product.product|unescape}
{assign var="rating" value="rating_`$obj_id`"}{$smarty.capture.$rating}
To this as i think it looks a bit better
{$product.product|unescape}
like>
{assign var="rating" value="rating_`$obj_id`"}{$smarty.capture.$rating}
Hi! I was looking exactly for this. I want to add the “like” buton in every product page but I use version 2.0.14 , which page should i modify in my cart version?
Another question: where do you think it will look better? right next to the producto name? Below the item photo? where?
I think you should change it to
{$product.product|unescape}
{assign var="rating" value="rating_`$obj_id`"}{$smarty.capture.$rating}
i hope my information is helpful.
owaa, were you replying my message? if it was an answer to me, I appreciate it but I ust repat that I use version 2.0.14 and can not upgrade for the moment,.
IN version 2.0.14 there is not suhc a path as:
skins/selected_skin/blocks/product_templates/default_template.tpl
So I must repeat the question, which file must i modify and where?
I appreciate your help in advance
For 2.0.1x
You can check it at
blocks/list_templates/details_page.tpl
thanks
thanksss…