• Hi,
    is there a way to Change Title (product-title) to <p> in WooCommerce Category Layout?
    In Product Page I have all name products with H3.

    <h3 class=”product-title”>PRODUCT NAME</h3>
    My goal is:
    <p class=”product-title”>…</p>

    Thank you very much

Viewing 3 replies - 1 through 3 (of 3 total)
  • Copy
    wp-content/plugins/woocommerce/templates/single-product/title.php
    to
    wp-content/themes/my-child-theme/woocommerce/single-product/title.php
    and edit the copy.

    Changing the styles to whatever your p styles are will probably be easier, for example:

    h3.product-title {
      margin: 4px 0
      font-size: 16px;
      font-weight: normal;
    }
    Thread Starter danielefelicetti

    (@danielefelicetti)

    Hi,
    thank you very much, but I’m so sorry, I misspoke then…

    I need to edit <h3> in <p>

    From:
    <h3 class = “product-title”>NAME PRODUCT</h3>

    To:
    <p class = “product-title”>NAME PRODUCT </p>

    Product in “WooCommerce” plugin. In functions.php or in which file .php I have to correct? Is it possible?

    Many thanks

    Yes I understand.

    Copy
    wp-content/plugins/woocommerce/templates/single-product/title.php
    to
    wp-content/themes/my-child-theme/woocommerce/single-product/title.php
    and edit the copy. Change h3 to p.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Change Product Title (product-title) to in WooComerece Category Layout’ is closed to new replies.