Viewing 1 replies (of 1 total)
  • Plugin Author Anh Tran

    (@rilwis)

    Hi,

    I think the problem is probably related with the thing that Slim SEO will parse the shortcodes in the post content/excerpt to generate the meta description. We have a filter to ignore shortcodes:

    https://github.com/elightup/slim-seo/blob/master/src/MetaTags/Helper.php#L12

    You can use this code in your theme’s functions.php to fix that:

    add_filter( 'slim_seo_skipped_shortcodes', function( $shortcodes ) {
        $shortcodes[] = 'vi_wot_tracking_more_form';
        return $shortcodes;
    } );
Viewing 1 replies (of 1 total)
  • The topic ‘conflict with Orders Tracking for WooCommerce’ is closed to new replies.