Okay
  Public Ticket #155066
Multiple Instances of Blog Shortcode Possible?
Closed

Comments

  • Rachel started the conversation
    Hi all, I'm building a landing page which showcases some key categories from the blog and I'm trying to group them into different blog shortcodes but only the first blog shortcode appears on the page. I saw this related thread where you used some css to make it work but the solution is not posted: http://themenectar.ticksy.com/ticket/132506/search/ Can you post the css you used to make it work? Thanks!
  •  1,043
    ThemeNectar replied

    Hey Rachel,

    css could only remedy the issue if the masonry layout was not being used because that effect would need to be recoded to allow multiple instances on the same page. Perhaps you could achieve what you're looking for with the recent posts shortcode? 

    Cheers :)

     

  • Rachel replied

    That's a good idea. How can I hide the excerpt for the recent posts shortcode? I'm having trouble finding a class I can set to {display:none;} without affecting other parts of the site.

  •  1,043
    ThemeNectar replied

    Hey again Rachel! Use this: 

    .blog-recent .col p {
      display: none!important;
    }

    Cheers :)

  • Rachel replied

    Thanks!