mistacup
Forum Replies Created
-
Dear Germanized Support Team,
thank you for your previous response. Unfortunately, your suggestion regarding theme-related styling does not resolve the issue.
The core of the problem is that Germanized itself injects an additional AGB-related error message into the WooCommerce checkout notices when the corresponding checkbox is not selected. This injection is hardcoded in such a way that it overrides or bypasses theme layout logic, particularly in our case with the Breakdance Builder.
The issue does not occur when Germanized is deactivated – so the root cause clearly lies in the logic that injects this specific message. Attempts to filter or remove the message via
functions.phpor override it using JavaScript failed because Germanized either reinserts or duplicates the message regardless of such modifications.We kindly ask:
- Is there a way to disable the automatic insertion of the Germanized AGB error message entirely?
- Alternatively, is there a filter hook or option to gain full control over the structure and placement of that message?
A customizable and non-hardcoded approach would be ideal, especially for theme compatibility and accessibility adjustments.
Thank you in advance for your support.
Best regards
Forum: Plugins
In reply to: [WooCommerce] Problem with net price and quantity calculating with tax(NP x V%) x QY = End price
NP = Net Price
V% = variable Tax percentage
QY = QuantityThe NP x V% should give an output with only 2 decimals and calculate then the quantity with multiplication
Forum: Plugins
In reply to: [WooCommerce] Problem with net price and quantity calculating with taxHello,
I missed the notification that it’s solved.
The calculation of prices excluding tax is right yes but it’s not reflecting the real world situation.
In countries where the governments change many times the taxes or if that happens anytime in any country this calculation is a problem.
If we need to enter the net price of a product to have a fix end price like shown at the shop then you need to change the calculation at plugin like this:
(NP x V%) x QY
NP = Net Price
V% = variable Tax percentage
QY = QuantityIt doesn’t matter for the customer if we set at WooCommerce product prices including or excluding taxes. Important is that they see an end price of 5.10 and if they add 5 item to cart they need to see the price of 5 x 5.10 = 25.50 and boy 0.02 more.
You need to change the way it’s calculating like shared above pls.
Best wishes
Forum: Plugins
In reply to: [Reviews and Rating – Google Reviews] Aggregate Rating to all sites & posts@designextreme thank you very much for your advice. I´ll try this 🙂
*Update: The code is giving me an error after adding only the javascript code to header with the rating shortcut
Best wishes,
mistacup- This reply was modified 5 years, 9 months ago by mistacup.
Forum: Plugins
In reply to: [Reviews and Rating – Google Reviews] Aggregate Rating to all sites & posts@designextreme thx for response.
Can we add it to several or all pages instead of only to a single page?Forum: Plugins
In reply to: [Reviews and Rating – Google Reviews] Aggregate Rating to all sites & postsHi Noah,
thank you for very fast support.
I mention same website and same local business.
If check for example the homepage with https://search.google.com/test/rich-results?utm_campaign=sdtt&utm_medium=message then it´s showing me that structured data for aggregate rating is active.
If I check https://www.mydomain.com/anypage where I added the rating code then the aggregate rating is not visible at the test for structured data.I hope this detailed information is useful.
Thank you very much for support.Best wishes,
mistacupHi,
thank you for getting back.Can I send you a private message or an email?
Hi,
I tried that out but it´s not working for me.I have 4 languages. The german one don´t have an /de, that´s without a slang.
I have tried this one and no more popup is showing:
var url = window.location.href;
if (url.indexOf(‘/en’) > 0) {return false;};
if (url.indexOf(‘/fr’) > 0) {return false;};
if (url.indexOf(‘/it’) > 0) {return false;};How can I manage this?
Hi again,
sorry for late reply. I thaug that this will work.
But the problem is, that the polylang language is not visible at the categories. I have several same post categories with same slang but for different language.Polylang has something like https://mywebsite.com/EN or with IT
Is it possible to speak to those language categories?I´m asking cause I have a big website. Do I have to add the shortcode to every page and post?
Hi, okay thank you but where can I set the language?
Every thing is already disabled. I did th
If I activate the above written things the problem is coming back.Hi,
Minify HTML, Inline all CSS and Minify all (previously) inlined CSS are activated at advanced settings.
Here´s the screenshot what´s showing:
https://prnt.sc/qmr5g5Thanks for response.
Forum: Plugins
In reply to: [WP Latest Posts] Disable Icon on HoverThat code is for every widget to not show the icon on hover.
/* Remove News Icon on Hover */ .wplp_listposts li .img_cropper:before { display: none !important; }if you don´t want to show the icon on hover for specific widgets, so you can change the number of the widget which you can find at the first page of the plugin under block list
#wplp_widget_242931Forum: Plugins
In reply to: [WP Latest Posts] Disable Icon on HoverHello,
I used now this code, I hope it works for other languages too:
/* Remove News Icon on Hover */ #wplp_widget_242931 .wplp_listposts li .img_cropper:before { display: none !important; }