Replies: 0
Hello!
I am running WP 4.6.1 with WooCommerce 2.6.4, PHP 5.6.22, MySQL 5.6.17
On this standard WordPress page (http://localhost/a10_bop/bop-products/drums)
I use the following shortcode:
[product_category category=”drums” order=”asc” per_page=”2″]
The pagination shows at the bottom of the screen, which is good.
(There are 9 products in the drums category but I use per_page=”2″ for testing purposes.)
The generated paginated links are like:
http://localhost/a10_bop/bop-products/drums/page/2 or
http://localhost/a10_bop/bop-products/drums/page/3
and so on.
When I click on any of the links I get a 404: Page Not Found error.
My .htaccess is pretty standard:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /a10_bop/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /a10_bop/index.php [L]
</IfModule>
# END WordPress
If anyone could shed some light on the issue, I’d really appreciate it.
Thanks for your time!