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: Virtue ThemeJuly 14, 2014 at 10:42 am #12865
Hey,
1. It’s not a built in option to have more then 18 but you can edit the template file. I don’t really recommend it, If you want to show that many items then you might be better off using the portfolio grid instead of the carousel so they are visible.You can’t have 2 rows of the home portfolio carousel. You would have to use pagebuilder and the carousel widget instead.
The video here explains a bit: https://www.kadencewp.com/creating-a-home-page-with-virtue/2. In the portfolio page you can set the order to “menu order” then you can set each portfolio post with a “page attribute” : order number. The lowest number appears first and you can use negative numbers to -5 would appear before 0
Ben
In forum: Virtue ThemeIn reply to: Slider on Portfolio page
July 8, 2014 at 11:18 am #12456So why not use the portfolio posts to show your images? then create a portfolio grid page?
Else you can use the virtue: gallery widget and make the images a slider. or use the shortcode for a gallery and make the type a slider.
http://themes.kadencethemes.com/virtue-premium/wordpress-gallery/Ben
In forum: Virtue ThemeI have a page created using the “Blog” template (Title: Mark’s Articles). There is a series of options provided in the meta box called “Blog List Options.” The first option in the series is “Blog Category.” When I select a single category (for example “Articles”) and update / refresh all pages as necessary I still get ALL post categories appearing on the page.
Also – I have another page created using the “Blog Grid” template (Title: Latest News). Using the same options in the meta box “Blog List Options) – if I select a single category, update / refresh as necessary – I get the expected results (ie one category represented).
What I need to do is isolate the category “Articles” from the other posts so that those posts only show up on the page “Mark’s Articles.”
I am able to hack the page template loop a bit if necessary – but before I do would like a bit of advice on the problem.
Bill
In forum: Virtue ThemeIn reply to: picture on blog grid posts
Hi,
I have the same issue. The blog grid page doesn’t display the post images, only header and text.
In the post, I’ve added an image to the “featured image” and the “post slider image”.
The images are shown on the start page and in the Virtue: Recent Posts widget.
My theme version is v2.4.6In forum: Virtue ThemeIn reply to: what tools to use
June 25, 2014 at 12:39 pm #11551The page is built with blog posts using the blog grid page template: http://themes.kadencethemes.com/virtue-premium/blog-grid-two-column/
In the sidebar I have the virtue: recent posts widget twice and a category widget.
Ben
In forum: Virtue ThemeIn reply to: Portfolio pages multiple
June 24, 2014 at 1:26 pm #11454Hey so this has to do with permalinks. If your page permalink is “http://yoursite.com/portfolio/ then it can’t do page 2 and page 3 because it gets confused with the single portfolio post which use “portfolio” as the base by default. So if you switch the permalink for your grid page to say “projects” or “portfolio-grid” then it would work. Of if you use default permalinks in the permalink settings it would work. Or you can switch the base for the single portfolio posts in the theme options > portfolio settings to something different from “portfolio” and that would work.
Ben
In forum: Virtue ThemeIn reply to: Portfolio Grid Alignment & home page
Hi Ben – Feeling a little exasperated I’m still having problems. It was working all fine after you found the problem above. I’ve checked and double checked all my images which are being used as part of portfolio posts (they are all 1024 x 1024) but the layouts are not working.
As you’ve suggested on another post I’m using [portfolio_posts] within pagebuilder on the HOME page and just Portfolio Grid here http://picturethispicturethat.co.uk/commissions but I just can’t get them to align ??
I’m sure it’s me but I can’t look any more for what it is. Please can you have a look.
Appreciate your time.
Jas
In forum: Virtue ThemeIn reply to: grid posts
June 23, 2014 at 10:49 am #11345Hey syrine,
The home page tutorial is a good place to start.
The closest thing available in this theme is the blog grid layout, which you can see an example here: http://themes.kadencethemes.com/virtue-premium/blog-grid-four-column/You can hide the excerpt text with this css by adding to your theme options > advanced settings:
.kad_blog_item .entry-content { display:none; }To make this happen on the home page:
1. Make sure in the wordpress settings > reading. That your font page is the latest post page.
2. In the theme options > home layout make sure “page content” is added to the enabled list.
3. At the bottom of the theme options > home layout. Make sure “Use Post Grid Format” is turned on.Hope that helps,
Ben
In forum: Virtue ThemeTopic: grid posts
Hi,
i’d like to know how http://www.pikstr.com used grid posts on his main page using your themes? what are the steps please?
In forum: Virtue ThemeIn reply to: 2 separate portfolios?
June 20, 2014 at 10:48 am #11198The theme only filters portfolio items so if you want to have a filter on the photo gallery page it would have to be a portfolio grid page where you added portfolio posts for each photo. This seems like a lot of work to allow filtering? If you have a lot of photos you could create portfolio posts that are galleries then when someone clicked on the photography and then selected nature it would show the nature gallery and no further filtration would be needed?
Ben
In forum: Virtue ThemeIn reply to: Specific sidebar for each category
June 16, 2014 at 10:28 pm #10897ok but thats a product category page not a blog category page so it’s different.
<?php if(is_front_page()) { global $virtue_premium; $sidebar = $virtue_premium['home_sidebar']; if (!empty($sidebar)) { dynamic_sidebar($sidebar); } else { dynamic_sidebar('sidebar-primary'); } } elseif( class_exists('woocommerce') and (is_shop())) { global $virtue_premium; $sidebar = $virtue_premium['shop_sidebar']; if (!empty($sidebar)) { dynamic_sidebar($sidebar); } else { dynamic_sidebar('sidebar-primary'); } } elseif( class_exists('woocommerce') and (is_product_category() || is_product_tag())) { global $virtue_premium; $sidebar = $virtue_premium['shop_cat_sidebar']; if (is_product_category('musique')) { dynamic_sidebar('test'); } else if (!empty($sidebar)) { dynamic_sidebar($sidebar); } else { dynamic_sidebar('sidebar-primary'); } } elseif (class_exists('woocommerce') and is_product()) { global $post; $sidebar = get_post_meta( $post->ID, '_kad_sidebar_choice', true ); if (empty($sidebar) || $sidebar == 'default') { global $virtue_premium; $psidebar = $virtue_premium['product_sidebar_default_sidebar']; if(!empty($psidebar)) { dynamic_sidebar($psidebar); } else { dynamic_sidebar('sidebar-primary'); } } else if(!empty($sidebar)) { dynamic_sidebar($sidebar); } else { dynamic_sidebar('sidebar-primary'); } } elseif( is_page_template('page-blog.php') || is_page_template('page-blog-grid.php') || is_page_template('page-sidebar.php') || is_page_template('page-feature-sidebar.php') || is_single() ) { global $post; $sidebar = get_post_meta( $post->ID, '_kad_sidebar_choice', true ); if (!empty($sidebar)) { dynamic_sidebar($sidebar); } else { dynamic_sidebar('sidebar-primary'); } } elseif (is_archive()) { global $virtue_premium; if(isset($virtue_premium['blog_cat_sidebar'])) { dynamic_sidebar($virtue_premium['blog_cat_sidebar']); } else { dynamic_sidebar('sidebar-primary'); } } elseif(is_category()) { global $virtue_premium; if(isset($virtue_premium['blog_cat_sidebar'])) { dynamic_sidebar($virtue_premium['blog_cat_sidebar']); } else { dynamic_sidebar('sidebar-primary'); } } elseif (is_tag()) { dynamic_sidebar('sidebar-primary'); } elseif (is_post_type_archive()) { dynamic_sidebar('sidebar-primary'); } elseif (is_day()) { dynamic_sidebar('sidebar-primary'); } elseif (is_month()) { dynamic_sidebar('sidebar-primary'); } elseif (is_year()) { dynamic_sidebar('sidebar-primary'); } elseif (is_author()) { dynamic_sidebar('sidebar-primary'); } elseif (is_search()) { global $virtue_premium; if(isset($virtue_premium['search_sidebar'])) { dynamic_sidebar($virtue_premium['search_sidebar']); } else { dynamic_sidebar('sidebar-primary'); } } else { dynamic_sidebar('sidebar-primary'); } ?>Ben
In forum: Virtue ThemeIn reply to: Specific sidebar for each category
Yes it is a category page : http://teeshirtdivision.com/categorie-produit/musique/
I try to show the sidebar “test” that I made in the back office.
I have added this code :<?php if(is_front_page()) { global $virtue_premium; $sidebar = $virtue_premium['home_sidebar']; if (!empty($sidebar)) { dynamic_sidebar($sidebar); } else { dynamic_sidebar('sidebar-primary'); } } elseif( class_exists('woocommerce') and (is_shop())) { global $virtue_premium; $sidebar = $virtue_premium['shop_sidebar']; if (!empty($sidebar)) { dynamic_sidebar($sidebar); } else { dynamic_sidebar('sidebar-primary'); } } elseif( class_exists('woocommerce') and (is_product_category() || is_product_tag())) { global $virtue_premium; $sidebar = $virtue_premium['shop_cat_sidebar']; if (!empty($sidebar)) { dynamic_sidebar($sidebar); } else { dynamic_sidebar('sidebar-primary'); } } elseif (class_exists('woocommerce') and is_product()) { global $post; $sidebar = get_post_meta( $post->ID, '_kad_sidebar_choice', true ); if (empty($sidebar) || $sidebar == 'default') { global $virtue_premium; $psidebar = $virtue_premium['product_sidebar_default_sidebar']; if(!empty($psidebar)) { dynamic_sidebar($psidebar); } else { dynamic_sidebar('sidebar-primary'); } } else if(!empty($sidebar)) { dynamic_sidebar($sidebar); } else { dynamic_sidebar('sidebar-primary'); } } elseif( is_page_template('page-blog.php') || is_page_template('page-blog-grid.php') || is_page_template('page-sidebar.php') || is_page_template('page-feature-sidebar.php') || is_single() ) { global $post; $sidebar = get_post_meta( $post->ID, '_kad_sidebar_choice', true ); if (!empty($sidebar)) { dynamic_sidebar($sidebar); } else { dynamic_sidebar('sidebar-primary'); } //} elseif (is_archive()) { // global $virtue_premium; //if(isset($virtue_premium['blog_cat_sidebar'])) { //dynamic_sidebar($virtue_premium['blog_cat_sidebar']); //} else { //dynamic_sidebar('sidebar-primary'); //} //} } elseif (is_archive()) { global $virtue_premium; if (is_category(‘musique’)) { dynamic_sidebar(‘test’); } else if(isset($virtue_premium['blog_cat_sidebar'])) { dynamic_sidebar($virtue_premium['blog_cat_sidebar']); } else { dynamic_sidebar('sidebar-primary'); } } elseif(is_category()) { global $virtue_premium; if(isset($virtue_premium['blog_cat_sidebar'])) { dynamic_sidebar($virtue_premium['blog_cat_sidebar']); } else { dynamic_sidebar('sidebar-primary'); } } elseif (is_tag()) { dynamic_sidebar('sidebar-primary'); } elseif (is_post_type_archive()) { dynamic_sidebar('sidebar-primary'); } elseif (is_day()) { dynamic_sidebar('sidebar-primary'); } elseif (is_month()) { dynamic_sidebar('sidebar-primary'); } elseif (is_year()) { dynamic_sidebar('sidebar-primary'); } elseif (is_author()) { dynamic_sidebar('sidebar-primary'); } elseif (is_search()) { global $virtue_premium; if(isset($virtue_premium['search_sidebar'])) { dynamic_sidebar($virtue_premium['search_sidebar']); } else { dynamic_sidebar('sidebar-primary'); } } else { dynamic_sidebar('sidebar-primary'); } ?>In forum: Virtue ThemeIn reply to: Blog Page vs Home Latest Blog Posts
There was text in the excerpt box, which was hidden/not enabled on my post screen. I deleted the text in the excerpt box and the problem is sloved.
Thanks Ben!
For some additional background. I did some further research and found that the only posts that had excerpts were posts that were automatically created by the plugin Instagram Importer. These were the posts which had the issue of not being summarized on the blog/blog grid templates. It doesn’t look like there is a way through the plugin settings to change this, so I plan on just deleting the excerpt before I publish the post.
In forum: Virtue ThemeIn reply to: Adding padding and border / drop shadow effects
June 13, 2014 at 4:50 pm #10662This would cover the gallery on any page:
.kad-wp-gallery .grid_item { padding: 5px; border: 1px solid #ddd; -moz-box-shadow: 0 0 4px rgba(0,0,0,.4); -webkit-box-shadow: 0 0 4px rgba(0,0,0,.4); box-shadow: 0 0 4px rgba(0,0,0,.4); }The feature image/slider try this:
.single-article article .postfeat { padding: 5px; border: 1px solid #ddd; -moz-box-shadow: 0 0 4px rgba(0,0,0,.4); -webkit-box-shadow: 0 0 4px rgba(0,0,0,.4); box-shadow: 0 0 4px rgba(0,0,0,.4); }Can you post a link to the page with the “Kadence Slider” I want to make sure we are talking about the same thing.
BenIn forum: Virtue ThemeHi Ben,
I have just purchased premium virtue and Im really loving the theme and function, Thankyou.
I have a question; is it possible to add an amount of padding and a 1px border to all image thumbnails and slider images which are created on a portfolio grid page? Is this also possible to do within a portfolio post, for the gallery images?
Further more would it be possible to apply drop shadow effects to these same images?
Thankyou.
RichardIn forum: Virtue ThemeI noticed an unusual discrepancy between how my blog posts are displayed on my homepage and the Blog Page/Grid template page.
On my homepage, the blog posts are correctly summarized for the wordcount (56 words) that I specified through the Theme Options followed by the “Read More…” link. The blog posts are displayed using the Theme Layout–>Home Layout–>Home Layout Manager’s Latest Blog Posts widget. But when I use the blog page/grid template, my posts don’t seem to be summarized.
I’m not sure if the issue lies in how the post was created or if I need to add some custom CSS to somehow override the summary wordcount.
Thanks!
In forum: Virtue ThemeIn reply to: Portfolio-library-gallery, Oh MY!
June 11, 2014 at 1:28 pm #10464media library is where wordpress stores all the image you upload to your site.
a gallery is a built in wordpress function to show a grid of photos. This theme styles that grid for you.
A portfolio is a post type (added by the theme). You can add a gallery to a portfolio post.
Ben
In forum: Virtue ThemeIn reply to: Moved: home page post navigation
Hi Ben,
a solution seems next to us 😉 There are still 2 things before this case can be closed. I switched to the grid layout as said above with the very button. But it seems that this setting didn’t take the right effect. Here it doesn’t make a difference, if i choose 2 oder 3 cols grid layout = in each case I only get 1 col with the posts (big image and post text) + the pagenavi below the posts. But the output should appear within 2 cols to make it more beautyful 🙂 The second thing is, that the slider on the homepage is disappeared in this environment.
bye HartmutIn forum: Virtue ThemeIn reply to: css overides
June 8, 2014 at 11:56 pm #10277Can you post a link to the page? One thing to note is the css you are adding to the custom css box may be overridden if you are using the same css trail. So for example adding another class for id:
#content #pg-72-0 .panel-grid-cell .panelBen
In forum: Virtue ThemeTopic: Staff page
-
AuthorSearch Results


