• On line 803 of carousel.class.php you’re setting the post_title value with a 45 character limitation. Would it be possible for you to have a setting for the max length of the title?

    Cheers and thank you.

    function get_display_data($post_id, $key, $length){
    
    		...
    	        switch ($key) {
    
    	           ...
    	            case 'post_title':
    
    	               echo substr(get_the_title($post_id), 0, 45);
    
    	                break;
    
  • The topic ‘Setting for Title Length (Feature Request)’ is closed to new replies.