Carol
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Menu Widget] Latest WordPress version?Working well for me. I’ve just installed the plugin, I’m using the WordPress 4.0.1 version.
Forum: Plugins
In reply to: [WP Popular Posts] Show only thumbnails side by sideThank you very much for your help!
Problem solved πBest,
Carol
Forum: Plugins
In reply to: [WP Popular Posts] Show only thumbnails side by sideThank you for your reply.
Here is my website’s URL – http://artcrush.com.br/
Forum: Plugins
In reply to: [WP Popular Posts] Show only thumbnails side by sideHi Hector,
Thank you for your reply.
I could remove the title, but I couldn’t make the thumbnails to be side by side. I made the css adjustments suggested by you here – https://wordpress.org/support/topic/grid-thumbnails-1?replies=2
but it’s not working.Any other suggestion?
Thanks!
Forum: Plugins
In reply to: [Advanced Random Posts Widget] how remove the bullets before each thumbnail ?After to remove the bullets, I’m struggling to remove the space/margin on the left of my sidebar, where the bullets were. It would be nice to have some support from the plugin’s creator…
Forum: Plugins
In reply to: [Advanced Random Posts Widget] how remove the bullets before each thumbnail ?Hey guys,
I’ve tried to remove those bullets in many ways, the only thing that worked was:
1- Insert the following code to the functions.php file in your theme:
function prefix_remove_arpw_style() { wp_dequeue_style( 'arpw-style' ); } add_action( 'wp_enqueue_scripts', 'prefix_remove_arpw_style', 10 );2- Than insert the following code to the style.css file in your theme:
/* wrapper */ #arpw-random-posts {} /* ul */ .arpw-ul {list-style: none;} /* li */ .arpw-li {} /* title */ .arpw-title {display: none} /* thumbnail */ .arpw-thumbnail {} /* date */ .arpw-time {} /* excerpt */ .arpw-summary {}In my case, I removed the title and bullets, but you can customize it as much as you want.
Forum: Plugins
In reply to: [Advanced Random Posts Widget] how to remove the title…Same question here…
Yes, I would like to translate it to my language (Portuguese).
Also, one more question:
I’ve tried to activate the Fancybox effect, but it’s not working.Do I need to use a complementary plugin to make it work?
Thank you!
Forum: Plugins
In reply to: [Thumbs Rating] How to activate a translation file from the language pack?I did it and it worked.
Thank you very much for the excellent plugin and support!
Best!
Forum: Plugins
In reply to: [Thumbs Rating] How to activate a translation file from the language pack?Hi Ricard,
My WordPress is already in Portuguese, but the plugin’s buttons still showing in English. It was working in portuguese after the WP update, but after I made some changes into css file (I’ve changed the button colors) it came back to English. I don’t know what to do now…
Forum: Plugins
In reply to: [Thumbs Rating] How to activate a translation file from the language pack?Portuguese, but what happens is my wordpress install is in English. Thank you for help me with that, I’m gonna fix it!
Best,
Carol
Thank you for your answer @tizz! I was able to solve the problem including the following code to my theme footer.php before the </body> tag:
<script type=”text/javascript”>
jQuery(‘document’).ready(function($){
$(‘[title]’).removeAttr(‘title’);
});
</script>