• Resolved jgh66g

    (@jgh66g)


    Hi dear support,

    I am using the customer reviews plugin in my website. After a few weeks, I found your meta data in my single product page > product meta, such as cr_brand and cr_GTIN.

    However, there is a <br> HTML code above your code. How can i solve it?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • cusrevsupport9

    (@cusrevsupport9)

    Hi,

    Thanks for using CusRev.

    There is a filter hook that supports adding an HTML separator between WooCommerce product meta and extra meta created by our plugin. You can add this custom PHP code to the file functions.php in the theme/child theme folder to remove the <br> tag.

    add_filter( 'cr_productids_separator', function( $html_sep ) {
        $html_sep = '';
        return $html_sep;
    } );

    Let me know how it goes.

    Thread Starter jgh66g

    (@jgh66g)

    Thank you for your kindly help! The case is resoved!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘There is in product Meta’ is closed to new replies.