mizou
Forum Replies Created
-
Forum: Plugins
In reply to: [Flexible Layout Preview Image for ACF] Layout selector broken with ACF 6.5.0Same issue here. Conflicts with ACF 6.5.0 using ACF pop-up class which is also used for the new function like deleting, renaming and disable.
- This reply was modified 7 months, 2 weeks ago by mizou.
Perfect, that works! If you have a solution to “contribute not more than the Fundraising goal”. Let me know, but I will going to give it a try as well.
Idea is that on a product page it checks remaining amount and as well just before going to payment.Yes it is still at the same location. Added the code:
// Change location of the checkbox
add_filter('anonymous_donation_checkbox_location', function() {
return 'woocommerce_after_order_notes';
});Add checked if the following code was available in my plugin version
if (get_option("wcdp_enable_checkout_checkbox", "no") === "yes") {
// Add checkbox to WooCommerce checkout
$checkbox_location = apply_filters('anonymous_donation_checkbox_location', 'woocommerce_review_order_before_submit');
add_action($checkbox_location, array($this, 'add_anonymous_donation_checkbox'));
//Save the value of the WooCommerce checkout checkbox
add_action('woocommerce_checkout_create_order', array($this, 'save_anonymous_donation_checkbox'));
//Display the value of the WooCommerce checkout checkbox to the user
add_action('woocommerce_order_details_after_customer_details', array($this, 'display_anonymous_donation_checkbox_in_order_details'));
}I have just updated the plugin which contains the updated script and added the script to my theme functions, but it is not working / running? I did some debug logging but the filter is not running. Any idea what is going wrong?
P.s. I saw you added plugin option to redirect to cart instead checkout, perfect!Forum: Plugins
In reply to: [Widgets for Reviews & Recommendations] Disable load css and JSThat’s a pity, I think it can be useful for some WP developers to receive the content without any styling and scripts. But thanks a lot for your help, and “no” is also an answer. I going to have a look at the database solution.
Forum: Plugins
In reply to: [Widgets for Reviews & Recommendations] Disable load css and JSWe would like to add our own styling and slider jquery, so we can minimize the needed css styling and jquery scripts for the best performance. Your sider is working allright, but using an own slider script gives us the possibility to tweak the slider to our needs.
Free version is used, functionality wise that is just what we need.Forum: Plugins
In reply to: [PostNL for WooCommerce] Track and Trace misformedSame issue here
Same here for me. Al works fine with the 2.1.4.rc2
I have got the same error
Same error here with a custom template. Hope this can be fixed.
Thanks a lot!
I am having the same issue here
Thanks a lot! Get it. I will keep an eye on the official plugin update.
Sorry for the late reply, I was really busy. But I tested with your dev-version and making use of the PHPMailer solves the issue I was talking about.
I can imagine it would be better to make use of the PostSMTP mailer ideally.
I tried this dev-version, but the problem is still there. I don’t have knowledge technically to analyse the email header properly to make mistakes visible.