• Resolved jeffreytp

    (@jeffrytp)


      Make Author Bold in Testimonial Display

    edit admin.php for plugin
    go to line 3640:
    $builder .= ‘<div class=”author”>’.apply_filters(‘hms_testimonials_system_source’, nl2br($testimonial[‘name’]), $testimonial).'</div>’;

    change to:
    $builder .= ‘<div class=”author”><b>~’.apply_filters(‘hms_testimonials_system_source’, nl2br($testimonial[‘name’]), $testimonial).'</b></div>’;

    http://wordpress.org/plugins/hms-testimonials/

Viewing 1 replies (of 1 total)
  • Plugin Author Jeff K

    (@kreitje)

    In your themes style.css

    .hms-testimonial-container .author { font-weight:bold; }

    I recommend not changing any code inside the plugin folder as the next time you update the plugin all your changes will be replaced.

    You could also use WP filters if you’d like in your themes functions.php file.

Viewing 1 replies (of 1 total)
  • The topic ‘Make Author Bold in Testimonial Display’ is closed to new replies.