alyabee
Forum Replies Created
-
It seems resolved to me, thanks. I hope we did not rush and break some functionality.
Hi there, great plugin! I’m having this same issue. So many requests in my access log like this:
GET /wp-content/plugins/wc-wise-gateway/ HTTP/1.0 403I have no cloudflare and the source IP is my own server. It means requests are going out from my own wordpress app, maybe jetpack maybe something else I don’t know but when I turn the plugin off, it just stops.
Hope you can help, this topic seems resolved so maybe I open a new one?
Done
I can confirm that the shortcode problem is now fixed, however the following link is still accessible publicly.
https://alyabee.com/affiliates?couponid=cSjZeKQR
I tried turning it off and on but nothing changed. Can you guide me to the file where you prevent public access to this page, so I can debug and help you?1) Yes, I tried multiple times in incognito. Please check this link: https://alyabee.com/affiliates?couponid=cSjZeKQR
2) There is only [couponaffiliates] on my page and this short code is added and visible unrendered as in screenshot.
Hope you can help. Thanks for this great plugin.
Forum: Plugins
In reply to: [Fluid Checkout for WooCommerce - Lite] Order Pay Page SupportHi, fluid checkout is not affecting this page. The page is just badly designed by Neve. It would be great to have the same layout as normal checkout of fluid with read-only fields. Never mind, for now there is nothing to do about it.
Before I close this issue I have another question. I tried 2 different phone validation plugins but as usual none of them work with fluid checkout. Is there any phone validation plugin that works with fluid? We want to send sms to our customers but that requires strict validation including country code etc. Validation of fluid is too general for this.
Thanks.
Thanks for great support. Cause was Neve theme and fixed with following:
add_filter( 'woocommerce_cart_item_price', 'custom_show_crossed_regular_price_on_cart', 11, 3 ); function custom_show_crossed_regular_price_on_cart( $price, $cart_item, $cart_item_key ) { $product = $cart_item['data']; if ( '' === $product->get_price() ) { $price = apply_filters( 'woocommerce_empty_price_html', '', $product ); } elseif ( $product->is_on_sale() ) { $price = wc_format_sale_price( wc_get_price_to_display( $product, array( 'price' => $product->get_regular_price() ) ), wc_get_price_to_display( $product ) ) . $product->get_price_suffix(); } else { $price = wc_price( wc_get_price_to_display( $product ) ) . $product->get_price_suffix(); } return $price; }
Yes, Irina replied me.
https://algolplus.freshdesk.com/helpdesk/tickets/53908Hope you can fix it.
I created ticket but cannot track process. I created it without account and I don’t see any ticket id so I hope you email me updates.
Thanks
Forum: Plugins
In reply to: [Translate Multilingual sites - TranslatePress] Translating more effectivelyWell technically you did not resolve these issues. On the other hand, I found a workaround which never came to my attention. Shortcodes!
https://translatepress.com/docs/restrict-by-language/translation-shortcode/I wish you recommended me this 2 weeks ago. It would save me a lot of time. This fixes all 3 of my problems partially.
1. I can edit my fat original paragraphs whenever I want without losing translations.
2. No garbage left behind. Translation gets deleted with product.
3. I can manage translation directly in admin panel description area.This solution must go to the homepage of this plugin to save some time of others.
Thanks for this great plugin!
Could you help me on how to use it with BEAR bulk editing plugin? How to bulk edit prices for other currencies? At the moment it shows only main currency prices.
Just needed a similar thing. I used this, after changing the country it sets correct currency but the page needs to be refreshed… At least it works. If you can improve it please share here.
add_action( 'woocommerce_cart_calculate_fees', 'change_currency_on_country_update' ); function change_currency_on_country_update() { if ( is_admin() && ! defined( 'DOING_AJAX' ) ) return; $country = WC()->customer->get_shipping_country(); if ( class_exists( 'WOOMULTI_CURRENCY_F_Data' ) ) { $wmc = WOOMULTI_CURRENCY_F_Data::get_ins(); switch ( $country ) { case 'IN': $wmc->set_current_currency( 'INR' ); break; default: $wmc->set_current_currency( 'USD' ); } } }