Title: Fetching Problem
Last modified: August 31, 2016

---

# Fetching Problem

 *  Resolved [Vlad.C](https://wordpress.org/support/users/vladc-1/)
 * (@vladc-1)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/fetching-problem/)
 * I’ve got 18 products on my website, which appear in the Product Feed Manager,
   but when fetching the product feed from my Google Merchant Account it only fetches
   6 of them every time. Why is that?
 * [https://wordpress.org/plugins/wp-product-feed-manager/](https://wordpress.org/plugins/wp-product-feed-manager/)

Viewing 4 replies - 16 through 19 (of 19 total)

[←](https://wordpress.org/support/topic/fetching-problem/?output_format=md) [1](https://wordpress.org/support/topic/fetching-problem/?output_format=md)
2

 *  Thread Starter [Vlad.C](https://wordpress.org/support/users/vladc-1/)
 * (@vladc-1)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/fetching-problem/page/2/#post-7201954)
 * Hello Auke,
 * Sorry for the late reply.
 * That worked!
 * One more issue though. When your plugin is active, my “Theme Options” gets really
   messed up and I can’t use it anymore. Why is that?
 *  Plugin Author [AukeJomm](https://wordpress.org/support/users/aukejomm/)
 * (@aukejomm)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/fetching-problem/page/2/#post-7201956)
 * Hi Vlad, Great it worked!
 * The theme options problem could be fixed by adding the next piece of 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 );
       ```
   
 * This bug will be fixed in the next update coming up around next week.
 * Let me know if that fixed the issue.
 * Auke
 *  Thread Starter [Vlad.C](https://wordpress.org/support/users/vladc-1/)
 * (@vladc-1)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/fetching-problem/page/2/#post-7201960)
 * Yes, that did fix the problem!
 * Thanks a lot for the help, Auke! You’ve got a great plugin, thanks for that as
   well!
 *  Plugin Author [AukeJomm](https://wordpress.org/support/users/aukejomm/)
 * (@aukejomm)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/fetching-problem/page/2/#post-7201972)
 * Great it helped.
    It is thereby also clear what caused the issue.
 * It wil be fixed in the next update.
    Please do not hesitate to contact us again
   when you encounter other issues.
 * When you have time, please consider rating the plugin here at wordpress.org
 * Auke

Viewing 4 replies - 16 through 19 (of 19 total)

[←](https://wordpress.org/support/topic/fetching-problem/?output_format=md) [1](https://wordpress.org/support/topic/fetching-problem/?output_format=md)
2

The topic ‘Fetching Problem’ is closed to new replies.

 * ![](https://ps.w.org/wp-product-feed-manager/assets/icon-256x256.png?rev=3208464)
 * [WPMR Google Feed Manager for WooCommerce – Sell on Google Merchant Center & Shopping](https://wordpress.org/plugins/wp-product-feed-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-product-feed-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-product-feed-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-product-feed-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-product-feed-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-product-feed-manager/reviews/)

 * 19 replies
 * 3 participants
 * Last reply from: [AukeJomm](https://wordpress.org/support/users/aukejomm/)
 * Last activity: [10 years, 2 months ago](https://wordpress.org/support/topic/fetching-problem/page/2/#post-7201972)
 * Status: resolved