knit_hat
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Change Title Tag on Job PostingTo clarify, I’m not looking to alter the posting’s Title themselves…just the <title> tag. Thanks again!
Forum: Plugins
In reply to: [WP Job Manager] Search Page with Params is RedirectingI don’t know what happened…but I clicked “Save” on the .htaccess file (which didn’t have any redirects in it) within the AIOSEO plugin…and now it’s working again.
I was working on some redirect in there prior to things breaking.
I suppose it’s possible that there was some weirdly-cached .htaccess file in the system somewhere and clicking “save” cleared it. I do have cloudflare turned off and cleared the cache prior to this.
Thanks for your time! The takeaway here is try saving the AIOSEO version of htaccess (insert shrug emoji)
Forum: Plugins
In reply to: [WP Job Manager] Search Page with Params is RedirectingI have disabled all of the plugins and the redirect is still happening.
I have also ensured that the correct Page is selected on the Job Listings Settings.Forum: Plugins
In reply to: [WP Job Manager] Search Page with Params is RedirectingI have installed Health Check and entered Troubleshooting Mode. The URL still has the unintended redirect even with all plugins turned off and the default theme in place.
Any next steps?
Forum: Plugins
In reply to: [WP Job Manager] Search Page with Params is RedirectingThe interesting things is that this doesn’t happen on another site we own:
Forum: Plugins
In reply to: [Category Icons] Category Icons DisappearedTo anyone else reading this thread…I just want to give a shout-out and thanks to the author of this plug-in for helping us resolve this issue personally.
Thanks so much for standing behind your creation and taking the time to help us out. We’ll buy you a beer if you’re ever in Richmond, VA.
Thanks again!
Forum: Plugins
In reply to: [Category Icons] Category Icons DisappearedI just filled out your form…. thanks again!
Forum: Plugins
In reply to: [Category Icons] Category Icons DisappearedI don’t have access to the wp-config file right now. I’m asking the site owner if she would mind granting you access.
Forum: Plugins
In reply to: [Category Icons] Category Icons DisappearedI gave this a shot and it’s still not showing the icons
Forum: Plugins
In reply to: [Category Icons] Category Icons Disappeared<div class=”catcontain”>
-
<?php if (function_exists(‘put_cat_icons’))
foreach(get_categories(‘orderby=name&order=ASC&child_of=14’) as $category) {
echo ‘<li class=”cat-item”>’;
echo ‘<div class=”catbox”>’;
echo ‘cat_ID) . ‘”>’;
echo ”.get_cat_icon(“link=false&echo=false&cat=”.$category->cat_ID).’ ‘.$category->cat_name.’ (‘.$category->category_count.’)’;
echo ‘‘;
echo ‘</div>’;
echo ”;
}?>
</div>
Forum: Plugins
In reply to: [Category Icons] Category Icons Disappearedsure! http://retrospectrentals.com/inventory/ is the page mentioned above that is affected.
Forum: Plugins
In reply to: [Category Icons] Category Icons DisappearedI added this:
if (!isset($p[‘cat’]) || !is_array($p[‘cat’])) {
$p[‘cat’]=array();
}and then added back the [] to $p[‘cat’][] = $category->cat_ID;
The page still doesn’t display the icons but it no longer throws and error due to the [].
Forum: Plugins
In reply to: [Category Icons] Category Icons DisappearedThe instructions say to replace this block:
if (is_category() && in_the_loop()) {
$cat = (int) get_query_var(‘cat’);
$category=get_category($cat);
$p[‘cat’][] = $category->cat_ID;
}I don’t see that block in the code
Forum: Plugins
In reply to: [Category Icons] Category Icons Disappearedthe exact snippet you recommend to replace does not exist in that category_icons.php. This is what we have:
stripslaghes_gpc_arr($p);
if (is_category() && in_the_loop()) {
$cat = (int) get_query_var(‘cat’);
$category=get_category($cat);
if (!isset($p[‘cat’])) {
$p[‘cat’]=array();
}
/*elseif (!is_array($p[‘cat’])) {
$p[‘cat’]=array(0=>$p[‘cat’]);
}*/
$p[‘cat’][] = $category->cat_ID;
}Forum: Plugins
In reply to: [Category Icons] Category Icons DisappearedIf I put a number in the [], like 14, I can get 3 of the 8 icons to appear. if that helps at all…