bbceg
Forum Replies Created
-
Forum: Plugins
In reply to: [DCO Comment Attachment] Quick Edit ErrorNo apology necessary Denis, thanks for sorting (and for the credit!).
Just wondered whether you’d had a chance to look into this any further @wooassist ? You may need to turn on debugging and/or check your error logs to see the notices. Happy to provide a list of files and fixes required if it helps.
Aside from the property updates I also had to add array_key_exists checks to $_POST[‘date[ssd]’] and $_POST[‘date[eed]’] to remove notices on export (which ultimately broke NGINX). i.e.
if( ( array_key_exists('date[ssd]', $_POST) && $_POST['date[ssd]'] ) ) { $ssd = $_POST['date[ssd]']; $StartDate = strtotime($ssd); } if( ( array_key_exists('date[eed]', $_POST) && $_POST['date[eed]'] ) ) { $eed = $_POST['date[eed]']; $EndDate = strtotime($eed); }Hope that’s helpful.
Hi @wooassist,
I can confirm I see the same notices appearing and have applied the same fixes as @karesz (as well as some additional fixes to the wccs-admin-export.php file). Perhaps it would be possible to update the plugin with the changes proposed assuming they do not cause any problems?
Here is an example of the notice:
Notice: id was called <strong>incorrectly</strong>. Order properties should not be accessed directly. Backtrace: include('wp-admin/edit-form-advanced.php'), do_meta_boxes, WC_Meta_Box_Order_Data::output, do_action('woocommerce_admin_order_data_after_billing_address'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Customer_Source->display_fields_order_edit, WC_Abstract_Legacy_Order->__get, wc_doing_it_wrongForum: Plugins
In reply to: [Contact Form 7] Error with orange borderCould be a server issue if it is unable to send email.
It might be worth trying an SMTP plugin to send your email as it tends to improve the chances of your email reaching its intended destination. You’ll need a valid email account and the SMTP details to connect to it.
In terms of plugins I’ve used both Easy WP SMTP and WP Mail SMTP (which is good for Google-based accounts as you can connect with OAUTH).
Hope that helps.
Forum: Plugins
In reply to: [Testimonials Widget] Deprecated function notice.Great, thanks @saurabhd.
Forum: Plugins
In reply to: [Contact Form 7 - Post Fields] appearing between input and labelGreat, thanks very much Markus.
Forum: Plugins
In reply to: [Testimonials Widget] Deprecated function notice.Thanks @saurabhd that’s good to know. Any ideas when the next release is likely to be?
Forum: Plugins
In reply to: [Contact Form 7 - Post Fields] appearing between input and labelGreat, thanks Markus.
Forum: Plugins
In reply to: [Testimonials Widget] Deprecated function notice.I’m still holding out as I use the plugin on a number of websites. I think the fix they need is:
$function = function($default) { return redrokk_admin_class::getInstance($this->_isAdminPage)->getOption($field['id'], $default, true); };Out of interest, which plugin did you switch to?
Forum: Plugins
In reply to: [Testimonials Widget] Deprecated function notice.A bit more information in case it helps:
Full error:
create_function is deprecated in {plugin_dir}/testimonials-widget/includes/libraries/aihrus-framework/includes/libraries/class-redrokk-metabox-class.php on line 1296The fix would appear to be to replace this with an anonymous function (an example of which is provided here):
https://stackoverflow.com/questions/48161526/php-7-2-function-create-function-is-deprecated
Hope that is useful in resolving the problem.
Forum: Plugins
In reply to: [Yoast Duplicate Post] Some Bug exits on latest versionHi @lopo,
In case it helps, the plugin I’m seeing this on is Contact Form 7 (https://wordpress.org/plugins/contact-form-7/) and it’s occurring on the following admin page: /wp-admin/admin.php?page=wpcf7Forum: Plugins
In reply to: [MC4WP: Mailchimp User Sync] Syncing Interests / ‘Groups subscribed to’Hi Lap,
Thanks for the response and the sample code. It is working on manual sync (when clicking ‘Update’ beneath ‘MailChimp Status’) but not after updating a profile in the usual way. In fact, it appears no fields are updated when I click ‘Update Profile’. I’m logged in as an administrator and am updating my own profile. At present I am the only user I expect to be synced. Are you able to confirm that this filter is triggered after updating a profile in the admin area?
Thanks for your help.
Forum: Plugins
In reply to: [Contact Form DB] plugin is missing on the wordpress.org directoryHi Michael,
I too can understand your frustration but I’m wondering if there is anything the community can say/do to encourage you and your plugin back to the WordPress directory. I’m guessing it’s a bit late because you have already made the move to Github but there are so many good reasons for getting it back I felt it was worth asking the question again.
Of course you owe the community nothing at all after all your hard work but if you were able to reconsider then I’m sure many thousands of users would appreciate it.
For those people that rely on the WordPress update mechanism for keeping other people’s plugins secure and up-to-date this is really the only future proof solution. My own process is a long way-off from being 100% git-ready and I’m guessing that’s true for the majority of website owners.
Whatever you decide, all the best and thanks for a great plugin.
Just for closure… I revisited the issue and managed to get every variant that wasn’t working above to work. Not quite sure what did it as I didn’t disable a single plugin but hopefully this thread will prove helpful for someone in the future. Thanks to the guys at Matcha Labs for the help.