On the Product Description pages of my template, I have:
Like (facebook)
Tweet (twitter)
and "Pin It"
Also, I have "Review Product".
How do I hide these from the customer so they don't have that type of interaction?
Thanks,
Chris
On the Product Description pages of my template, I have:
Like (facebook)
Tweet (twitter)
and "Pin It"
Also, I have "Review Product".
How do I hide these from the customer so they don't have that type of interaction?
Thanks,
Chris
Those are not part of stock Zen Cart, so we would have to see your site to be able to advise. It is most likely part of the custom template you installed, so asking in the support thread for that template would be the quickest way to get informed help.
The reviews button can be turned off in admin > Catalog > Product Types > Product-General > edit layout > Show Product Reviews Button.
Perfect....I turned off the review button. Thanks for that. Now all I gotta do is turn off the social networking icons.
The site is here:
http://www.ski-hats.com/index.php?ma...roducts_id=184
The social links are in a div with id social-media, so you could hide them all with
#social-media {display: none;}
If you want more detailed control, there are ways to make more specific selectors. The best way to handle this would be to disable the code from processing to start with; that would probably be done in /includes/templates/your_template/common/tpl_footer.php, but the template creator could give the best advice. The "bottom bar" may be built in a new template-specific file.