• I want to use the Ultimate Social Media plus plugin. When I activated it I am getting an error message telling me

    Error : Please fix your theme to make plugins work correctly. Go to the Theme Editor and insert the following string: <?php wp_head(); ?> Please enter it just before the following line of your header.php file: </head> Go to your theme editor: click here.

    I am using a Customizr child theme. I dont see a closing </head>

    Under appearance-theme I have my child theme active but I don’t know how to add things to the file.

Viewing 1 replies (of 1 total)
  • Thread Starter cdanderson1

    (@cdanderson1)

    I dont see a </head> in the file.

    <?php
    /**
    * This is where you can copy and paste your functions !
    */

    add_filter(‘tc_credits_display’, ‘my_custom_credits’);
    function my_custom_credits(){
    $credits = ‘Customized by Charlotte’;
    $newline_credits = ”;
    return ‘
    <div class=”span4 credits”>
    <p> · © ‘.esc_attr( date( ‘Y’ ) ).’ ‘.esc_attr(get_bloginfo()).’ · ‘.($credits ? $credits : ‘Designed by Themes & Co‘).’ ·’.($newline_credits ? ‘
    · ‘.$newline_credits.’ ·’ : ”).'</p> </div>’;
    remove_filter(‘comment_text’, ‘make_clickable’, 9);
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Using Ultimate Social Media Plus – HELP’ is closed to new replies.