• Resolved lucascibilia

    (@lucascibilia)


    Hi,
    I have a 2 small problems:
    1. I need to remove the “view all” link when I use the shortcode [adverts_categories show=”all”]. How can i do it?
    2. Always when I use the shortcode [adverts_categories show=”all”] categories appear in a bulleted list. Here the result http://iocaccio.it/annunci. How can I remove the points?

    Thanks for the answers

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    you can do both by adding following CSS code to your theme CSS file

    
    .entry ul.adverts-flexbox-list li:last-child {
        display: none;
    }
    .entry ul.adverts-flexbox-list li {
        list-style-type: none;
    }
    
    Thread Starter lucascibilia

    (@lucascibilia)

    Thanks Greg for response, but it doesn’t seem to work…

    Thread Starter lucascibilia

    (@lucascibilia)

    Ok, I solved in this way:

    .adverts-flexbox-list > li {
        list-style-type: none !important;
    }
    
    .adverts-flexbox-list li:last-child {
        display: none;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How remove “view all” when use [adverts_categories show=”all”]’ is closed to new replies.