Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Lee Blue

    (@reality66)

    Yes, there is a filter for that

    remove_action(‘wp_head’, array(‘Cart66Common’,’displayVersionInfo’));

    Thread Starter hiboy

    (@hiboy)

    hi reality66, may i know where do i place that filter?

    Plugin Author Lee Blue

    (@reality66)

    you should be able to drop that code in your theme’s functions.php file

    Thread Starter hiboy

    (@hiboy)

    hi again, thank for your reply, i tried placing in my theme function.php and the meta generator still appear when i “view page source” at my front end. Any solution?

    Thread Starter hiboy

    (@hiboy)

    Hmm, i just updated cart 66 lite to the latest version 1.5.1.1, could it be there is a new filter?

    Anonymous User

    (@anonymized-1391468)

    Add this to functions.php:

    if (class_exists('Cart66Common')) {
    	function remove_cart66_meta() {
    	    Cart66Common::removeCart66Meta();
    	}
    	add_action('init', 'remove_cart66_meta');
    }
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to remove cart 66 meta generator?’ is closed to new replies.