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: Pinnacle Theme
Topic: Blog Categories Grid Display
In forum: Reply To:Sorry for not clarifying more! If your front page is set to the latest post page (from settings > reading) then from Theme Options > Home Layout > Page Content Options you can enable “Use Post Grid Format”.
The theme page templates (such as the blog grid template) are not meant to work on the homepage. They are automatically overridden by the homepage template.Hannah
In forum: Reply To:Hi Justine,
To create a grid on your homepage you can either set your front page as the latest posts page from Settings > Reading (then make sure Page Content is enabled in the homepage layout manager from Theme Options > Home Layout). Or you can enable Latest Blog Posts from Theme Options > Home Layout. Or your third option is to use a shortcode. You can see a full list of shortcodes here: http://docs.kadencethemes.com/virtue-premium/shortcodes/You can use this css to remove the page headers:
.page-header { display: none; }Just paste that into your custom css box in Theme Options > Advanced Settings.
Hope that helps!
Hannah
In forum: Ascend ThemeTopic: Upper/lower case in sidebar
Hi,
You super team helped me set my article titles in all caps which works great on the single posts and grid,
but my problem they appear all lowercase in the latest post sidebar widget… is there a way I could customize these title to have uppercase when needed (begining of the title or proper names in titles)? or having them all caps if the previous is not possible.
Thanks a lot, again!In forum: Ascend ThemeIn forum: Ascend ThemeHi,
Is there a way I could configure the “custom exerpt” to be cut automatically after so much characters/signs so that the grid looks more like a grid than masonnery?
Or did I configure something wrong?Before, I used to use the “read more” tag and it was set to 40 words but depending on the words’ length it was already not straight,thouhgh.
Do you think it woudl be possible to have the custom exerpt, and to configure all exerpts to be the same height?
Thanks a lot!
Priscilia
In forum: Virtue ThemeIn reply to: Menue Line on TOP
Hello Kevin,
here is a link of an example page:
http://neu.dassonnenhaus.com/blog-grid-four-columns/This is how it looks like at the beginning (the navigation is ‘thick’ and the profile picture is big):
https://s7.postimg.org/rdg8y13yj/jenny1.pngand when I scroll down a bit, then tha navigation is smaller and the profile picture too, like on this image:
https://s7.postimg.org/n4biw1nwb/jenny2.pngI hope you understand now my problem. I would like that the navigation is at the beginning small like it is after scrolling. (I don’t want any resize-effects)
Kind regards
In forum: Ascend ThemeTopic: Custom exerpt
In forum: Ascend ThemeIn reply to: Portfolio Page Link Icon
December 4, 2017 at 2:49 pm #170710ok, you will need to wrap that function then so it properly unhooks the previous.
Just remove all of it and replace with:
add_action('init', 'custom_child_init'); function custom_child_init() { remove_action( 'kadence_single_portfolio_footer', 'ascend_portfolio_nav', 20 ); add_action( 'kadence_single_portfolio_footer', 'my_custom_ascend_portfolio_nav', 20 ); function my_custom_ascend_portfolio_nav() { global $post, $ascend; if(isset($ascend['portfolio_single_nav']) && $ascend['portfolio_single_nav'] == 1) { echo '<div class="post-footer-section">'; if(isset($ascend['portfolio_single_nav_cat']) && 1 == $ascend['portfolio_single_nav_cat']) { $prev_post = get_adjacent_post(true, null, true, 'portfolio-type'); $next_post = get_adjacent_post(true, null, false, 'portfolio-type'); } else { $prev_post = get_adjacent_post(false, null, true); $next_post = get_adjacent_post(false, null, false); } if ( empty( $next_post ) && empty( $prev_post ) ) { $containerclass = 'nav-no-next-previous'; } else { $containerclass = ''; } echo '<div class="kad-post-navigation portfolio-nav clearfix '.esc_attr($containerclass).'">'; if ( !empty( $prev_post ) ) : echo '<div class="alignleft kad-previous-link">'; echo '<a href="'.get_permalink( $prev_post->ID ).'"><span class="kt_postlink_meta kt_color_gray">'.__('Previous Album', 'ascend').'</span><span class="kt_postlink_title">'. $prev_post->post_title.'</span></a>'; echo '</div>'; endif; if(isset($ascend['portfolio_link_type']) && $ascend['portfolio_link_type'] == 'type') { $main_term = ''; if(class_exists('WPSEO_Primary_Term')) { $WPSEO_term = new WPSEO_Primary_Term('portfolio-type', $post->ID); $WPSEO_term = $WPSEO_term->get_primary_term(); $WPSEO_term = get_term($WPSEO_term); if (is_wp_error($WPSEO_term)) { if ( $terms = wp_get_post_terms( $post->ID, 'portfolio-type', array( 'orderby' => 'parent', 'order' => 'DESC' ) ) ) { $main_term = $terms[0]; } } else { $main_term = $WPSEO_term; } } elseif ( $terms = wp_get_post_terms( $post->ID, 'portfolio-type', array( 'orderby' => 'parent', 'order' => 'DESC' ) ) ) { $main_term = $terms[0]; } if ( $main_term ) { echo '<div class="kad-grid-link">'; echo '<span class="kt_postlink_meta kt_color_gray">Text Above Grid</span>'; echo '<a href="'.get_term_link( $main_term->slug, 'portfolio-type' ).'" class="kt_color_gray"><i class="kt-icon-th-large"></i></a>'; echo '</div>'; } } else if(isset($ascend['portfolio_link_type']) && $ascend['portfolio_link_type'] == 'page') { $parent_id = $ascend['portfolio_link']; if( !empty($parent_id)) { echo '<div class="kad-grid-link">'; echo '<a href="'.get_page_link($parent_id).'" class="kt_color_gray"><i class="kt-icon-th-large"></i></a>'; echo '</div>'; } } if ( !empty( $next_post ) ) : echo '<div class="alignright kad-next-link">'; echo '<a href="'.get_permalink( $next_post->ID ).'"><span class="kt_postlink_meta kt_color_gray">'.__('Next Album', 'ascend').'</span><span class="kt_postlink_title">'. $next_post->post_title.'</span></a>'; echo '</div>'; endif; echo '</div> <!-- end navigation -->'; echo '</div>'; } } }Ben
In forum: Ascend ThemeIn reply to: Portfolio Page Link Icon
December 4, 2017 at 12:12 pm #170679Ok so you would add this to a child theme functions.php file:
remove_action( 'kadence_single_portfolio_footer', 'ascend_portfolio_nav', 20 ); add_action( 'kadence_single_portfolio_footer', 'my_custom_ascend_portfolio_nav', 20 ); function my_custom_ascend_portfolio_nav() { global $post, $ascend; if(isset($ascend['portfolio_single_nav']) && $ascend['portfolio_single_nav'] == 1) { echo '<div class="post-footer-section">'; if(isset($ascend['portfolio_single_nav_cat']) && 1 == $ascend['portfolio_single_nav_cat']) { $prev_post = get_adjacent_post(true, null, true, 'portfolio-type'); $next_post = get_adjacent_post(true, null, false, 'portfolio-type'); } else { $prev_post = get_adjacent_post(false, null, true); $next_post = get_adjacent_post(false, null, false); } if ( empty( $next_post ) && empty( $prev_post ) ) { $containerclass = 'nav-no-next-previous'; } else { $containerclass = ''; } echo '<div class="kad-post-navigation portfolio-nav clearfix '.esc_attr($containerclass).'">'; if ( !empty( $prev_post ) ) : echo '<div class="alignleft kad-previous-link">'; echo '<a href="'.get_permalink( $prev_post->ID ).'"><span class="kt_postlink_meta kt_color_gray">'.__('Previous Album', 'ascend').'</span><span class="kt_postlink_title">'. $prev_post->post_title.'</span></a>'; echo '</div>'; endif; if(isset($ascend['portfolio_link_type']) && $ascend['portfolio_link_type'] == 'type') { $main_term = ''; if(class_exists('WPSEO_Primary_Term')) { $WPSEO_term = new WPSEO_Primary_Term('portfolio-type', $post->ID); $WPSEO_term = $WPSEO_term->get_primary_term(); $WPSEO_term = get_term($WPSEO_term); if (is_wp_error($WPSEO_term)) { if ( $terms = wp_get_post_terms( $post->ID, 'portfolio-type', array( 'orderby' => 'parent', 'order' => 'DESC' ) ) ) { $main_term = $terms[0]; } } else { $main_term = $WPSEO_term; } } elseif ( $terms = wp_get_post_terms( $post->ID, 'portfolio-type', array( 'orderby' => 'parent', 'order' => 'DESC' ) ) ) { $main_term = $terms[0]; } if ( $main_term ) { echo '<div class="kad-grid-link">'; echo '<span class="kt_postlink_meta kt_color_gray">Text Above Grid</span>'; echo '<a href="'.get_term_link( $main_term->slug, 'portfolio-type' ).'" class="kt_color_gray"><i class="kt-icon-th-large"></i></a>'; echo '</div>'; } } else if(isset($ascend['portfolio_link_type']) && $ascend['portfolio_link_type'] == 'page') { $parent_id = $ascend['portfolio_link']; if( !empty($parent_id)) { echo '<div class="kad-grid-link">'; echo '<a href="'.get_page_link($parent_id).'" class="kt_color_gray"><i class="kt-icon-th-large"></i></a>'; echo '</div>'; } } if ( !empty( $next_post ) ) : echo '<div class="alignright kad-next-link">'; echo '<a href="'.get_permalink( $next_post->ID ).'"><span class="kt_postlink_meta kt_color_gray">'.__('Next Album', 'ascend').'</span><span class="kt_postlink_title">'. $next_post->post_title.'</span></a>'; echo '</div>'; endif; echo '</div> <!-- end navigation -->'; echo '</div>'; } }In forum: Virtue ThemeIn reply to: Images do not load properly in Microsoft Edge
Ok, I deactivated th Page Builder and the other plugins, but the image problem was still there.
I don’t think it is a plugin problem.I have had the same loading problem in som of the blog posts. Never on the blog grid page, but in some of the posts. The featured images didn’t always load properly.
I tryed the link you send med but I’m sorry to say that I did’nt know how to manage the test…
Kati
In forum: Virtue ThemeIn reply to: Blog_Grid Orderby question
November 30, 2017 at 12:07 pm #170290It just seems to be an odd way for it to handle the sorting, especially since the postings were fairly close in height already
Just to reiterate it’s not anything to do with sorting but the display. And not everyone’s blog grids are close in height. So it’s certainly a style (like Pinterest) that people like if they are intentionally wanting the posts size different. We created the option of being able to set the equal height so both layouts can be supported.
Ben
In forum: Virtue ThemeIn reply to: Blog_Grid Orderby question
Kevin,
Here’s the shortcode that I’m using:
[blog_grid columns=”3″ items=”6″ orderby=”date”]
The link to the page is http://www.freshfoliodesign.com/.
Ben, changing the blog grid sorting to equal height seems to have solved the issue. It just seems to be an odd way for it to handle the sorting, especially since the postings were fairly close in height already. Interesting.
I think the issue is handled, but I included the info that Kevin requested just in case there’s more info that I should have.
Thanks,
DeanIn forum: Virtue ThemeIn reply to: Blog_Grid Orderby question
November 30, 2017 at 10:35 am #170269Why does it sort like this?
It’s not how it’s “sorted” but how it’s designed. The order is still “by date” but the grid is designed to flow like Pinterest where the highest item is first and it doesn’t follow forced rows. so that 4th item is highest on the page likely because that 3rd item is shortest in your first row.
is there a way to change the way the date sort order displays?
You can turn on “Display Blog Grid posts at equal height” in your theme options > blog options. Which will force your posts into equal rows.
Ben
In forum: Virtue ThemeTopic: Blog_Grid Orderby question
I’m seeing something odd in the sorting of blog postings on my homepage (www.freshfoliodesign.com).
I’m using the Blog_Grid shortcode to display recent posts and it’s set to Orderby date.
The odd thing is how it orders them.
Instead of displaying them like this (from most recent to oldest):
1 2 3
4 5 6It displays them in a clockwise order:
1 2 3
6 5 4So, I have two questions. Why does it sort like this? It seems like a non-intuitive way to sort items. And secondly, is there a way to change the way the date sort order displays?
Thanks,
DeanIn forum: Pinnacle ThemeIn reply to: hero image size and position
November 27, 2017 at 5:06 pm #169810Hey,
I mentioned using “add media” button in the visual editor widget. That would be how you add a self-hosted video, is that not an option?A slider will always show the video as a background, after all it’s not a video player it’s a slider plugin with an option for a video background so making it resize based on a video size isn’t really whats it’s designed for. But if you add a background image that is the exact same ratio as your video then you can set the slider to respect ratio and that could get you the look you want. Just make sure your grid sizes match and your not setting is as fullwidth.
1. post a link to where you are adding this and I can offer solutions. On the page link above I’m not seeing a black border around a video. Can you make sure to specify which browser your using.
2. What does “SiteOrigin widget” mean to you? I’m not aware of a widget called “SiteOrigin widget”.
Also, just a note that mobile device browsers don’t support autoplay of videos because of data usage.
In forum: Pinnacle ThemeIn reply to: Query about a page
November 27, 2017 at 4:53 pm #169806Those aren’t added through page builder. You have set the page to the “portfolio grid” template so it’s pulling in those portfolio posts.
If you want to remove just change your template to something other then portfolio grid.
Ben
In forum: Ascend ThemeIn reply to: Optimal Image Sizes for Blogs
November 27, 2017 at 1:49 pm #169747The similar posts or photo grid of blog posts will output images in a landscape format, 2:3 ratio.
You can edit this with a function through a child theme.
Ben
In forum: Virtue ThemeHey Hannah!
Sorry, but that does only display the events in a list with a picture. I would like them to have the same layout as the “latest blogposts”. That is a square grid with at least 2×2 (or even better 2×3) squares where there is a thumbnail, and the first part of the event description. You can look at the difference on our website: http://test-www.renaremark.se . The list of events i grey a bit down on the website, and further down is “latest from the blog” which is how I would like the event list to look like.
Thanks a lot for your help, I’s super grateful for any advice I can get! 🙂/Peter
In forum: Ascend ThemeHi Hannah
I’m not sure it’s really relevant what size images I am using because the theme will always try to crop to 1440×400 (providing the original image size is larger than this), as you can see from the placeholder images that are shown if a featured image is missing. For all other pages where I am using a side bar and have set the format of the posts to be grid plus first as standard with landscape image, the featured image in landscape for the first post summary has always been cropped to 1040×400.
I am pretty sure this issue is just an oversight as, when I have tested the same blog post format on pages without the side bar, the featured image for the first post summary has been cropped to 1440×400, which would be correct for a page without side bar.
Thanks.
-
AuthorSearch Results


