borish1
Forum Replies Created
-
Hey @kleroy,
When you go to the UM form builder and create a new field or edit the existing one you have Privacy on the right side (preview here: https://prnt.sc/n8xqbn). You just set the option to “Specific role” and then change it to be admin only. That helped me remove the duplicate fields.
Forum: Plugins
In reply to: [Order Export & Order Import for WooCommerce] Cannot export ordersMade the import. Issue with the import of the orders is that they not recognize Taxes (and they are not calculated at all) even though I created standard and reduced taxes exactly as they appear on the old website.
Additionally, after a few tests I could say that this is happening only for the logged out users. Logged in users don’t have any issues as I see currently
Forum: Plugins
In reply to: [Giftable for WooCommerce] Gift for regular items (disable sale items)Hey @decomteam,
Sorry if I didn’t explained good. What I was saying is if there is any chance to exclude sale prices to be counted. I don’t have VAT / Taxes or any other % value on the cart so I don’t need to worry about those. Only thing turned on is shipping but that comes at the checkout so that can also be ignored. What I did is this:
$items_on_sale = 0; foreach ( WC()->cart->get_cart() as $cart_item ) { $_product = wc_get_product( $cart_item['data']->get_id() ); if($_product->is_on_sale()) $items_on_sale += $cart_item['data']->get_price(); } $total = WC()->cart->total - $items_on_sale;
I think this should work as intended if we consider that I don’t have anything turned on from above mentioned. Correct me if I’m wrong and thank you for the fast response.
Forum: Plugins
In reply to: [PayPal Plus for WooCommerce] Payment process fails at randomHey Andreas,
Thank you for your fast reply.
Problem is that I have this setup working good in the last 5-6 months. We never had issues with payment at all. I think this started happening after we got woocommerce set on 3.4.0 but I cannot be 100% sure. This is more of a guess that needs checking out.
Forum: Plugins
In reply to: [PayPal Plus for WooCommerce] Payment process fails at randomOk I tried disabling woocommerce germanized and it did fix the issue with those 2 fields that I added.But I cant say for sure it cleared all the problems.
Does this mean that woocommerce germanized and paypal plus cant work together? I mean I used the before with no problems I’m not sure how this all happened.
Forum: Plugins
In reply to: [PayPal Plus for WooCommerce] Payment process fails at randomOk,
After numerous testings, I found out that if I check for shipping options (in which I included 2 additional fields because my client needs them (packstation and packstation number) It fails returning an error “Fehler im Bestellvorgang. Versuche es bitte erneut.”
Is this because paypal plus plugin is trying to validate those fields? Any way I can bypass and fix this?
Thank you in advance.
Forum: Plugins
In reply to: [Theme My Login] Multisite subsite registrationThanks, I made the tweaks so it works properly now. One more thing. Is there a function inside a plugin which check if its TML page? something like:
if(theme_my_login()) {}