jokkie
Forum Replies Created
-
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] hiding the banner does not workHi Aert,
Thank you, that did the trick!!
Kind regards,
JonasForum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] hiding the banner does not workHi Aert,
Ok well then I need the solution for disabling on my homepage as well, that’ll do the trick I guess 🙂
Thank you!
JonasForum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] hiding the banner does not workHi Aert,
I fixed the PHP error. I copied the exact code from your example and put that in the cookiebanner.php at /wpcontent/mu-plugins
However, when testing incognito, the banner still shows up at the front page.
Could it really not having to do with the fact that mystika.be/landing gets redirected automatically to the root mystika.be, so the PHP script with ‘landing’ is therefore not applied?
Thank you so much for the support! I really appreciate this 🙂
- This reply was modified 2 years, 10 months ago by jokkie.
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] hiding the banner does not workHi,
I’ve added a php file in the /wp-content/mu-plugins folder but now I get a WordPress error.
<?php defined( 'ABSPATH' ) or die( "you do not have acces to this page!" ); /** * Filter post types for cookiewarning * It's too early to use global $post or url_to_postid(), so we do a simple text comparison * * @param int $cookiewarning_required * * @return bool */ function cmplz_my_filter_site_needs_cookiewarning( $cookiewarning_required) { $url = is_ssl() ? "https" : "http"; $url .= "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; //don't show cookie banner on page where the URL contains the parameter "shop" if ( strpos( $url, 'landing' ) !== false ) { $cookiewarning_required = false; //to disable the cookieblocker, uncomment the following define('CMPLZ_DO_NOT_BLOCK', true); } return $cookiewarning_required; } add_filter( 'cmplz_site_needs_cookiewarning', 'cmplz_my_filter_site_needs_cookiewarning' );Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] hiding the banner does not workOk could you guide me how to use that please?
Thank you so much
JonasForum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] hiding the banner does not workHi Leon,
I want to disable the banner on the root indeed, the problem is, I think, I just can’t enter the page id/slug (“landing”) in the PHP code, because it’s the root.
I tried to disable it with the method in the page editor but that does not seem to work unfortunately.Thank you!
Kind regards,
JonasForum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] hiding the banner does not workHi Aert,
/landing is the homepage, that’s where I want to disable the cookie banner, so it doesn’t block the preloader animation (especially on mobile)
Thank you!!
Kind regards,
JonasForum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] hiding the banner does not workHI!
I fixed it by adding:
.paoc-popup-close {top:80px;}
But one more question: is there anyway the popup can scroll on mobile? Problem, when there is more content then fits, on mobile the popup won’t scroll down.
Thanks!
Jonasjust add this line (for white color)
.caldera-grid .field_required {
color:#fff!important;
}Forum: Plugins
In reply to: [Conditional Menus] Polylang and Conditional Menus pluginSame for me. The conditional menus only work with the primary language.. Please fix this guys!
Forum: Plugins
In reply to: [Simple Membership] only show loginformTo explain better:
If I add this to the plugin:
The login link will be this: [http://mywebsite.com/protectedarea/“http://yoursite.com/membership-login/”]
instead of
[http://yoursite.com/membership-login/]
Thanks for the help!
Forum: Plugins
In reply to: [Simple Membership] only show loginformWell I tried that, but the problem is that the url would go to http://mywebsite.com/protectedarea/”http://the_url_in_custom_messages/”
Any help on this one, because this plugin would solve my problem 🙂
Thanks for the help!!!Forum: Fixing WordPress
In reply to: customize default search engineHi Steve,
Thanks again for the reply!
However this plugin is only for backend purposes, I need visitors to search for the catalog numbers..Thanks!
Forum: Fixing WordPress
In reply to: customize default search engineHi Steve,
Thanks for the reply!
Unfortunatly, none of these search plugins work with image tags.Let me show my problem:
Here I have a catalog, and as you can see, all images have their unique filenames. However, when I search for a filename, results won’t show up.
Thank you for the help!