koupmi
Forum Replies Created
-
Oh right same issue i had here and you answered: https://ww.wp.xz.cn/support/topic/there-is-not-possible-edit-text/
So again, that is issue on your side – users dont have time read some long story manuals, specially who pay – YOU have to make clearly UX/UI.
You said ” is replaced with the TCF consent layer, which is specifically designed for websites displaying ads” – thats not true, every country, even in the EU, have own cookies legislative laws. Many companies just want some custom text content and you are not the lawyers to judge. Specially when ther are often issues with translations so that text will be wrong. Make it as default text, but let it free to edit.
Also you said “ As such, this falls under the category of premium features, and per the ww.wp.xz.cn forum guidelines, we’re unable to assist you here.“
- i remeber that, i sent support request via your PRO plugin -> no one answered. Seems there is bug also -> https://ww.wp.xz.cn/support/topic/follow-up-on-unanswered-support-requests-via-plugin-website/
And yeah i already fixed that with this:
add_filter( ‘gettext’, function( $translated_text, $text, $domain ) {
if ( $domain === ‘complianz-gdpr’ && $text === ‘We use technologies like cookies to store and/or access device information. We do this to improve browsing experience and to show (non-) personalized ads. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.’ ) {
return ‘my text’;
}
return $translated_text;
}, 10, 3 );Very enjoyed that pretty UI design.
Forum: Plugins
In reply to: [Contact Form 7] BUG IN LATEST VERSION: Too many items selectedFound the issue – i had two same name in form, but it was working in previous version
Forum: Plugins
In reply to: [Contact Form 7] BUG IN LATEST VERSION: Too many items selectedIm looking on github, you have wrong this line:
if ( ‘radio’ === $tag->type or $tag->has_option( ‘exclusive’ ) ) {
should be
if ( ‘radio’ === $tag->basetype or $tag->has_option( ‘exclusive’ ) ) {
This condition mistakenly treats all checkboxes (even non-exclusive ones) as radios
Forum: Plugins
In reply to: [Contact Form 7] BUG IN LATEST VERSION: Too many items selectedI think its some bug in this realease:
SWV: Applies the
maxitemsvalidation rule to radio buttons and exclusive checkboxes.It make exlusive all checkboxes by default? When i rollback to version 5.9.6 it working as before.
Forum: Plugins
In reply to: [Kybernaut IČO DIČ] Ověření ARES + nepovinné vyplněníNakonec jsem zjistil, že nefunguje ani moje ičo a jednalo se o stejný problém jako tady https://ww.wp.xz.cn/support/topic/ares-neodpovida/
Aktualizace pluginu to vyřešila
- This reply was modified 2 years, 4 months ago by koupmi.
Forum: Plugins
In reply to: [Kybernaut IČO DIČ] Ověření ARES + nepovinné vyplněníDobrý den, jednalo se o IČO vypadá zadané správně.
- This reply was modified 2 years, 4 months ago by koupmi.
Forum: Fixing WordPress
In reply to: Post/Pages editor doesnt work – error in react-dom.min.jsI add to wp-config.php debugging, exactly this:
// Enable WP_DEBUG mode define('WP_DEBUG', true); // Enable Debug logging to the /wp-content/debug.log file define('WP_DEBUG_LOG', true); // Disable display of errors and warnings define('WP_DEBUG_DISPLAY', true); @ini_set('display_errors',0); // Use dev versions of core JS and CSS files (only needed if you are modifying these core files) define('SCRIPT_DEBUG', true);And Gutenberg also Elementor working now. Can anyone explain this mystery?
Previously there was just
define('WP_DEBUG', false);- This reply was modified 2 years, 4 months ago by koupmi.
Forum: Fixing WordPress
In reply to: Post/Pages editor doesnt work – error in react-dom.min.jsTried re-install WP, but still the same error
Forum: Fixing WordPress
In reply to: Post/Pages editor doesnt work – error in react-dom.min.jsYes, also tried change theme
Forum: Themes and Templates
In reply to: [Astra] Elementor is not compatible with Astra themeIt was resolved, second code works.
Forum: Plugins
In reply to: [Packeta] Chyba 500 při odesílání do zásilkovnyUž vyřešeno, bylo to chybou ve vlastním kódu ve functions.php
Konkrétně funkcí get_cart()- This reply was modified 3 years, 6 months ago by koupmi.
Or maybe just some hook, if i have in cart product with ID 2565, set currencty to eur

