• I’m working on a site where it appears someone added text to the area where the Product Short Description goes. That is, the text appears on every single product page, but there’s nothing in any of the Product Short Description box when editing the product. If you do add something to the Product Short Description in the admin, it shows up under the text that’s already on the page.

    I looked through template files in the Woocommerce plugin folder as well in the them (X theme) files and even did an “entire local site” search in Dreamweaver after downloading all the theme and plugin files.

    Does anyone know what file I need to edit to change this?

    https://www.ads-software.com/plugins/woocommerce/

Viewing 1 replies (of 1 total)
  • Did you deactivate all plugins one-by-one and test? Its possible to do what you are seeing using custom css:

    .... :before {content:"added text"}

    With a custom css plugin, the css would be in the database.

    If its been done with php, have a look in functions.php for something like this:

    add_filter( 'woocommerce_short_description', 'some_function');
    function some_function($text) {
      return 'added text'. $text;
    }

    although your text search should have found it.

    Please post the url to a relevant page.

Viewing 1 replies (of 1 total)
  • The topic ‘Product Short Description Template’ is closed to new replies.