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 - 281 through 300 (of 2,160 total)
  • Author
    Search Results
  • In forum: Ascend Theme
    #272944
    This reply has been marked as private.
    #272852

    Hi Ruth,
    One option would be to set your homepage as a static page and display yours posts via the Post Grid/Carousel block (if using the block editor) or via shortcode. Or if you’d like you can use css to make some adjustments. Let me know if I can help with that!

    Kindly,
    Hannah

    #272212

    Hi Grace,
    In Theme Options > Blog Options > Blog Category/Archive Defaults try setting Category Display Type to Post Grid.
    Hope that helps!

    Best,
    Hannah

    #272162

    Hi!
    Is it possible to have a category page display posts in a grid instead of a list?
    So, to have this
    display as this
    Thank you!

    #272135

    Related to this. It would be great to add an image class to the post grid block so we can exclude the images of a block from lazy loading. say on a homepage.

    #272110

    Hello!

    The page I am working on is

    I am using the Post List block in grid format. Is there any way to display posts that must match 2 specific categories? For example, if I wanted to display only posts about Cars that are Electric.

    Hope that makes sense.

    Thank you!
    Grace

    #272076

    Hi Jason,
    I’m not able to replicate this on my site. Are you using the Post Grid/Carousel block? Are you using the latest versions of Kadence Theme and Kadence Blocks?

    Kindly,
    Hannah

    #272072

    Hey Kavin!

    Did you receive answer from developer team?

    I have same issue:
    https://i.vgy.me/IN1dsL.png

    a:hover in not work for .kt-blocks-post-grid-item .entry-title a

    Best, Alex

    In forum: Kadence Theme
    #271974

    Hi Gerhard,
    Apologies for the delay. If you’re not wanting the post loop then I would actually recommend building your posts page as a static page and using the post grid/carousel block to display your posts. Would this work for you?

    Kindly,
    Hannah

    In forum: Kadence Theme

    In reply to: Archive pagination

    #271876

    Unfortunately there isn’t a built-in way to do this using the theme archive. Sorry! You could create a css hack when adding posts via the post grid/carousel block, but it’s not really advised. Adding a custom function into a child theme I believe would be the best way to create this.

    Kindly,
    Hannah

    In forum: Kadence Theme

    In reply to: Post Grid

    #271052

    Hi Joanne,

    Thanks for reaching out.

    Your blog page is using the Kadence Post Grid block, and the Post Grid block will not work on archive pages.

    If you want to change the default layout of archive pages, you can use Kadence Hook Elements for this.

    Here’s a video for you reference: https://www.youtube.com/watch?v=JbgkT2qXdDU

    Hope this helps.

    In forum: Kadence Theme

    Topic: Post Grid

    #271021

    Hi there
    I am looking for some help with post layout. I have designed the post grid with a layout design for my blog posts. I wanted the design to be carried over when I do a search on different categories form there, but it defaults to the original layout. Is there a way of carrying out this layout to any post displays?
    The blog page is

    Thanks for your help

    Joanne

    In forum: Kadence Blocks
    #270645

    Hello Cory,

    Thanks for reaching out.

    You can find the action hooks on the post grid block by going to the file kadence-blocks-pro/dist/dynamicblocks/post-grid-carousel.php.

    Then look for the function kadence_blocks_pro_render_post_block_loop, you can see the hooks that you can use there: https://share.getcloudapp.com/v1uLXory

    Hope this helps.

    #270585

    Is there anyway to inject an ACF field into the Post Grid Carousel so that I could pull in some extra data from an acf field in a post to display on the Grid?

    I want to be able to put in a field where I would type in the default wordpress audio shortcode with a link to an audio file that I could display in the grid.

    I tried searching kadence block hooks, but couldn’t find what I was looking for.

    Thanks!

    #270548

    Hello,

    Try this:

    add_filter('kadence_blocks_pro_posts_grid_query_args', function( $args ){
    $args['orderby'] = 'meta_value_num';
    $args['meta_key'] = 'post_views_count';
    $args['order']   = 'DESC';
    return $args;
    });

    See if that works.

    #270313

    I’ve reopened this thread to revisit a related question.

    Previously I asked about customizing the query. This time I’d like to ask about customizing the displayed sort order.

    I have plugin Post Views Counter installed and would like to present the post grid in descending order of views. Clearly, the Kadence block doesn’t support this out of the box.

    Can you please suggest a code snippet that would allow me to intervene and force sorting by a meta key value?

    In forum: Virtue Theme

    In reply to: Grid on Home Page

    #270288

    Hi,

    Thanks for reaching out.

    Try adding this custom CSS:

    #homelatestposts .subhead {
    	display: none;
    }
    
    #homelatestposts h4 {
    	margin: 0;
    	color: #fff;
    	opacity: 0;
    	transition: .5s all ease;
    }
    
    #homelatestposts #kad-blog-grid .blog_item .postcontent {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        text-align: center;
    }
    
    #homelatestposts #kad-blog-grid .blog_item {
    	position: relative;
    }
    
    #homelatestposts #kad-blog-grid .imghoverclass {
    	background: #000;
    }
    
    #homelatestposts #kad-blog-grid .imghoverclass img {
    	transition: .5s all ease;
    }
    
    #homelatestposts #kad-blog-grid .blog_item:hover .imghoverclass img {
    	opacity: 0.4;
    }
    
    #homelatestposts #kad-blog-grid .blog_item:hover h4 {
    	opacity: 1;
    }

    See if that works for you.

    Regards,
    Bonn

    #270283

    Hello Anna,

    I see that you also added a Post Grid/Carousel block on your homepage called “Recent”.

    Maybe you turned on the option “Show Unique”? https://share.getcloudapp.com/NQuxp128

    Try turning that off and see if that fixes the issue.

    Regards,
    Bonn

    In forum: Kadence Blocks
    #270281

    Hello Arne,

    Thank you for reaching out to us.

    Currently, excerpts will be limited, and there is no built-in option to show the full content. You can add a vote on the following feature requests:

    On the other hand, you can also make use of the Manual excerpts. This way, all of the content that you’ll add there will be shown in the post grid/carousel block. Lastly, you as a code reference, you can use this code:

    function kt_blocks_pro_show_full_content( $attributes ){
    	echo get_the_content();
    }
    
    add_action('kadence_blocks_post_loop_start', 'kt_blocks_pro_full_content');
    
    function kt_blocks_pro_full_content($attributes){
    	if ( isset($attributes['className']) && strpos($attributes['className'], 'has-fullContent') !== false ) {
    		remove_action( 'kadence_blocks_post_loop_content', 'kt_blocks_pro_get_post_excerpt', 20 );
    		add_action( 'kadence_blocks_post_loop_content', 'kt_blocks_pro_show_full_content', 21, 1 );
    	}	
    }

    Make sure you add the class name, “has-fullContent” to the block. You can add that under the Advanced tab – https://share.getcloudapp.com/KouYElLe.

    Hope this helps and let us know if we can assist you further.

    Kind Regards,
    Karla

    • This reply was modified 4 years, 3 months ago by Karla.
    #270280

    Hello,

    Thank you for reaching out to us.

    There is no built-in option to reverse the order for the image and content. What you can do is add custom CSS code:

    .kt-blocks-post-grid-item .kt-feat-image-align-left {
        grid-template-columns: auto 40%!important;
    }
    .kt-blocks-post-grid-item .kt-feat-image-align-left .kadence-post-image {
        order: 2;
    }

    Hope this helps and let us know if we can assist you further.

    Best Regards,
    Karla

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