Rbbiz
Forum Replies Created
-
I’ve added the code to my child theme functions.php, but it doesn’t work.
How do I replace the search in the header by the product search extension?
Forum: Fixing WordPress
In reply to: Admin dashboard lay-out issuecloudinvoiceclient
Forum: Fixing WordPress
In reply to: Admin dashboard lay-out issueThere was one plugin that was not updated recently and not a suspect in this case, that was the one causing it:
cloudinvoiceclient
I’m going to contact the developer.
Forum: Plugins
In reply to: [Force Login] Whitelist for dummiesThe thing is it only happens with one url, all others work perfect… any thoughts on that? Do you also do programming work? Wouldn’t mind to pay for you to research it further? Thanks in advance.
Forum: Plugins
In reply to: [Force Login] Whitelist for dummiesOkay, new day. Same problem. Getting pretty frustrated… how is this possible?
Forum: Plugins
In reply to: [Force Login] Whitelist for dummiesI did both version with site_url and full url, now it works. Pretty weird…
Forum: Plugins
In reply to: [Force Login] Whitelist for dummiesThe craziest thing happened overnight. The first URL that I white listed suddenly doesn’t get white listed any more…
Current code, which was working 24 hours ago:
/** * Filter Force Login to allow exceptions for specific URLs. * * @return array An array of URLs. Must be absolute. **/ function my_forcelogin_whitelist( $whitelist ) { $whitelist[] = 'https://shop.easyorange.nl/dealers/'; $whitelist[] = site_url( '/bedankt-voor-je-aanvraag/' ); $whitelist[] = site_url( '/mijn-account/lost-password/' ); return $whitelist; } add_filter('v_forcelogin_whitelist', 'my_forcelogin_whitelist', 10, 1);
URL 2 and 3 are white listed. If I change the first URL to the same form as the second two it does not work.
Weird science.. help would be appreciated!
- This reply was modified 8 years, 2 months ago by Rbbiz.
Forum: Plugins
In reply to: [Force Login] Whitelist for dummiesSeems to work like a charm :-). Thanks so much. Will leave a review!
Forum: Fixing WordPress
In reply to: How to change to blog title position (Desperate)Wow, thanks. Worked like a charm!!