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 - 321 through 340 (of 2,160 total)
  • Author
    Search Results
  • In forum: Kadence Theme

    In reply to: Shortcode in sidebar

    #269393

    Hi Pamela,
    Rather than using shortcodes you can use blocks. So you can use the posts block or the post grid/carousel block. Would this work for you?

    Kindly,
    Hannah

    #269261

    Is there a way to remove the Meta information (ie By Author Posted in Uncategorized) from the Post Grid/Carousel block? I am just wanting the Post Title and the excerpt information to show below the featured image.

    Thanks

    #269213

    Can someone point me to how to set the margins/padding on a Post Grid Carousel Block?>

    I’ve added but it is extending to the full width of the page and I can’t change.

    Thanks

    #269188

    Hi,
    Thanks for reaching out! Apologies for the delay. If you’re wanting to add additional content to your archive page then I suggest leaving your posts page unassigned and display your posts on the page using the Post Grid/Carousel block. Would this work for you?

    Kindly,
    Hannah

    #269172

    Hey Mitchell,

    The best way to achieve this will be to use the Post Grid/Carousel Block. This will allow you the greatest customization of your blog page and you can set the pagination to any amount of posts you like.

    This will require that you leave your post page blank in Settings> Reading, and instead add the posts to your page content via the Post Grid/Carousel block.

    Does that option work for you? Let us know if you have any additional questions!

    Best,
    Kevin

    #269037

    Hi there,

    Your Post/Grid Carousel Block can filter by category and tag.

    Now I just started experimenting with the Product Carousel. We have a lot of products and make extensive use of tags.
    It seems that the Product Carousel cannot filter by tag, right ?
    Is this something you are planning ? Is this a feature request ?

    Also, in our case ‘Order By’ is missing ‘Random’ too.

    Do you see an easy solution for now ? If too complex, never mind 😉

    Thank you.

    #268846

    Hi Lani,

    There may be something incorrectly overriding the hover color. I’ve sent this along to the developer for further investigationn.

    In the meantime, you can use CSS to change the colors of your titles on hover. Change the color to whatever you like, and add this CSS to Customize> Additional CSS:

    .kt-blocks-post-grid-item .entry-title a:hover {
        color: red;
    }

    Does that work for you?

    Best,
    Kevin

    • This reply was modified 4 years, 6 months ago by Kevin.
    #268821

    How do I change the hover color of the post title in the Post Grid/Carousel block?

    #268625

    Hello Karla,

    Thank you so much! That works amazing for grids that display titles but I get nothing for grids that don’t display titles. I have a lot of posts that are just numbers because the customer didn’t want to be bothered with creating titles for them so I can’t display the titles but I want the customers to know that they can see more info if they click on the box.

    Thank you again for your help! I really appreciate it.

    #268616

    Hello,

    Is there a way to make the whole content post box linkable using the Post Grid block? I know this is achievable using the “Info Box” block, but I don’t think you can select posts with that block.

    For instance, I would like to click anywhere inside the post grid box and it would link me to the blog post. Currently, I would need to click on the Blog title/image or the “Read more” button to take me to my blog post, but can’t click anywhere on the blank spaces.

    Please see image below for example:

    Thank you,
    Jason

    • This topic was modified 4 years, 6 months ago by Jason.
    • This topic was modified 4 years, 6 months ago by Jason.
    #268501

    Hello,

    Thank you for reaching out to us.

    Yes, the pagination buttons of the Post Grid/Carousel block will have their default styling. On the other hand, the colors used will come from the global palette of your website so it should fit your color scheme – https://share.getcloudapp.com/o0u7kBJW.

    Currently, you’ll need to use custom CSS code if you want to override those styles. Lastly, you can submit a feature request regarding this here – https://www.kadencewp.com/kadence-blocks/feature-requests/. However, we cannot give an ETA of when that’ll be added.

    Kind Regards,
    Karla

    #268495

    Hey,
    The category description is not set up to display shortcodes. You would need to create a custom category page. You can do this by creating a new page then using the Post Grid/Carousel block to add posts from that specific category.
    There has been a feature request made for this. You can vote for it here: https://www.kadencewp.com/kadence-theme/feature-requests/customize-category-page/

    Kindly,
    Hannah

    #268481

    While playing around with the Post Grid Block I noticed that the pagination style is black and I cannot find any options to change it.
    It does not fit in my site color scheme.
    There seems no way to style the colors, borders, paddings, etc…
    Am I correct ? I hope not because it would force us to use custom CSS.

    #268478

    add_action( 'woocommerce_after_shop_loop_item', 'show_products_excerpts', 5 );
    function show_products_excerpts() {
    global $product;

    echo "<span class='class-name-here'>" . $product->post->post_excerpt . "</span>";
    }

    I’ve used the above snippet to show the “product short description” data in product grids and it works great on Woocommerce Shop page. Here is the result, you can see “product short description” information on each grid:

    But when I use Kadence Blocks (“Products by Category” block) to make a custom shop page, I can’t see this product short description data on each grid. Should I use another snippet for this? Here is the example page, as you can see there is no product short description on each product cart:

    Can you please help?

    #268456
    
    add_action( 'woocommerce_after_shop_loop_item', 'show_products_excerpts', 5 );
    function show_products_excerpts() {
    	global $product;
    
    	echo "<span class='class-name-here'>" . $product->post->post_excerpt . "</span>";
    }
    

    I’ve used the above snippet to show the “product short description” data in product grids and it works great on Woocommerce Shop page. Here is the result, you can see “product short description” information on each grid: http://www.nesrinabla.xyz/shop/

    But when I use Kadence Blocks (“Products by Category” block) to make a custom shop page, I can’t see this product short description data on each grid. Should I use another snippet for this? Here is the example page, as you can see there is no product short description on each product cart: http://www.nesrinabla.xyz/shop-2/

    Can you please help?

    #268390

    Hello,

    I would just like to know how I can make the posts in the archive closer together, is that possible?

    There is no built-in option to adjust the row and column gaps of the posts but you can add this custom CSS code to adjust them:

    .archive .grid-cols,
    .blog .grid-cols {
        -webkit-column-gap: 1.5rem;
        -moz-column-gap: 1.5rem;
        column-gap: 1.5rem;
        row-gap: 1.5rem;
    }

    Kindly adjust the values according to your preference.

    Best Regards,
    Karla

    In forum: Kadence Theme
    #268389

    Hello,

    It’s not a bug that custom excerpts are not cut off, it’s intentional. This is how WordPress works, it is mentioned in this article that it is ideal for one to two sentences only. If you define a custom excerpt then it’s expected that whatever you defined there should be all shown.

    Currently, there are no plans to break and change this default WordPress behavior as most users that define custom experts expect it. However, you can add this code snippet to affect the number of words shown in the “Posts” block(not Post Grid) and other archive pages even if the posts have custom excerpts:

    function custom_override_excerpt($excerpt) {
       return wp_trim_words($excerpt, 3);
    }
    add_filter( 'the_excerpt', 'custom_override_excerpt' );

    Lastly, I’ll pass this as a feature request but please note that we cannot give an ETA of when this will be added as the development team considers certain factors before implementing new ones.

    Kind Regards,
    Karla

    #268253

    Hi,
    Unfortunately there isn’t a built-in way to do this. You would need to custom create your product archive page. So you would create a new page then use the Post Grid/Carousel block to add your posts to the page and limit to a specific category. Then manually add the category description under that.
    Hope that’s helpful!

    Best,
    Hannah

    #268186

    Hello,

    I was wondering if its possible to place the categroy descritpion under the post grid. For every category i want to write unique texts and place them under the post grid. I write the content in the description box in the category editor.

    #268179

    Is there a bug here?
    It seems that the excerpt word count only applies to auto-generated excerpts and not excerpts which have been explicitly entered.
    This applies to the Customise/Archive Layout/Post Item layout/Excerpt Word Count in the Kadence theme and also to the post grid Kadence block (custom excerpt length option) and also .

    I think the word count setting should apply to all excerpts, whether auto-generated or explicitly defined.

Viewing 20 results - 321 through 340 (of 2,160 total)