Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter codeoner

    (@codeoner)

    I found the option at the bottom of general settings! thanks for the plugin!

    Thread Starter codeoner

    (@codeoner)

    Hm.. it looks like it is working now! what a mess for a space in code ??

    Thank you very much Gabor!
    Your plugin is AMAZING!

    Thread Starter codeoner

    (@codeoner)

    Is 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 this

    div .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!

    Thread Starter codeoner

    (@codeoner)

    I 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 ??

Viewing 4 replies - 1 through 4 (of 4 total)