one3rdnerd
Forum Replies Created
-
Also, I have already used the Healthcheck & Troubleshooter and switched all plugins off and to the default theme to rule out any conflicts there.
Thank you Adam, that was all very useful. I will mark this as closed and try these two options.
I did think the email was overselling it and using a scaremongering tactic but it’s always good to get a professional opinion.
I appreciate you.
Forum: Plugins
In reply to: [Flat Rate Shipping Method for WooCommerce] Default selected shipping?That works perfectly! Thank you for your help!
Forum: Plugins
In reply to: [One User Avatar | User Profile Picture] Meta Field for Import?Hi Daniel,
Ah! Okay thank you for explaining, I didn’t think of that.
Okay so I think my only option would be to upload the 291 attachments, then write down all 291 ID’s and paste them one by one into the spreadsheet.
Trying to see if there’s a way of doing that without me having to do it all manually one by one as that defeats the point of using the import spreadsheet to save time.
At that point I may as well just work through all 291 users in the dashboard and add the images manually one by one.
I will contact the WP All Import guys and see if they can find a way to streamline this process.
I appreciate you.
Forum: Plugins
In reply to: [One User Avatar | User Profile Picture] Meta Field for Import?Thanks for that. My prefix is ryj_
I gave it a try but it’s not working for me.
I’m trying to use WPAllImport plugin but I am feeling it a column full of absolute URLs for images that aren’t in the media library yet.
Maybe it would make a difference if I upload them all and then sanitize the column so only the image name and extension remain in each row rather than the full URL? Do you think that would be enough to attach the image to this meta field?
I am too having this issue with a client who updated the free Yoast plugin today and the site is completely broken.
I’d also like to know the answer to this. No option in Elementor. It doesn’t always look good so having it optional would be a wise idea.
- This reply was modified 5 years, 1 month ago by one3rdnerd.
Looking forward to trying Locomotive. Where do you find this in the settings? Am I missing something?
Okay I have found the solution.
To remove one taxonomy
(from https://developer.yoast.com/features/xml-sitemaps/api/#exclude-specific-posts )/** * Exclude a taxonomy from XML sitemaps. * * @param boolean $excluded Whether the taxonomy is excluded by default. * @param string $taxonomy The taxonomy to exclude. * * @return bool Whether or not a given taxonomy should be excluded. */ function sitemap_exclude_taxonomy( $excluded, $taxonomy ) { return $taxonomy === 'ingredients'; } add_filter( 'wpseo_sitemap_exclude_taxonomy', 'sitemap_exclude_taxonomy', 10, 2 );To remove multiple taxonomies
(From https://wordpress.stackexchange.com/questions/208354/adding-multiple-taxonomy-filters-to-functions-php )function sitemap_exclude_taxonomy( $value, $taxonomy ) { if ( 'job_listing_category' == $taxonomy || 'job_listing_type' == $taxonomy ) return true; } add_filter( 'wpseo_sitemap_exclude_taxonomy', 'sitemap_exclude_taxonomy', 10, 2 );Forum: Plugins
In reply to: [WP Job Manager] Sitemap issue with YoastOkay I have found the solution.
To remove one taxonomy
(from https://developer.yoast.com/features/xml-sitemaps/api/#exclude-specific-posts )/** * Exclude a taxonomy from XML sitemaps. * * @param boolean $excluded Whether the taxonomy is excluded by default. * @param string $taxonomy The taxonomy to exclude. * * @return bool Whether or not a given taxonomy should be excluded. */ function sitemap_exclude_taxonomy( $excluded, $taxonomy ) { return $taxonomy === 'ingredients'; } add_filter( 'wpseo_sitemap_exclude_taxonomy', 'sitemap_exclude_taxonomy', 10, 2 );To remove multiple taxonomies
(From https://wordpress.stackexchange.com/questions/208354/adding-multiple-taxonomy-filters-to-functions-php )function sitemap_exclude_taxonomy( $value, $taxonomy ) { if ( 'job_listing_category' == $taxonomy || 'job_listing_type' == $taxonomy ) return true; } add_filter( 'wpseo_sitemap_exclude_taxonomy', 'sitemap_exclude_taxonomy', 10, 2 );- This reply was modified 5 years, 1 month ago by one3rdnerd.
- This reply was modified 5 years, 1 month ago by one3rdnerd.
Forum: Plugins
In reply to: [Yoast Duplicate Post] Clone Missing on ProductsThanks for the update Enrico.
Will I need to remove the above function before updating?
Thanks
Forum: Plugins
In reply to: [Yoast Duplicate Post] Clone Missing on ProductsHas this bug been resolved yet?
Asking because a client asked about it today as they noticed it vanished and it was useful to them.
When I suggested using the duplicate option provided by WooCommerce he reminded me that because we have added ACF fields and custom taxonomies the WooCommmerce duplicate feature doesn’t carry these over when duplicating. But the Yoast clone button did.
So my client wants to try and get the clone feature back.
Can I just use that function? or is there still a bug causing an issue?
Forum: Themes and Templates
In reply to: [Astra] Astra Footer with Beaver ThemerThanks, sounds good.
Forum: Themes and Templates
In reply to: [Astra] Astra Footer with Beaver ThemerI have switched back to Genesis now on this site but I’d like to try Astra again in the future so hope that issue gets resolved.
I will maybe give it a try on a test site to see if that issue happens again and if so I will fill out the support ticket.