one3rdnerd
Forum Replies Created
-
Thank you.
Yes, my posts were created by importing a CSV with WP All Import plugin. When you delete the import you have the choice to delete all posts created which I did.
This was a while ago though but those messages have persisted.
I’ll look forward to your update. Hopefully there’s a custom filter or something I can use.
Hi Michael,
Yes, I’m on the latest version. Everything is up to date.
I think I used WPAllImport and removed an import + the 3000 posts.
Now I have 3000 odd notifications.
Please see: https://www.loom.com/share/07fb57c11a3a46c7bd8ed7f030b671a8
Thanks
Forum: Plugins
In reply to: [WP Go Maps - Google Maps, OpenStreetMap, Leaflet Map] Uncaught ErrorThank you. Yes that fixed it.
Hello,
No problem, I got an email back from the developers on this. I was confused because you use a different formula to the default WooCommerce method for quantity based pricing.
It would be great if you aligned with WooCommerce and changed that or allowed both options to work as that was confusing and I didn’t see anything in the documentation about it.
Thanks for getting back to me.
Okay I found the issue.
I was using 3 + ( 2 * [qty] ) to calculate $3 flat rate + $2 per item. This works in the default WooCommerce shipping but not in this plugin.
Why is this not supported by the plugin?
Could it be added? I can’t find a way to add this sort of shipping cost.
X & [qty] isn’t enough for our shipping.
I have also tested this in troubleshooting mode with only
1) TwentyTwenty theme active
2) WooCommerce active
3) Advanced Flat Rate Shipping For WooCommerce activeI also tried putting the memory limit up to 1gb but it seems to just keep going on forever no matter how high I set the wp memory limit.
Does anyone have any ideas? Is the plugin broken for others?
I also tried to set the below in wp-config.php
define( ‘WP_MEMORY_LIMIT’, ‘512M’ );
But this doesn’t fix it either. For some reason, it’s using a crazy amount of memory.
Forum: Plugins
In reply to: [NSFW] [Contact Form 7] Contact form 7 to apiThis plugin was broken with the latest version of Contact Form 7. It worked up until a couple of weeks ago. Only way to fix is to downgrade contact form 7 to the previous version.
Forum: Plugins
In reply to: [NSFW] [Contact Form 7] Contact form 7 to apiDowngrade contact form 7 to the previous version. Contact Form 7 broke all plugins and requires them to integrate differently.
You might be better off retiring contact form 7 completely and finding another route. That’s what I’m exploring as I can’t seem to find a way to fix it and my dev quoted $150 to fix the plugin.
Forum: Plugins
In reply to: [Posts Columns Manager] Relationship FieldsHi @zahardoc
Sorry for the delay I have been away for a couple of days.
Awesome, you rock.
I have just upgraded and that is all working 100% now.
I appreciate you.
Thanks
Forum: Plugins
In reply to: [WooCommerce] Gutenberg custom code and reviewsOkay, glad to hear it, though my requirements are much simpler than that I think.
All I want is the ability to use the Gutenberg editor for the product description, nothing more than that. I don’t want to build the page in Gutenberg as I use BeaverBuilder for my templates, I just want to allow clients to have more control over the product description to make it more jazzy.
That works already with the code above aside from the one bug with the reviews toggle under product data>advanced.
I think turning this feature on would be a good baby step towards the end goal of total control over the product page though I’m unlikely to ever want to give clients access to that.
I appreciate your input. I will monitor the developer page for news on this and for now I will continue trying to find a developer willing to try and fix this reviews issue.
Forum: Plugins
In reply to: [WooCommerce] Gutenberg custom code and reviewsThanks for your message.
The code on that link is the code I used. I am one of the people commenting on the thread you linked to.
I have asked a number of other developers but so far nobody is willing to take it on. The WooCommerce slack has never been very fruitful in my experience. More just people asking questions.
Hopefully, this feature is added and working soon.
I will read through the blog and see if I can work things out.
Forum: Plugins
In reply to: [WooCommerce] Gutenberg custom code and reviewsThanks for your reply.
I’m confused that if WooCommerce is owned by WordPress and WordPress is trying hard to retire the classic editor soon why this wasn’t a priority 2 years ago.
Are the WooCommerce devs even actively working on this? Strange they would focus their efforts on building WooCommerce blocks that can be added to pages and posts while ignoring this feature on their own post type (Products).
You can do amazing things when you can turn on Gutenberg at the product level and create product pages that compete with some of the best looking eCommerce sites out there. Sadly without this feature WooCommerce product pages are pretty basic.
I’d love to know if this is a priority area for WooCommerce devs to address sometime soon.
I have spoken with a few developers who have basically just said, it’s probably best to wait until WooCommerce supports this and they aren’t interested in solving it.
I appreciate your input.
Forum: Plugins
In reply to: [WooCommerce] Gutenberg editor for product pagesI am using this snippet and it was working well until I tried to turn reviews on or off on the edit product screen.
When you try that and then check the front end has it changed? Then refresh the edit product screen and go back down to the Product Data > Advanced tab and see if your change actually saved?
Thanks
Forum: Plugins
In reply to: [WP Store Locator] Issue with wpsl_url – Can’t change itHi @farroyob
I found the issue.
The developer was adding custom fields and hadn’t included the URL option but they had been previously populated to existed in the database.
I fixed this by changing
function custom_meta_box_fields( $meta_fields ) { $meta_fields[__( 'Additional Information', 'wpsl' )] = array( 'phone' => array( 'label' => __( 'Aftersales Tel', 'wpsl' ) ), 'sales' => array( 'label' => __( 'Sales Tel', 'wpsl' ) ), 'email' => array( 'label' => __( 'Email', 'wpsl' ) ), 'url' => array( 'label' => __( 'Url', 'wpsl' ) ), ); return $meta_fields; } add_filter( 'wpsl_frontend_meta_fields', 'custom_frontend_meta_fields' );To
function custom_meta_box_fields( $meta_fields ) { $meta_fields[__( 'Additional Information', 'wpsl' )] = array( 'phone' => array( 'label' => __( 'Aftersales Tel', 'wpsl' ) ), 'sales' => array( 'label' => __( 'Sales Tel', 'wpsl' ) ), 'email' => array( 'label' => __( 'Email', 'wpsl' ) ), ); return $meta_fields; } add_filter( 'wpsl_frontend_meta_fields', 'custom_frontend_meta_fields' );Thanks.