punkyb9
Forum Replies Created
-
Forum: Plugins
In reply to: [Wp-Pro-Quiz] Category points not percentage on results pageAnd both links (previous, next) link to the entry that is either after or before it.
Forum: Plugins
In reply to: [BulletProof Security] 403 error when trying to login/logoutThanks for the update.
Forum: Plugins
In reply to: [BulletProof Security] 403 error when trying to login/logoutLooks like that code is in the most recent version of BPS which I just upgraded to. But I’m still not able to login/logout unless I remove that entire Brute Force Login code. Any other suggestions?
Forum: Fixing WordPress
In reply to: Show custom posts on archive page organized by category/subcategoryAlternatively, if I could just display the sub-category name next to each entry that has one, that would also be great. I.E:
Parent Category Title
Parent Category Description- title/link to custom post in parent category
- title/link to custom post in parent category
- title/link to custom post in parent category (subcategory name)
- title/link to custom post in parent category (subcategory name)
Forum: Fixing WordPress
In reply to: Spell check no longer workingI installed jetpack and enabled the spell checker which makes the spell check button work again.
Forum: Fixing WordPress
In reply to: Spell check no longer workingSame thing happened to me.
Forum: Fixing WordPress
In reply to: Display list of posts in sidebar (organized by sub-category)Oops, I posted too much code. Here it is in full:
https://pastebin.com/47dNUSe2Forum: Fixing WordPress
In reply to: get_category_parents with no end separatorGood to know. I think this actually works perfectly for what I need to do. Thank you so much for your help!
Forum: Fixing WordPress
In reply to: get_category_parents with no end separatorThat works, thank you!
I’m also trying to display the same thing on single pages, but the get_category_parents code doesn’t work there.
Currently I have:
<?php foreach((get_the_category()) as $childcat) { $parentcat = $childcat->category_parent; echo get_cat_name($parentcat); } ?> <?php $category = get_the_category(); echo '/ '; echo $category[0]->cat_name; echo ' /'; ?>
That works except again, I want to get rid of the final slash. And on pages with no parent category it shows the slash before as well. Any idea what I should use instead?
Forum: Plugins
In reply to: Profanity Filter For Me!Hey, in case you are still looking, I just came across this one:
https://www.moon-blog.com/2007/12/wordpress-plugin-keyword-filter.htmlForum: Fixing WordPress
In reply to: Disable Comments RSS Feed in wp_headFor anyone wondering, just add the following in your functions.php file:
function remove_comments_rss( $for_comments ) { return; } add_filter('post_comments_feed_link','remove_comments_rss');
Forum: Plugins
In reply to: [Plugin: Yoast Breadcrumbs] Empty breadcrumb on year archiveI have the same dilemma. Any chance you’ve figured it out?
Forum: Requests and Feedback
In reply to: Looking for a “currently…” plugin or scriptI’m looking for the same thing, have you found anything promising yet?