nickw5
Forum Replies Created
-
@jmatiasmastro, it was that last update you rolled out. This functionality was lost in that update. I rolled back to that last version and it started working as expected. Please look into asap
Forum: Fixing WordPress
In reply to: Blog images not being responsive in FirefoxJust needed to wrap it with <p>
Forum: Fixing WordPress
In reply to: Blog not organized by published dateThat’s it!! Thank you! That was driving me nuts
Forum: Fixing WordPress
In reply to: Blog not organized by published dateYes, that was the first thing i tried. Couldnt find the plugin conflict. And the theme developers said this is a wordpress setting. I cant figure it out
Forum: Fixing WordPress
In reply to: WordPress adding a -2 to URL even though there is no duplicate pageIt was a stupid image! It wasnt the same url but I deleted images that had the same title and now it works. Unreal.
Forum: Fixing WordPress
In reply to: WordPress adding a -2 to URL even though there is no duplicate pageI cleared cache and tried everything and deleted the entire trash on my site
- This reply was modified 7 years ago by nickw5.
Forum: Plugins
In reply to: [Yoast SEO] Breadcrumbs disappeared after the update7.0.2 did not work for me. ugh
Forum: Plugins
In reply to: [Yoast SEO] Breadcrumbs disappeared after the updateYes, they were set to disabled and I lost all my settings. I enabled them and still did not do anything. I had to do a full site restore from a backup I did.
This is a clear bug it looks like
Forum: Plugins
In reply to: [WooCommerce] Permalinks Category IssueI found this, but doesnt seem to work:
add_filter( ‘get_terms’, ‘organicweb_exclude_category’, 10, 3 );
function organicweb_exclude_category( $terms, $taxonomies, $args ) {
$new_terms = array();
// if a product category and on a page
if ( in_array( ‘product_cat’, $taxonomies ) && ! is_admin() && ( is_product_category() || is_shop()) ) {
foreach ( $terms as $key => $term ) {
// Enter the name of the category you want to exclude in place of ‘uncategorised’
if ( ! in_array( $term->slug, array( ‘ticket’ ) ) ) {
$new_terms[] = $term;
}
}
$terms = $new_terms;
}
return $terms;
}Forum: Plugins
In reply to: [WooCommerce] Permalinks Category IssueNow I have a ticket category showing on my store front I need hidden. Do you know how to hide a category?
https://270.010.godaddywp.com/store- This reply was modified 7 years, 1 month ago by nickw5.
Forum: Plugins
In reply to: [WooCommerce] Permalinks Category IssueOk, thank you for your help
Forum: Plugins
In reply to: [WooCommerce] Permalinks Category IssueThat is not good for SEO though and does not let the user or google know exactly where they are in the store properly, right?
Is this the only solution? Is that how every other woocommerce store behaves? Seems odd
Forum: Plugins
In reply to: [WooCommerce] Hide a category from storeThat will not work. It is for products. And I have my shop display settings set to ‘Show Categories’.
I am looking for a way to just hide a category in my store. Anyone know how to do this?
Forum: Plugins
In reply to: [WooCommerce] Hide a category from storeUgh, nevermind. I attempted to use only shortcode but it wont let me hide everything in the shop page
So, can you please provide instructions on how to hide a category from the store?
Forum: Plugins
In reply to: [WooCommerce] Hide a category from storeI figured it out. Thanks