Hey there Stefano!
How are you doing today?
This should be possible with some custom CSS. Try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin:
http://wordpress.org/plugins/simple-custom-css
.entry-meta-wrapper {
display: none;
}
This should remove the line from your posts 🙂
Best regards,
Bojan
Hi Bojan,
I am fine, thanks! What about you? 🙂 And it worked, thank you very much!
I have another little question (pleaaase), maybe I should create another topic but I don’t want to “saturate” the forum with this.
I added a translation plugin (Transposh Translation Filter). It works fine but I’d like to show the “changing language” box permanently. Now you have to click on the “+” symbol at the bottom of the page to see it (http://www.stefanopagnoncelli.com/).
Do you know how to do that?
Thank you very much in advance 🙂
Stefano
Hey again Stefano,
I’m great, thanks!
I’m not sure if this is the best solutions since the visibility of that part is being controlled by a script. But you can use this custom CSS to make it visible at all times and remove the + button:
.widget-area {
display: block !important;
}
a.sidebar-link {
display: none;
}
Hope this helps 🙂
Cheers,
Bojan
it surely helped!
That’s magic 😉 thank you very much.
Cheers,
Stefano