Child theme file functions.php is loaded before theme files, so You cant directly remove action which wasn't added yet, so...
function unhook_appthemes_functions() {
remove_action('wp_head',...
Child theme file functions.php is loaded before theme files, so You cant directly remove action which wasn't added yet, so...
function unhook_appthemes_functions() {
remove_action('wp_head',...
This is simply done by a javascript toggle. As i said before there are lots of examples here on this site: http://www.randomsnippets.com/2008/02/12/how-to-hide-and-show-your-div/
Looks like we need to replace this code in theme-voting.php:
//display the coupon success % badge within the loop
function clpr_vote_badge($postID, $the_transient) {
global $user_ID,...