What I would like to have is the sentence “Entre em contacto connosco para saber preços Aqui” just in product page, not in shop page. Please take a look in this page: http://www.kepaweleurope.com/shop/soutien-mamoplastia-85/
Does anybody can help me?
Thanks in advance
Miguel
The short description template is /templates/single-product/short-description.php :
You can override this (or any woo template) : http://docs.woothemes.com/document/template-structure/ by copying the file into your theme… so
woocommerce/single-product/short-description.php
. Then you can edit it as you like.EDIT: If I understand your question you would do this:
Or you could filter
woocommerce_short_description
. Or you could define your ownwoocommerce_template_single_excerpt()
function which is pluggable, or remove it entirely from its hook. There really are many ways to do this, but the template override tends to be the simplest to understand.EDIT: Here’s a very basic example of how to filter the short description (and in general filtering anything is always the same process)
Edit again: this goes in your theme’s functions.php
You can also use this thing with WordPress database for the product page.
in this code, you can put your own short description. I have also used condition. you can change it as per your requirement. this code you need to put in function.php file of your theme.