WPIntell

Source evidence

Plugin conflict with DIVI theme

YITH WooCommerce Affiliates · support · 2026-01-11T16:46:00+00:00

complaintsentiment
mediumseverity
0.5relevance
1replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

5 / 31 rows with source links

16.1% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

26 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
patriciava resolved
My page was not displaying background videos (using DIVI builder) and through disabling plugins one by one, I’ve found it to be YITH Affiliates. Not sure how or why this would be affecting background videos but… here we are. Hoping someone can assist. Ah, maybe interesting to know – when enabled, the page is throwing this error in the Dev console: Uncaught TypeError: Cannot set properties of undefined (setting ‘mejs’) at Object. (mediaelement-and-player.min.js?ver=4.2.17:12:21595) at d (mediaelement-and-player.min.js?ver=4.2.17:12:254) at mediaelement-and-player.min.js?ver=4.2.17:12:305 at Object. (mediaelement-and-player.min.js?ver=4.2.17:12:12352) at d (mediaelement-and-player.min.js?ver=4.2.17:12:254) at r (mediaelement-and-player.min.js?ver=4.2.17:12:420) at mediaelement-and-player.min.js?ver=4.2.17:12:437 This topic was modified 4 months, 2 weeks ago by patriciava . The page I need help with: [ log in to see the link] Well, guess I fixed it myself by dequeuing the yith_wcaf_shortcode that somehow conflicted with the mediaplayer. If anyone has the same issue, here is the code: add_action( 'wp_enqueue_scripts', function () { if ( ! function_exists( 'yith_wcaf_is_affiliate_dashboard_page' ) ) { return; } $is_affiliate_dashboard = yith_wcaf_is_affiliate_dashboard_page(); if ( $is_affiliate_dashboard || is_account_page() ) { return; } wp_dequeue_script( 'yith-wcaf-shortcodes' ); wp_deregister_script( 'yith-wcaf-shortcodes' ); }, 100 );

Comments

1 shown
patriciava 2026-01-11T17:09:00+00:00

Well, guess I fixed it myself by dequeuing the yith_wcaf_shortcode that somehow conflicted with the mediaplayer. If anyone has the same issue, here is the code: add_action( 'wp_enqueue_scripts', function () { if ( ! function_exists( 'yith_wcaf_is_affiliate_dashboard_page' ) ) { return; } $is_affiliate_dashboard = yith_wcaf_is_affiliate_dashboard_page(); if ( $is_affiliate_dashboard || is_account_page() ) { return; } wp_dequeue_script( 'yith-wcaf-shortcodes' ); wp_deregister_script( 'yith-wcaf-shortcodes' ); }, 100 );