codeoner
Forum Replies Created
-
Forum: Plugins
In reply to: [CatalogX - Catalog Mode, Enquiry & Quotes for WooCommerce] Change e-mailI found the option at the bottom of general settings! thanks for the plugin!
Forum: Plugins
In reply to: [Smart Slider 3] Thumbnail opacityHm.. it looks like it is working now! what a mess for a space in code 😀
Thank you very much Gabor!
Your plugin is AMAZING!Forum: Plugins
In reply to: [Smart Slider 3] Thumbnail opacityIs there a way to do set is as a default with css, for all sliders? (I plan to have multiple)
The only thing I managed to do is to make everything with opacity 1 and make the selected and the hover one with 0.8 (the opposite of what I want to do)The thing is that if i set the opacity with
div .nextend-thumbnail-horizontal .nextend-thumbnail-scroller .nextend-thumbnail-scroller-group > div { opacity:0.8!important; }then on hover it applies the filter on top of the 0.8 opacity.
for hover I used thisdiv .nextend-thumbnail-horizontal .nextend-thumbnail-scroller .nextend-thumbnail-scroller-group > div :hover{ opacity:1!important; }which when is left at 1 it keeps the opacity at 0.8 as was set before.
Thanks for the reply!
Forum: Plugins
In reply to: [Stylish Popular Posts] Display new posts of categoryI resolved it, just change in stylishpopularposts.php
this line
$top_popular_posts = new WP_Query(‘showposts=’ . $number . ‘&orderby=comment_count&order=DESC’);to this
$top_popular_posts = new WP_Query(array( ‘category_name’ => ‘**your_category_name**’, ‘posts_per_page’ => 10 ));
where **your_category_name** you put the name of your category and posts_per_page how many posts you want to display 🙂