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'
-
AuthorSearch Results
-
In forum: Ascend Theme
In reply to: Loop Portfolio Navigation
In forum: Virtue ThemeHi 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,
HannahIn forum: Virtue ThemeIn reply to: Use Blog Grid for Category Page
In forum: Virtue ThemeHi!
Is it possible to have a category page display posts in a grid instead of a list?
So, to have this *Login to see link
display as this *Login to see link
Thank you!In forum: Membership ForumsIn reply to: Kadence Gallery – Lazy Loading
April 19, 2022 at 11:52 am #272135Related 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.
In forum: Virtue ThemeHello!
The page I am working on is *Login to see link
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!
GraceIn forum: Kadence BlocksIn reply to: Product Carousel has stopped working
In forum: Kadence BlocksIn reply to: Post Grid/Carousel Title Hover
Hey Kavin!
Did you receive answer from developer team?
I have same issue:
https://i.vgy.me/IN1dsL.pnga:hover in not work for .kt-blocks-post-grid-item .entry-title a
Best, Alex
In forum: Kadence ThemeIn reply to: Removing the Archive Loop
In forum: Kadence ThemeIn reply to: Archive pagination
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,
HannahIn forum: Kadence ThemeIn reply to: Post Grid
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 ThemeTopic: Post Grid
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 *Login to see linkThanks for your help
Joanne
In forum: Kadence BlocksIn reply to: Post Grid Carousel Hook?
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.
In forum: Kadence BlocksTopic: Post Grid Carousel Hook?
February 19, 2022 at 11:22 am #270585Is 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!
In forum: Kadence BlocksIn forum: Kadence BlocksI’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 ThemeIn reply to: Grid on Home Page
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,
BonnIn forum: Kadence BlocksHello 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,
BonnIn forum: Kadence BlocksIn reply to: Full content for excerpt
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:
- https://www.kadencewp.com/kadence-blocks/feature-requests/post-grid-ability-to-switch-between-excerpt-and-content/
- https://www.kadencewp.com/kadence-blocks/feature-requests/post-block-display-entire-post/
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.
In forum: Kadence BlocksIn reply to: Question about post grid carousel block
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 -
AuthorSearch Results


