mattcnc
Forum Replies Created
-
Done.
Thanks,
Matt@rymerakristel any update on the above?
Thanks,
MattHey, I’m not sure why this was marked as resolved. I provided you with additional information, as requested, but haven’t heard back.
Could you please advise?
Thanks
MattHi @rymerakristel,
Here is the screenshot of rule mapping. I filled in the IS column as I had it prior to everything disappearing from it.
Then after I hit save and open rules again, the IS column has empty values.
https://prnt.sc/o5pwXRdE5sDS
This is a big problem, because if I wanted to add additional rule now, I would have to fill in every single IS field again. Otherwise, if I just add a rule and leave all the old rules empty inside the IS column, they will get saved with empty string. For example, my product titles in feed will be empty, because IS column has empty value.
My current version is 13.4.3
I have tested on a few rollbacks and the issue persisted.I have tried updating the plugin, but unfortunately on all versions 13.4.4 and above, the rules page does not even load! I get an alert and even if I click wait 5 times, it never loads the page. That’s potentially another issue.
I have tried newest version 13.4.4.2 with all other plugins turned off, aside from Woocommerce and Product Feed PRO, and got the same problem.
Maybe, I have too many rules (53) ?@superlemon1998, I had all the rules filled in.
The moment I save it they are all gone!That’s the issue!
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Apple Pay Button “Buy with” text missingHey, it looks exactly the same on the checkout as on the screenshot I’ve included in the initial post.
I have disabled the text “Buy with” and left buttons with icons only. This actually looks nicer on the checkout so will leave it.
However, you may want to look into it for other users who may want “Buy with” text on both buttons.
Thanks
MattOkay, please keep us updated on when this feature gets added to the plugin.
I am sure a lot customers will appreciate it, as there were other threads mentioning it.
Keep in touch and thanks for your assistance!
Thanks for the suggestion!
I had to amend it slightly, as the remove_action should have ‘omnisend_checkbox_custom_checkout_field’ rather than ‘omnisend_newsletter_checkbox’.
I ended up with this snippet of code:remove_action( 'woocommerce_after_checkout_billing_form', 'omnisend_checkbox_custom_checkout_field', 10 );
add_action( 'woocommerce_review_order_before_submit', 'move_omnisend_newsletter_checkbox', 10 );
function move_omnisend_newsletter_checkbox() {
// Ensure the Omnisend checkbox field exists and output it
if ( function_exists( 'omnisend_checkbox_custom_checkout_field' ) ) {
// Call the Omnisend function with the correct argument
omnisend_checkbox_custom_checkout_field( WC()->checkout() );
}
}It works, but could you please check with plugin developers if this solution is okay to be used on production site?
I don’t want anything to break or stop working when plugin gets updated.
Thanks!Thanks for that.
The code I used is below.
Please note that I do not know much of PHP and used ChatGPT to get me that.
I see that it’s not perfect, as to me it looks like it’s just inserting a hardcoded copy of the currently rendered checkbox, hence probably I am getting a duplicate.However, any other solutions with hiding the checkbox, were hiding both checkboxes.
add_action( 'woocommerce_review_order_before_submit', 'move_omnisend_newsletter_checkbox', 10 );
function move_omnisend_newsletter_checkbox() {
// Ensure the Omnisend checkbox field exists
$checkbox_field = '<p class="form-row omnisend_newsletter_checkbox_field" id="omnisend_newsletter_checkbox_field" data-priority="">
<span class="woocommerce-input-wrapper">
<label class="checkbox">
<input type="checkbox" name="omnisend_newsletter_checkbox" id="omnisend_newsletter_checkbox" value="1" class="input-checkbox">
Email me with news and offers <span class="optional">(optional)</span>
</label>
</span>
</p>';
// Output the existing Omnisend checkbox before the Place Order button
echo $checkbox_field;
}Screenshot – https://prnt.sc/dqD4TD06TdOL
My Omnisend ID – 67ee601318a91bd83008b820Thanks,
Matt
Thank you.
Please update us when this functionality has been added.
In the meantime, is there a way to manipulate it with custom code?
I tried to use ‘woocommerce_review_order_before_submit’ hook with add_action(), but I get a duplicate checkbox rendered above Place Order button, while original checkbox remains in billing fields.Hey @supportomnisend, I agree with @teminet. It would be great to be able to choose were the tickbox is, even with simple woocommerce hooks.
Mailchimp has this option, but I really want to move away from them!
https://prnt.sc/OieqgB4xxKih
This is the only element that’s stopping me from coming to Omnisend.Do you think it’s possible Omnisend will implement it anytime soon?
Thanks, @superlemon1998. Please update us when it’s fixed.
Same problem, can we please get it solved.
All worked fine, thanks for your support ♥