- This topic has 6 replies, 3 voices, and was last updated 3 years, 9 months ago by
Steve.
-
AuthorPosts
-
-
April 14, 2018 at 5:43 pm #8845
thorMemberSince pik is a offensive word in Denmark I would like to remove the ‘This website is powered by Piklist. Learn more at https://piklist.com/ –‘
How can I do that?
-
April 17, 2018 at 3:09 pm #8849
-
April 17, 2018 at 6:39 pm #8850
thorMemberI have added it to the functions.php but somehow this isn’t working?
-
April 18, 2018 at 12:30 pm #8853
cyclissmoMemberI use this action sparingly, only for “mission critical” websites. I just plop it into functions.php, outside of any action callback and it works just fine:
remove_action( 'wp_footer', array( 'piklist_theme', 'piklist_love' ), 1000 );And then there is the meta “generator” that also specifies piklist which should be removed as well:
remove_action('wp_head', array('piklist_theme', 'version_in_header')); -
April 18, 2018 at 12:36 pm #8854
SteveKeymaster@thor– Try running it from
wp_head:add_action( 'wp_head', 'remove_piklist_love' ); function remove_piklist_love() { remove_action('wp_footer', array('piklist_theme', 'piklist_love'), 1000); }
@cyclissmo–remove_action()must be called inside a function and cannot be called directly in your plugin or theme:
https://codex.wordpress.org/Function_Reference/remove_action#Example -
April 19, 2018 at 3:59 am #8855
thorMember@Steve – Thanks. Now it works 🙂
-
April 19, 2018 at 10:27 am #8856
SteveKeymasterGreat. Closing ticket.
-
-
AuthorPosts
- The topic ‘remove piklist_love’ is closed to new replies.