Viewing 2 replies - 1 through 2 (of 2 total)
  • @bkgroup,
    You should be able to add the nofollow to the links by adding a simple filter. Add this to your functions.php file for your theme (after the opening <?php tag):

    function my_override_appip_product_filter($retval,$retarr){
    	return str_replace(' href=',' rel="nofollow" href=',$retval);
    }
    add_filter('appip_single_product_filter','my_override_appip_product_filter',10,2);

    That will add the rel="nofollow" to all the links for the product.

    Regards,
    Don

    Thread Starter bkgroup

    (@bkgroup)

    Thanks don,
    It’s worked perfectly as I thought.
    Thanks for this awesome plugin. I am in love with it.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Adding Nofollow Tag to Plugin’ is closed to new replies.