Quote from
Asgaros on June 4, 2018, 8:24 pm
Hello @jonathan-2
You can change the length of the widget-titles via the asgarosforum_filter_widget_title_length-filter.
Here is an example-code which you can add to your themes functions.php-file:
add_filter('asgarosforum_filter_widget_title_length', 'custom_widget_length');
function custom_widget_length($length) {
return 50;
}
Hello @jonathan-2
You can change the length of the widget-titles via the asgarosforum_filter_widget_title_length-filter.
Here is an example-code which you can add to your themes functions.php-file:
add_filter('asgarosforum_filter_widget_title_length', 'custom_widget_length');
function custom_widget_length($length) {
return 50;
}