Viewing 1 replies (of 1 total)
  • Hi @lsnewton,

    You can use smooth_post_title hook to add some other text after slide title, please refer below code to use this filter.

    function modify_smooth_slide_title($post_title,$post_id,$smooth_slider,$smooth_slider_css) {
    	$post_title=$post_title.' Test';
    	return $post_title;
    }
    
    add_filter('smooth_post_title','modify_smooth_slide_title',10,4);

    You can add above code in wp-content => themes => current theme => functions.php file.

    Please let me know if it works.
    Thank you for all your patience.

    Best Regards,
    Sukhada,
    SliderVilla Support Team.

Viewing 1 replies (of 1 total)
  • The topic ‘Modifying the post meta output’ is closed to new replies.