Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter antoniosilva

    (@antoniosilva)

    I appreciate the quick answer and the explanation, it never ocurred to me that the id could be in the shortcode as well, I didn’t even think of it otherwise I would have searched for it in the FAQ, anyways thank you for your time.

    I would also like to have such a feature, since implied consent is not really consent, even if the information is not personal it still belongs to non-essencial cookies, maybe with a filter in php to disable it and a function in js to enable it ?

    Thread Starter antoniosilva

    (@antoniosilva)

    I’ve emailed you the website URL, I should have included it in the original post, my apologies for that.

    You will find that the “New” badges are working on the two top most product loops but that’s because I had to disable one line of your plugin, like so:

    function wpmdr_remove_meta_php() {
    	
    		if(get_option('wpmdr_disable_php')=="0"){
    			add_filter('the_date', '__return_false');
    			add_filter('the_author', '__return_false');
    			add_filter('the_time', '__return_false');
    			add_filter('the_modified_date', '__return_false');
    			add_filter('get_the_date', '__return_false');
    			add_filter('get_the_author', '__return_false');
    			add_filter('get_the_title', '__return_false');
    		      //add_filter('get_the_time', '__return_false');
    			add_filter('get_the_modified_date', '__return_false');
    		}
    	
    }
Viewing 3 replies - 1 through 3 (of 3 total)