When generating category view shortcodes it’s messing up the code by not allowing you to show more than a single item per page. If you use the shortcode generator it will output this:
[wpdm_category id="policies," cols="1" toolbar=0 item_per_page=10 template="link-template-default-ext.php"]
However in order for it to work you need to change it to:
[wpdm_category id="policies," cols="1" toolbar=0 items_per_page=10 template="link-template-default-ext.php"]
The item_per_page should be updated to items_per_page (note the s)
-
This topic was modified 3 years, 10 months ago by
Deacon Ross.