Title: Double Pagination
Last modified: August 31, 2016

---

# Double Pagination

 *  Resolved [jbkeefer](https://wordpress.org/support/users/jbkeefer/)
 * (@jbkeefer)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/double-pagination-2/)
 * When ever I turn on ajaxification, I get double pagination on the main shop products
   page.
 * I would really like to use ajax is there anyway to disable the woof pagination?
 * Thank you,
 * Jamie
 * [https://wordpress.org/plugins/woocommerce-products-filter/](https://wordpress.org/plugins/woocommerce-products-filter/)

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/topic/double-pagination-2/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/double-pagination-2/page/2/?output_format=md)

 *  Plugin Author [RealMag777](https://wordpress.org/support/users/realmag777/)
 * (@realmag777)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/double-pagination-2/#post-7231040)
 * Hello Jamie
 * Try experiments with:
    * index.php of the plugin * find public function woof_products*
   find there [http://clip2net.com/s/3wtDncK](http://clip2net.com/s/3wtDncK) and
   try to remove one of theme, looks like it doubled in your theme woo templates…
 *  Thread Starter [jbkeefer](https://wordpress.org/support/users/jbkeefer/)
 * (@jbkeefer)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/double-pagination-2/#post-7231049)
 * do you mean, remove one of them?
 * I tried to comment out each and both and the problem was still there.
 * Even with both if statements commented out it does not seem to make a difference.
 * Still looking…
 *  Thread Starter [jbkeefer](https://wordpress.org/support/users/jbkeefer/)
 * (@jbkeefer)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/double-pagination-2/#post-7231067)
 * I am running woothemes storefront. Just as an FYI.
 * tie-a-dye.com
 *  Plugin Author [RealMag777](https://wordpress.org/support/users/realmag777/)
 * (@realmag777)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/double-pagination-2/#post-7231084)
 * Hello Jamie
 * _do you mean, remove one of them?_ – yes
 * tie-a-dye.com – I see no filter there … Set it back please to look on that issue,
   I think I have an idea …
 *  Thread Starter [jbkeefer](https://wordpress.org/support/users/jbkeefer/)
 * (@jbkeefer)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/double-pagination-2/#post-7231086)
 * I turned ajaxify on.
 * I have tried removing the filter, but it did not work.
 * using: remove_action( ‘woocommerce_after_shop_loop’, ‘woocommerce_pagination’,
   10 );
 * I have not tried:
 * #custom nav.woocommerce-pagination {display:none;}
 * but take a peek and let me know.
 * Jamie
 *  Plugin Author [RealMag777](https://wordpress.org/support/users/realmag777/)
 * (@realmag777)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/double-pagination-2/#post-7231092)
 * Hello Jamie
 * Try css code:
 *     ```
       .woocommerce-result-count, .woocommerce-pagination{
          display: none;
       }
   
       #woof_results_by_ajax .woocommerce-result-count, #woof_results_by_ajax  .woocommerce-pagination{
          display: block-inline;
       }
       ```
   
 * [http://clip2net.com/s/3wB2wsJ](http://clip2net.com/s/3wB2wsJ) – or any another
   css to hide second pagination
 *  Thread Starter [jbkeefer](https://wordpress.org/support/users/jbkeefer/)
 * (@jbkeefer)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/double-pagination-2/#post-7231098)
 * Hey RealMag,
 * I tried the css and it results in removing all pagination and counts.
 * Neither woocommerce nor Woof pagination / counts show. Only thing remaining is
   the sortby dropdown.
 * 🙂
 * Jamie
 *  Thread Starter [jbkeefer](https://wordpress.org/support/users/jbkeefer/)
 * (@jbkeefer)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/double-pagination-2/#post-7231100)
 * I turned ajaxify off for now, just FYI.
 *  Plugin Author [RealMag777](https://wordpress.org/support/users/realmag777/)
 * (@realmag777)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/double-pagination-2/#post-7231101)
 * Hello Jamie
 * Try this css code please, looks like I did mistake in the previous message:
 *     ```
       .woocommerce-result-count, .woocommerce-pagination{
          display: none;
       }
   
       #woof_results_by_ajax .woocommerce-result-count, #woof_results_by_ajax  .woocommerce-pagination{
          display: inline-block !important;
       }
       ```
   
 *  Thread Starter [jbkeefer](https://wordpress.org/support/users/jbkeefer/)
 * (@jbkeefer)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/double-pagination-2/#post-7231106)
 * I applied:
 *     ```
       .woocommerce-result-count, .woocommerce-pagination{
          display: none;
       }
   
       #woof_results_by_ajax .woocommerce-result-count, #woof_results_by_ajax  .woocommerce-pagination{
          display: inline-block !important;
       }
       ```
   
 * no change 🙁
 *  Thread Starter [jbkeefer](https://wordpress.org/support/users/jbkeefer/)
 * (@jbkeefer)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/double-pagination-2/#post-7231107)
 * I currently have on, if you would like to see for yourself. 🙂
 * Thank you.
 * Jamie
 *  Thread Starter [jbkeefer](https://wordpress.org/support/users/jbkeefer/)
 * (@jbkeefer)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/double-pagination-2/#post-7231108)
 * I stand corrected…
 * the pagination is not duplicating now, but I need to remove double sorting…
 * .woocommerce-ordering {
    display: none; }
 * removed both sorting options.
 *  Thread Starter [jbkeefer](https://wordpress.org/support/users/jbkeefer/)
 * (@jbkeefer)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/double-pagination-2/#post-7231109)
 * I just turned off ajax…
 * it’s turning into a mess with all the css tweaks.
 * can’t seem to separate the woof stuff from the woocommerce stuff.
 * No worries.
 * Thanks for the effort.
 *  Plugin Author [RealMag777](https://wordpress.org/support/users/realmag777/)
 * (@realmag777)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/double-pagination-2/#post-7231128)
 * Hello Jamie
 * Thank you for cooperation, it can be resolved by CSS but I not css coder. One
   thing – if you still want ajax maybe this service will help you: [https://www.fiverr.com/search/gigs?utf8=%E2%9C%93&search_in=category&source=guest-hp&locale=en&query=css&category=10&sub_category=140&page=1&layout=auto](https://www.fiverr.com/search/gigs?utf8=%E2%9C%93&search_in=category&source=guest-hp&locale=en&query=css&category=10&sub_category=140&page=1&layout=auto)–
   css works for 5$
 *  Thread Starter [jbkeefer](https://wordpress.org/support/users/jbkeefer/)
 * (@jbkeefer)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/double-pagination-2/#post-7231129)
 * It’s no problem, I don’t css is going to get it done when both woof and the theme
   are using the same identifier. I have another way to ajaxify what I need. But
   thank you for the suggestion.
 * You can mark this resolved. 🙂

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/topic/double-pagination-2/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/double-pagination-2/page/2/?output_format=md)

The topic ‘Double Pagination’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce-products-filter/assets/icon-256x256.png?rev=
   2844301)
 * [HUSKY - Products Filter Professional for WooCommerce](https://wordpress.org/plugins/woocommerce-products-filter/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce-products-filter/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce-products-filter/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce-products-filter/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce-products-filter/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce-products-filter/reviews/)

 * 18 replies
 * 3 participants
 * Last reply from: [jbkeefer](https://wordpress.org/support/users/jbkeefer/)
 * Last activity: [9 years, 5 months ago](https://wordpress.org/support/topic/double-pagination-2/page/2/#post-8553558)
 * Status: resolved