Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Search Results for 'post grid'

Home / Forums / Search / Search Results for 'post grid'

Viewing 20 results - 1,281 through 1,300 (of 2,160 total)
  • Author
    Search Results
  • #142175

    Hi there, at I have several Virtue: Post Grid widgets located in the Home Widget Area, each showing a different catagory of post. I have noticed that the widget is showing empty white spaces between thumbnails. This comes and goes but these blank spaces are always grouped together and are not missing thumbnails but epmty spaces/spacing inserted between active links. Any ideas and help?

    Many thanks guys!

    #141775

    Hi famous,
    You can use this css to decrease the image size:

    .home .grid_item img {
        max-height: 250px;
    }

    You can set the Post Excerpt Length from Theme Options > Blog Options.
    Then this css will remove the subhead:

    .home .subhead {
        display: none;
    }

    Hope that helps!

    Hannah

    #141333

    Oh Kevin, really appreciate your help. You are lifesaver!!! ended up using these codes.

    .products div.product {
        background: white;
    }
    
    .single-product .product-summary-case{
    background:white;
    }
    
    #kad-blog-grid .blog_item {
        background: white;
    }
    
    .single-post div#ktmain {
        background: white;
    }
    

    Just one more curiosity. this code doesn’t change anything, what’s the code supposed to do?

    .kad-woo-image-size {
        background: white;
    }
    
    #141262

    Hey,

    It’s not really that clear in your original post what you’d like to change, but I’m guessing that you’re wanting a white background for those elements? if so, try adding this CSS to Theme Options> Advanced Settings:

    .kad-woo-image-size {
        background: white;
    }
    
    .products div.product {
        background: white;
    }
    
    .single-product .main {
        background: white;
    }
    
    #kad-blog-grid .blog_item {
        background: white;
    }
    
    .single-post div#ktmain {
        background: white;
    }

    Let me know if this is what you’re after.

    -Kevin

    In forum: Virtue Theme

    In reply to: can't see blog

    #141255

    Hey Lesly,

    To show your posts in the sidebar, you need to go to Appearance> Widgets, and assign some blog widgets to your side bar. You can use Recent Posts or Virtue Recent Posts widgets to show a small blog in your sidebar.

    As for the blog button, I’m not sure I’m following. have you assigned your Blog page the Blog or Blog Grid template under the Page Attributes area in the blog page’s edit screen?

    -Kevin

    #140956

    I have downloaded the demo site to check the settings for this page:
    but in the settings for the page it gives Portfolio Grid 3 columns? That is confusing me because 4 columns are displayed?
    Screenshot from Editor

    I note in the demo that the images are not all the same size but are displayed square in the grid.

    I am trying to achieve the same result on this portfolio page – how do I make the images square like the demo?

    Just like the demo, our images are all the same width but different heights.

    In forum: Virtue Theme

    In reply to: Staff Grid

    #140528

    In your Staff Grid edit page under Staff Page Options set Use Staff Excerpt or Content? to Excerpt. You can also set Crop images to equal height to Yes.

    I believe the developer is working on an update for the woocommerce error. Will keep you posted.

    Hannah

    #140424

    Items align by the highest on the page (because of layouts like masonry where your portfolio posts would look like pinterest) Then left to right.

    Your items are not all the same size. For example your 4th item: http://185.123.99.153/~nfmarque/wp-content/uploads/2016/10/New-Forest-Marque-logo-e1490612767161.png

    It’s not square and it’s smaller then the grid is set up for. 300×300 so the theme can’t crop it square to match because the theme can’t grow your small images.

    Thus your 4th item is smaller and not as tall as the first three. This means on your second row the first item is going to be on the far right. That will through off your order.

    Simply upload larger images (you should always do this regardless) and you won’t have any issue.

    Ben

    #140157

    Hey,

    Here’s an odd one. I couldn’t add Pinnacles shortcodes in pages or posts. I deactivated every plugin, and then activated one at a time. As soon as I deactivate Woocommerce, it works. Quite galling. I’ve checked and re-checked. It’s definitely Woocommerce, and I need it.

    The site is in development. It’s at Everything is up-to-date.

    Happy to provide a login for the Kadence team if useful! Any thoughts?

    Regards,

    Valerie

    #139762

    A portfolio grid will always link to a portfolio.

    If you want to use the WP Gallery Custom Link plugin you need to add a gallery. Not a grid of portfolio posts.

    In your home page content you can add this gallery and set the style to be mosaic.

    Ben

    In forum: Virtue Theme

    In reply to: Portfolio Pagination

    #138867

    Hey,

    Wordpress does not allow slug sharing.

    So because you have set the portfolio posts individual pages to use the slug “our-work” you can not then have a “paginated page” also use “our-work” since that would be sharing of a slug.

    A paginated page would be our-work/page/2/

    And wordpress can’t create that page because any url that starts with “our-work” as the slug must then be a portfolio post so it’s looking for a single post and can’t find one.

    So your options are to either change the slug for your portfolio grid page to be different from the slug you set for the single portfolio posts or change the post slug.

    Hope that helps and clarifies

    Ben

    #138782

    For the sake of completeness, and in case anyone else happens upon this thread…
    I found there are a number of plugins, but it was unclear whether they could integrate with the Virtue theme.
    Virtue already does a great job of producing a grid of staff posts and it seemed a shame to ignore all that and start again.
    The preferred approach would therefore focus on modifying the existing output.
    In 2013, Mary Lou produced a tutorial, which explains how to piece together the relevant CSS.
    Here’s what I finally went with:

    /* Put staff info over picture */
    .staff_item {position: relative;}
    .staff_item_info {
    	position: absolute;
    	top: 0;
    	left: 5;
    	padding: 20px;
        background: rgba(238, 238, 238, 0.8);
    	color: #666;
        width: 100%;
        height:100%;
        opacity:0;
        transition: transform 0.3s, opacity 0.3s;
        overflow: scroll;
    }
    .staff_item_info:hover {opacity: 1;}

    This solution means that future changes to the staff and content will continue to be handled by the theme, whilst the CSS lines above merely add the required effect.
    Good luck!

    #138680

    Hi team,
    I’ve recently upgraded to Virtue Premium and finding my way around the huge capabilities!
    Is it possible to modify the way the staff posts work on the Staff Page? My client wants each staff picture in the grid to show the staff biog as hover text. And still be responsive!

    If not possible as a CSS modification, can you recommend a plug-in that will sit happily with Virtue?

    Thanks,
    Phil.

    #138652

    Hello Kevin,

    Yes, I was overriding content-post-grid.php because I didn’t want to show the excerpt.
    I will check them!

    Thank you for taking your time to check my website.
    (and sorry for my mistake!)

    Yushin

    In forum: Virtue Theme

    In reply to: Virtue: Post Grid

    #138613

    Hi Kevin,

    It’s the “Post Grid” not blog posts. They are tied to posts, but they show the feature image and then link to the post. Bottom right-hand corner in the footer. The (should be 9 boxes), but 8 boxes with logos of CAT, Verizon, Choice Hotels, Barricade Fire Blocking Gel, etc. There should be 9 boxes.

    Thanks Hannah!

    In forum: Ascend Theme

    In reply to: Full-width portfolio

    #138598
    This reply has been marked as private.
    #138589

    Hi,

    I am using the Toolset plugin to create custom post types with my Virtue theme. My problem is that I cannot see featured image thumbnails in the excerpts for these custom posts. Images do appear for posts created with the native “posts” type. I’m assuming I just need to add some php but can someone tell me where?

    This appears to be a theme issue because I switched to 2016 and the CPT thumbnails are visible.

    Here is a link to the page:

    Thanks for the help!

    Dave

    In forum: Ascend Theme

    In reply to: Full-width portfolio

    #138562

    Sorry, it’s [portfolio_posts orderby=date style=”pgrid-no-margin” columns=4 items=8 ratio=”square” lightbox=true showtypes=true] (left out items=8 when I pasted it here)

    #138546

    You certainly can! Simply select the “Virtue Post Grid” widget, and place it wherever you’d like within your page builder rows.

    Does that work for you?

    -Kevin

    In forum: Ascend Theme

    In reply to: Full-width portfolio

    #138498

    Hi Hannah,

    Yep, I’m using the shortcode straight out of your shortcode page in the Ascend documentation:

    [portfolio_posts orderby=date style=”pgrid-no-margin” columns=4 ratio=”square” lightbox=true showtypes=true]

Viewing 20 results - 1,281 through 1,300 (of 2,160 total)