Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #294109

    Hi.

    In the single blog post, where can I edit the “Share this entry” and comment section?

    I would like to:
    1. Update the “Share this entry” text.
    2. Always display the roll over color for the social icon.
    3. Update the “Leave a Reply” text as well as the sub text below it.
    4. Update the button “Post Comment” text.

    Thank you!

    #294214

    Hey cindy531!

    Thank you for visiting the support forum.

    1.) Please use this on functions.php:

    function modify_share_title(){
    return "CHANGE THE TITLE HERE"; 
    }
    add_filter('avia_social_share_title', 'modify_share_title', 10, 2);

    2.) Add this on Quick CSS or custom.css:

    #top #wrap_all .av-social-link-rss	   	 a{color:#fff; background-color:#ffa133; }
    #top #wrap_all .av-social-link-facebook  a{color:#fff; background-color:#37589b; }
    #top #wrap_all .av-social-link-twitter   a{color:#fff; background-color:#46d4fe; }
    #top #wrap_all .av-social-link-mail      a{color:#fff; background-color:#9fae37; }
    #top #wrap_all .av-social-link-dribbble  a{color:#fff; background-color:#e44885; }
    #top #wrap_all .av-social-link-linkedin  a{color:#fff; background-color:#419cca; }
    #top #wrap_all .av-social-link-search    a{color:#fff; background-color:#222222; }
    #top #wrap_all .av-social-link-gplus     a{color:#fff; background-color:#de5a49; }
    #top #wrap_all .av-social-link-behance   a{color:#fff; background-color:#008cfa; }
    #top #wrap_all .av-social-link-flickr    a{color:#fff; background-color:#ff0086; }
    #top #wrap_all .av-social-link-forrst    a{color:#fff; background-color:#234317; }
    #top #wrap_all .av-social-link-myspace   a{color:#fff; background-color:#000000; }
    #top #wrap_all .av-social-link-tumblr    a{color:#fff; background-color:#345574; }
    #top #wrap_all .av-social-link-vimeo     a{color:#fff; background-color:#31baff; }
    #top #wrap_all .av-social-link-youtube   a{color:#fff; background-color:#a72b1d; }
    #top #wrap_all .av-social-link-pinterest a{color:#fff; background-color:#cb2027; }
    #top #wrap_all .av-social-link-skype 	   a{color:#fff; background-color:#12a5f4; }
    #top #wrap_all .av-social-link-instagram a{color:#fff; background-color:#a67658; }
    #top #wrap_all .av-social-link-five_100_px a{color:#fff; background-color:#222222; }
    #top #wrap_all .av-social-link-soundcloud  a{color:#fff; background-color:#F76700; }
    #top #wrap_all .av-social-link-xing 	     a{color:#fff; background-color:#006567; }
    #top #wrap_all .av-social-link-vk 	   	 a{color:#fff; background-color:#597BA5; }
    #top #wrap_all .av-social-link-reddit 	 a{color:#fff; background-color:#FF4500; }

    3.) Edit comments.php, find this code on line 172:

    echo "<h3 class='miniheading'>".__('Leave a Reply','avia_framework')."</h3>";
    

    Change the text.

    4.) On the same file, look for this code on line 174:

    comment_form();
    

    Replace it with this:

    $defaults = array(
        'label_submit' => __('Post a Question')
    );
    comment_form($defaults);

    Change the label_submit value.

    Regards,
    Ismael

    #294619

    Clear instructions and quick response, so awesome. Thanks Ismael!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Edit single blog post "Share this entry" and comment sections’ is closed to new replies.