• Resolved martijninvitra

    (@martijninvitra)


    I did not notice this earlier, but the plugin breaks visual composer. When activated, the VC editor won’t work , the formatting plugin still works in the frontend, so i suspect a javascript conflict of some kind. As soon as i deactivated the plugin VC returned to it’s normal functions.

    VC is quite common as a rich content editor in commercial themes (and rightfully so) so this is, in my opinion, a major issue.

    https://www.ads-software.com/plugins/wp-product-feed-manager/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author AukeJomm

    (@aukejomm)

    Hi Martijn,

    yes we are aware of that. We are building a solution in to the plugin what will solve these javascript issues.

    Until the next update, somewhere next week, you could solve it with adding the following code in your functions.php

    //DISABLE WP PRODUCT FEED MANAGER JAVASCRIPT
    function products_feed_mananger_dequeue_script() {
    	//Check if the path of the current page starts with '/wp-admin/admin.php?page=wp-product-feed-manager'
    	//If it doesn′t dequeue the plugin′s javascript:
    	$pagepath = $_SERVER['REQUEST_URI'] ;
    	if (0 !== strpos($pagepath, '/wp-admin/admin.php?page=wp-product-feed-manager')) {
       wp_dequeue_script( 'feed-form-script');
       wp_dequeue_script( 'data-handling-script');
       wp_dequeue_script( 'object-handling-script');
       wp_dequeue_script( 'data-script');
       wp_dequeue_script( 'feed-objects-script');
       wp_dequeue_script( 'feed-meta-script');
       wp_dequeue_script( 'feed-handling-script');
       wp_dequeue_script( 'feed-html');
       wp_dequeue_script( 'feed-list-script');
       wp_dequeue_script( 'feed-form-script');
       wp_dequeue_script( 'user-interface-script');
       wp_dequeue_script( 'business-logic-script');
       wp_dequeue_script( 'general-functions-script');
       wp_dequeue_script( 'event-listener-script');
    	}
    }
    add_action( 'wp_print_scripts', 'products_feed_mananger_dequeue_script', 100 );

    Let me know if this helps.

    Auke

    Plugin Author AukeJomm

    (@aukejomm)

    Hi martijninvitra,

    The issues with the javascript has been solved.
    Please update to the latest version.

    Auke

    Plugin Author AukeJomm

    (@aukejomm)

    Issues Resolved

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Conflict with visual composer’ is closed to new replies.