zigsp8
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Plugin conflictSee update in https://ww.wp.xz.cn/support/topic/plugin-conflict-197/
Thanks Ben,
Updating to 2.2.2 and using the ‘Allow REST API Access’ seemed to do the trick for me.
FYI: without the ‘Allow REST API Access’ still got error in console, this time it was…
/wp-json/contact-form-7/v1/contact-forms/43/feedback:1 Failed to load resource: the server responded with a status of 401 (Unauthorized)zig
I also have the same result. Error in console
—————
Uncaught TypeError: Cannot read property ‘into’ of null
at ajaxSuccess (scripts.js?ver=5.0.2:238)
at Object.<anonymous> (scripts.js?ver=5.0.2:355)
at i (jquery.js?ver=1.12.4:2)
at Object.fireWith [as resolveWith] (jquery.js?ver=1.12.4:2)
at y (jquery.js?ver=1.12.4:4)
at XMLHttpRequest.c (jquery.js?ver=1.12.4:4)/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=5.0.2
Deactivating password protect allows email to go through.
Forum: Plugins
In reply to: [Contact Form 7] Plugin conflictI also have the same result. Error in console
—————
Uncaught TypeError: Cannot read property ‘into’ of null
at ajaxSuccess (scripts.js?ver=5.0.2:238)
at Object.<anonymous> (scripts.js?ver=5.0.2:355)
at i (jquery.js?ver=1.12.4:2)
at Object.fireWith [as resolveWith] (jquery.js?ver=1.12.4:2)
at y (jquery.js?ver=1.12.4:4)
at XMLHttpRequest.c (jquery.js?ver=1.12.4:4)/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=5.0.2
Deactivating password protect allows email to go through.
Forum: Plugins
In reply to: [Speed Optimizer - The All-In-One Performance-Boosting Plugin] Parse ErrorFigured it out…. Up’d the PHP version to 7.1.
Forum: Plugins
In reply to: [Ultimate Posts Widget] Hiding widget when no posts are foundThis can be done if you modify the code.
I’ve done it, but every time there is an update you have to re-apply the modification, so I’m not crazy about that.
I think it would be useful.
Forum: Plugins
In reply to: [The Events Calendar Shortcode & Block] Features requestsWishlist items:
– make the duration time and duration venue <div>s instead of <span> so we can better style it
– add a class parameter, again for styling
– remove the line break out of echo for title.
– if event venue (after filtering) is empty, dont echo the atThank you for your quick response. Look forward to you next release.
Forum: Plugins
In reply to: [The Events Calendar Shortcode & Block] Features requestsI’d like the ability to show only the date on an event, and not the time.
Forum: Plugins
In reply to: [WooCommerce New Product Badge] Can't find the settingWoocommerce -> Products Tab -> Display subtab -> bottom of screen
Forum: Plugins
In reply to: [Dynamic Select for Contact Form 7] Label instead of value in mailOk. Thanks for looking into it.
Love the plugin by the way. Made my job SO much easier.
Forum: Plugins
In reply to: [Dynamic Select for Contact Form 7] Label instead of value in mailYes, I’m sure in MOST situations that you could/would have the value & text to be the same, but unfortunately, not this particular one.
I need the “value” which is a “nicename” to as an arg to another call, but I’d like the label, which is a more people friendly name, to show in the email, if possible.
link to using select value / text in email: http://contactform7.com/selectable-recipient-with-pipes/
Forum: Plugins
In reply to: [WooCommerce] 'Related Products' based on category and tagsI knew there had to be a better way. Thanks Big Fish!
Forum: Plugins
In reply to: [WooCommerce] 'Related Products' based on category and tagsFollowing the directions here worked for me.
http://www.felipepavao.com/woocommerce-related-products-by-tag/
Forum: Plugins
In reply to: [Cimy User Manager] modifications updating wrong usersThe problem occurs due to using a username that converts to a numeric. (ie usernames like ‘4465’). If a user with a username of 4465 doesnt exist but a user with ID of 4465 does exists, WP_User returns the user with that ID instead.
To fix this, I modified the cimy_user_manager.php On line 592 need to call WP_user with a zero as the $id parameter.
In other words, change:
$wp_user = new WP_User($username);to:
$wp_user = new WP_User(0,$username);specifically sending the username to WP_User() in the $name parameter.