Page 2 of the Shop Won’t Display
-
There are 13 items in inventory, and ten are to display on one page; however, when you go to the second page, nothing appears.
https://www.letsridebakersfield.com/inventory/page/2/
I do have a few lines of code on the functions page, but I do not think they cause an issue.
add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_single_excerpt' ); remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' ); remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 ); add_action('woocommerce_before_main_content', 'my_theme_wrapper_start', 10); add_action('woocommerce_after_main_content', 'my_theme_wrapper_end', 10); function my_theme_wrapper_start() { echo ''; } function my_theme_wrapper_end() { echo ''; } add_action( 'after_setup_theme', 'woocommerce_support' ); function woocommerce_support() { add_theme_support( 'woocommerce' ); } //Remove Sales Flash add_filter('woocommerce_sale_flash', 'woo_custom_hide_sales_flash'); function woo_custom_hide_sales_flash() { return false; }
The page I need help with: [log in to see the link]
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Page 2 of the Shop Won’t Display’ is closed to new replies.