Tagged Questions
0
votes
2answers
389 views
Insert a span inside widget title to give a different color to the second word
I'm trying to make my widget titles two-colored; the first word white and the second one yellow. I have no idea how I can insert a span before the second word of every widget title so that I can put a ...
0
votes
1answer
2k views
Translate widget titles using qTranslate plugin
I'm actually using the qTranslate plugin to translate my website. It works really well with everything except one thing. the titles of my sidebar widgets.
Actually, to translate some words we need to ...
4
votes
2answers
480 views
Is there any way to dynamically alter widget titles?
I have a case where that are a lot of widgets in several custom sidebars. I am wondering if there is a simple way to alter the titles of each widget dynamically. Typically a widget has a title field ...
0
votes
1answer
83 views
Catagorized hierarchy menu for PAGES!
Yes, I am a noob at all this so please excuse my ignorance! So, for the past couple of days, I've been searching for a drop down page menu widget, but I would like to have the pages separated into ...
1
vote
1answer
312 views
How to get “Widget Logic” plugin's input value in a custom widget code (to display on the Widget admin page)
I've got the "Widget Logic" plugin installed. I have created my own widget called "Buzz". I have a sidebar with multiple instances of my custom widget "Buzz".
Now, on the Widgets admin page when a ...
0
votes
1answer
108 views
Truncate Widget Title
I'm using a function:
function widget_new_title($title) {
echo word_limiter($title,20);
}
add_filter('widget_title','widget_new_title');
to limit the characters for widget title but my problem ...