Tagged: combo widget, title
Hi,
the Combo widget just let me choose how many posts I’d like to display – nothing else. It is not possible to add a widget title like for the most other widgets.
Could you please tell me how to add a title to the combo widget?
Either “hardcoded” in the theme file, or better: with an option field in the backend, when inserting the widget.
I have added a line to each widget title in my CSS, so I cannot add a “text widget” just for showing a widget title to the combo widget:
Thank you.
Hey Chris,
You can add a text widget above it with the following code:
<h3 class="widgettitle">Your title</h3>
For any additional options to the widget they would probably be feature requests: https://kriesi.at/support/enfold-feature-requests/
Thanks,
Rikard
Thanks, Rikard,
I added after
echo $before_widget;
in line 953 this:
echo "<h3 class='widgettitle'>Your Combo Widget Headline</h3>";
if someone needs this, too, works fine, thanks!