agenturanmut
Forum Replies Created
-
I have opened a support ticket via https://wpeverest.com/.
I will therefore close this ticket.
Hello,
We have replaced the plugin with the patch you provided.
Unfortunately, we are still experiencing the same issue.
Could you please take another look at this?
Best regards
Hello,
It would be great if we could finalise this now by simply sending us the patch.
Best regards
- This reply was modified 4 weeks ago by agenturanmut.
Hello,
thank you very much for the quick response as well as providing a solution — we really appreciate your support.
Could you please provide us with the patched files as soon as possible so we can apply the fix immediately on our end?
Additionally, could you let us know when the next official release including this fix is planned?
Thank you again for your assistance.
As soon as we get the fix we mark this discussion as solved.Best regards
Hello,
thank you for your response and for forwarding this to your development team.
I just wanted to follow up and clarify our findings. From our side, the issue seems to be related to queries triggered by the plugin in the context of multilingual functionality. While the query itself involves WPML tables, it appears to be initiated or influenced by the plugin, which in our setup leads to duplicated JOINs and ultimately causes the database error.
Because of this, taxonomies become corrupted and posts associated with them are no longer displayed correctly.
Could you please take another look at the interaction between your plugin and WPML, especially regarding multilingual queries? It would be great if this behavior could be reviewed and potentially adjusted.
Please let me know if you need any additional information or testing from our side.
Best regards,
We were able to solve our problem. It had nothing to do with the plugin directly – thanks for the help anyway.
We are currently experiencing the same/similar error.
Mails are being sent to us, but only to the site administrator and not to the mail address stored in “New User Registered Email”
Forum: Plugins
In reply to: [User Role Editor] Error at edit userno, the error only occures when plugin is enabled and a user-role is selected
Forum: Plugins
In reply to: [MapGeo - Interactive Geo Maps] Google API and GDPR👌
Forum: Plugins
In reply to: [Tiered Pricing Table for WooCommerce] Manual Order with BundlesHello,
I have changed the two functions by adding
if ($item->get_subtotal()>0) {. That seems to work for now. Do you have any concerns?public function adjustOrderItemPriceSave( $item, $item_id, \WC_Order $order ) { if ( $item instanceof WC_Order_Item_Product ) { $productId = $item->get_variation_id() ? $item->get_variation_id() : $item->get_product_id(); $qty = $item->get_quantity(); $newPrice = PriceManager::getPriceByRules( $qty, $productId,'raw' ); if ( $newPrice ) { foreach ( $order->get_items() as $_item ) { if ( $item->get_id() === $_item->get_id() && $_item instanceof WC_Order_Item_Product ) { if ($_item->get_subtotal()>0) { $_item->set_total( $newPrice * $qty ); $_item->set_subtotal( $newPrice * $qty ); $_item->get_product()->set_price( $newPrice ); $_item->save(); } } } } } return $item; } public function adjustOrderItemPriceUpdate( \WC_Order_Item $item ) { if ( $item instanceof WC_Order_Item_Product ) { if ($item->get_subtotal()>0) { $productId = $item->get_variation_id() ? $item->get_variation_id() : $item->get_product_id(); $qty = $item->get_quantity(); $newPrice = PriceManager::getPriceByRules( $qty, $productId,'raw' ); $newPrice = $newPrice ? $newPrice : $item->get_product()->get_price(); $item->get_product()->set_price( $newPrice ); $item->set_subtotal( $newPrice * $qty ); if ( ! $this->isLineItemTotalManuallyChanged( $item->get_id() ) ) { $item->set_total( $newPrice * $qty ); } $item->save(); } } return $item; }Kind regards,
LucasForum: Plugins
In reply to: [Tiered Pricing Table for WooCommerce] Manual Order with BundlesHello,
we just found out that orders with bundles do not work at all if “tier_pricing_table/addons/manual_orders_active” is activated.
We have just created an invoice again for an already completed order. Suddenly, the products that are included in the bundles were charged, instead of being only displayed with 0€.
We now had to remove the tiered price function for the backend.Can you take a look at this?
Kind regards,
LucasForum: Plugins
In reply to: [WooCommerce] Shipping taxes should always be the sameHi @rur165,
i tried to set it up like you described and like in the doc you sent, but unfortunately it still doesn’t work. (see here: https://imgur.com/a/Ndh4TXa)
Like I said, Shipping always has to be 19%. It doesn’t matter which tax rate is in the order. In my test order I have products only with 7% tax and the shipping also gets 7% tax, which is wrong because it needs to be 19%.
Is there a way to do this?
Forum: Plugins
In reply to: [Contact Form 7] Closing p tagHello,
thats perfect thank you! Workaround also works!
Kind regards!
Forum: Plugins
In reply to: [Contact Form 7] Closing p tagHello,
here is the content of our form tab:
<div class="contact-form"> <div class="fusion-builder-row fusion-row"> <div class="fusion-layout-column fusion_builder_column fusion_builder_column_1_3 fusion-one-third fusion-column-first 1_3"> <div class="fusion-column-wrapper">[select inquiry-salutation "Salutation" "Mr" "Ms" "Mrx" ] </div> </div> <div class="fusion-layout-column fusion_builder_column fusion_builder_column_2_3 fusion-two-third fusion-column-last 2_3"> <div class="fusion-column-wrapper">[text* inquiry-name placeholder "First and Last Name *" ] </div> </div> </div> <div class="fusion-builder-row fusion-row"> <div class="fusion-layout-column fusion_builder_column fusion_builder_column_1_1 fusion-one-full fusion-column-first 1_1"> <div class="fusion-column-wrapper">[text inquiry-company placeholder "Company"] </div> </div> </div> <div class="fusion-builder-row fusion-row"> <div class="fusion-layout-column fusion_builder_column fusion_builder_column_1_3 fusion-one-third fusion-column-first 1_3"> <div class="fusion-column-wrapper">[text inquiry-zip placeholder "ZIP" ] </div> </div> <div class="fusion-layout-column fusion_builder_column fusion_builder_column_2_3 fusion-two-third fusion-column-last 2_3"> <div class="fusion-column-wrapper">[tel* inquiry-phone placeholder "Phone *" ] </div> </div> </div> <div class="fusion-builder-row fusion-row"> <div class="fusion-layout-column fusion_builder_column fusion_builder_column_1_1 fusion-one-full fusion-column-first 1_1"> <div class="fusion-column-wrapper">[email* inquiry-mail placeholder "Email *"] </div> </div> </div> <div class="fusion-builder-row fusion-row"> <div class="fusion-layout-column fusion_builder_column fusion_builder_column_1_1 fusion-one-full fusion-column-first 1_1"> <div class="fusion-column-wrapper">[textarea inquiry-text placeholder "Your message"] </div> </div> </div> <div class="fusion-builder-row fusion-row privacy"> <div class="fusion-layout-column fusion_builder_column fusion_builder_column_1_1 fusion-one-full 1_1"> <div class="fusion-column-wrapper">[acceptance request-privacy] I hereby confirm the <a title="Privacy Policy" class="text-link" href="https://www.acd-gruppe.de/en/privacy-policy/"> privacy policy</a> * [/acceptance]</div> </div> </div> <div class="fusion-builder-row fusion-row"> <div class="fusion-layout-column fusion_builder_column fusion_builder_column_1_1 fusion-one-full fusion-column-last 1_1"> <div class="fusion-column-wrapper form-button">[submit "Send request"]</div> </div> </div> </div>Kind regards,
Lucas HermesForum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Icons creates duplicate IDHello,
that would be great. Thank you!
Kind regards,
Lucas Hermes