• Здравствуйте, сайт oceanwp + woocomerce + elementor. У меня заголовки товаров в каталоге (архиве) товаров все h2, как можно поменять например на div?

    Я не программист, так что если можно подробнее, может код куда то нужно вставить или прочие действия выполнить. Заранее благодарен.

Viewing 1 replies (of 1 total)
  • Hello,

    Try to add the below snippet code in the functions.php file of your child theme.

    function my_woo_heading_tag() {
    $heading_tag = 'span';
    return $heading_tag;
    }
    add_filter( 'ocean_product_archive_title_tag', 'my_woo_heading_tag' );

    PS- Instead of the span, you can use: h1, h2, …. div, p, and other HTML tags.

Viewing 1 replies (of 1 total)
  • The topic ‘Заголовки товаров в каталоге woocomerce’ is closed to new replies.