robertstaddon
Forum Replies Created
-
I started getting this exact same error on all of my sites using the now-default “High-Performance Order Storage” in WooCommerce after installing this latest 1.0.9 plugin update of Variation Swatches for WooCommerce by CartFlows
Forum: Reviews
In reply to: [Code Snippets] Good to organise your code but slowed my website@bungeshea Thank you for sharing about this work to load snippets directly from files instead of from the database. I was really intrigued to see how this was being done by FluentSnippets and thought that it made a lot of sense to improve performance and efficiency. Please keep us posted on your progress in this area!
Thank you!
Forum: Plugins
In reply to: [Wise Chat] “No Channel available” after updateI was having this same “No Channel available” message with no chat after updating to the latest version of this plugin and found the following error in my error logs:
WordPress database error Unknown column 'chat_recipient_id' in 'where clause' for query SELECT * FROM wp_wise_chat_messages WHERE channel = 'global' AND (chat_recipient_id IS NULL OR chat_recipient_id = '') ORDER BY id DESC LIMIT 100
Sure enough, there was no ‘chat_recipient_id’ column in the ‘wp_wise_chat_messages’ table! I deactivated and reactivated the Wise Chat plugin and the issue was fixed! The ‘chat_recipient_id’ column had been created and the chat loaded fine after that.
Forum: Plugins
In reply to: [Social Sharing Plugin - Social Warfare] NO MORE SHARE COUNTS??I received this response from Social Warfare Pro support:
We have recently made the tough decision to remove Facebook share counts from Social Warfare. We have just published a blog-post explaining the reasons why we decided to make this change. You can read our blog-post here:? https://warfareplugins.com/why-were-saying-goodbye-to-facebook-share-counts-on-our-plugin/
Forum: Plugins
In reply to: [Social Sharing Plugin - Social Warfare] NO MORE SHARE COUNTS??We’ve experienced the same issue with all three sites we host that use Social Warfare. Social Share counts have completely disappeared.
I’m also curious if ACF Pro is planning to release an update with HPOS compatibility. I just tried upgrading to HPOS on a site but had to roll it back when I found that none of my ACF fields worked.
Forum: Plugins
In reply to: [Pinterest for WooCommerce] Start Verification issue!!!I just found this https://github.com/woocommerce/pinterest-for-woocommerce/pull/876 and followed steps 7-8 to go to the wp_options database table, search for the pinterest_for_woocommerce option, and carefully edit the “verified_user_websites” subset by removing the website domain from the list. After that, I was finally able to complete the setup process.
Forum: Plugins
In reply to: [Pinterest for WooCommerce] Start Verification issue!!!I’m experiencing the exact same issue, with the verification process redirecting back to the WordPress Dashboard and displaying a blank WordPress admin page (at the URL /wp-admin/admin.php?page=wc-admin&path=%2Fpinterest%2Fonboarding&step=claim-website), with “Cannot read properties of undefined (reading ‘creditsGiven’)” in the JavaScript error console.
This occurs even when running in an incognito window with no browser extensions enabled and with all other plugins disabled and the theme reverted to the default.
Did anyone find a solution?
The update to 3.3.0 solved the problem for me as well!
I upgraded to the latest version and sadly the PHP Fatal Error still appears when editing a post or page with WP Bakery Page Builder installed. I will notify the Customer Success team.
This worked! Thank you!
Because it just needs to return true with no arguments, I would recommend using the built-in WordPress __return_true() function
add_filter( ‘rank_math/opengraph/pre_set_content_image’, ‘__return_true’ );
Sadly, when set to true this filter currently generates the following PHP Fatal Error on pages where no featured image has been set:
Fatal error: Uncaught ArgumentCountError: Too few arguments to function {closure}(), 1 passed in /home/demoaccount/public_html/wp-includes/class-wp-hook.php on line 326 and exactly 2 expected in /home/demoaccount/public_html/wp-content/plugins/code-snippets/php/snippet-ops.php(581) : eval()’d code:1 Stack trace: #0 /home/demoaccount/public_html/wp-includes/class-wp-hook.php(326): {closure}(false) #1 /home/demoaccount/public_html/wp-includes/plugin.php(256): WP_Hook->apply_filters(false, Array) #2 /home/demoaccount/public_html/wp-content/plugins/seo-by-rank-math/includes/traits/class-hooker.php(102): apply_filters_ref_array(‘rank_math/openg…’, Array) #3 /home/demoaccount/public_html/wp-content/plugins/seo-by-rank-math/includes/opengraph/class-image.php(490): RankMath\OpenGraph\Image->do_filter(‘opengraph/pre_s…’, false, 2) #4 /home/demoaccount/public_html/wp-content/plugins/seo-by-rank-math/includes/opengraph/class-image.php(321): RankMath\OpenGraph\Image->set_singular_image() #5 /home/demoaccount/public_html/wp-conten in?/home/demoaccount/public_html/wp-content/plugins/code-snippets/php/snippet-ops.php(581) : eval()’d code?on line?1
I set up a test site to demonstrate the issue: https://test.abundantdesigns.com/sample-page/
Thank you!
Thank you!