ando.steinmetz
Forum Replies Created
-
I found a solution in this thread.
I’m having the same issue, and not sure what’s causing it.
It seems related, possibly, to another issue I’m having – that the slide increments twice when I click on the “next” arrow. It seems that, somehow, elements are being counted twice.
Forum: Plugins
In reply to: [Cyclone Slider] Remove pager dotsThere’s an option on the right-hand side of the editor to remove the navigation dots. You could also find the class name of the pager element and add “display: none” to the class in your CSS.
Forum: Fixing WordPress
In reply to: the_category exclude categoriesAha. Just figured the problem that was causing the separators to drop out.
Modified code below:
http://pastebin.com/2zTFwxHKalso, note that the syntax of the call is changed so that the Parent Categories to exclude are referenced by name rather than by id. ID would be better, but I was having trouble getting the parent categories’ IDs. So the function would be called like:
<?php exclude_post_categories('Excluded',', '); ?>Forum: Fixing WordPress
In reply to: the_category exclude categoriesHi,
I’ve just modified this code to exclude all children of a parent category, a feature that I saw requested elsewhere, but those threads were closed so I figured I’d share the code here.
The code is giving me one problem, though, if parent categories are removed, it’s adding the separator as needed, but if there are no categories that need removing, it doesn’t add the separator. Any ideas anybody?
Code below:
[Code moderated as per the Forum Rules. Please use the pastebin]