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 Theme
In reply to: Testimonial Grid page doesn't have sidebars showing
March 21, 2016 at 11:21 pm #87036You can’t using the testimonial grid page.
but you can add the testimonial shortcodes to a page with a sidebar or for example the sidebar template.
[testimonial_posts columns="4" items="20"]Ben
In forum: Virtue ThemeIn reply to: Feature image on portfolio grid page
March 21, 2016 at 5:34 pm #86958You can add a portfolio grid to a featured page template by adding the shortcode into the content:
[portfolio_posts columns="3" items="10"]Ben
In forum: Virtue ThemeHow does a Subscriber (user role) get access to posting a testimonial on this page? When I go to that page I don’t see any posting link.
In forum: Virtue ThemeIn reply to: Where do testimonial posts show up?
March 19, 2016 at 4:33 pm #86590Hey,
You would make a page using the testimonial page template. Then each testimonial post would show on that page. http://docs.kadencethemes.com/virtue/#testimonialgridpageBen
In forum: Virtue ThemeIn reply to: Default testimonials icon
Ben, i’m testing this code on my local server, it can not be accessed from the Internet. After i changed the page page-testimonial-grid.php, the testimonials displayed as on the picture see post above. On the page I changed only the number of 60 to 229. And at first glance, everything works. I want to make sure that my changes will not spoiled the page, if my changes are safe, we can close the topic.
In forum: Virtue ThemeIn reply to: Default testimonials icon
Ok, sorry, in russian version of WordPress this image is named “miniature” =) I’m use the default testimonial page (testimonial grid) and change it.
Ben, if I change page-testimonial-grid.php like this, does it will be work?<div class="testimonialbox clearfix"> <?php if (has_post_thumbnail( $post->ID ) ) { $image_url = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' ); $thumbnailURL = $image_url[0]; $image = aq_resize($thumbnailURL, 229, 229, true); if(empty($image)) {$image = $thumbnailURL;}?> <div class="alignleft testimonialimg"> <img src="<?php echo esc_url($image); ?>" alt="<?php esc_attr(the_title()); ?>" class="" style="display: block; max-width:229px;"> </div>In this code I change size of image and max width. I hope, I did not break page?
In forum: Pinnacle ThemeIn reply to: Recents posts layout
March 18, 2016 at 11:44 am #86426Hey,
In the blog shortcodes you can use offsets. So for example:[blog_posts orderby=date items="1" type="normal" offset="null"] [blog_posts orderby=date items="2" type="grid" columns="2" offset="1"]Ben
In forum: Virtue ThemeIn reply to: Virtue: Post Grid Styling
Thanks for clearing that up – it seems that what I wanted is way easier than I thought it would be. I managed to see the icons for a few minutes before something else went wrong with my site – the blog grid that they are being pulled from no longer shows all the posts that are categorized under it and a smaller link to the same page shows up where it really shouldn’t.
The grey icon isn’t even a post and seems to be preventing the rest of the posts from showing up:
In forum: Virtue ThemeTopic: Virtue: Post Grid Styling
Hi – I have some blog grid style pages which are set to only show posts from a certain category. On certain posts I want to add a widget to show a grid of icons from one of these categories using the same styling as the blog grid post images. Using selectors I was able to match the grid images perfectly to my site and I would like a specific category icon grid in widget form that can also be customized with other selectors in exactly the same style. It seems like the solution might be to use the Virtue: Post Grid widget but so far this does not do what I want. Even while using a full width row in pagebuilder it makes the icons in the Post Grid show up really tiny, blurry and cropped horizontally. I want larger icons maybe two to four across preferably just as they appear on the blog grid. Is there any way to target how these show up through custom css?
This is an example of the styling and post grid style I want to match for the widget: *Login to see link
And this is the page with the Virtue: Post Grid widget that I want to style differently: *Login to see link
Where it says ‘More accessories’ I want the title centered and showing icons just like the blog page grid.
In forum: Virtue ThemeIn reply to: Portfolio sidebar menu – home page
March 15, 2016 at 5:25 pm #859691. You would need to use add a function like this:
function kad_sidebar_on_portfolio_archive($sidebar) { if (is_post_type_archive('portfolio')) { return true; } return $sidebar; } add_filter('kadence_display_sidebar', 'kad_sidebar_on_portfolio_archive');Note that for portfolio grid page templates you would need this:
function kad_sidebar_on_portfolio_grid($sidebar) { if (is_page_template('page-portfolio.php')) { return true; } return $sidebar; } add_filter('kadence_display_sidebar', 'kad_sidebar_on_portfolio_grid');2.
The reason they are not the same size is because your images are too small.. https://www.honeybees.nz/wp-content/uploads/2016/03/beekeeper-with-attitude-2.jpg
They are not at least the size needed and thus can’t be all sized the same.
Ben
In forum: Virtue ThemeIn reply to: Full width footer
March 15, 2016 at 12:35 pm #859401. You have an open div on the home page that you need to close. Looks like it may be in your home content. Hard to tell from the front end.
2. I’m only seeing one post with not much text. When you have a lot of content the home layout would only show part of it.
You can hide the text though by adding this css:
.home_blog .postcontent { display: none; }But the layout wouldn’t be good. I suggest using the blog grid shortcode then using css like this to hide the text, it would make for a better layout:
shortcode:
[blog_grid orderby=date items=4 columns=2]css:
.home #kad-blog-grid .blog_item .postcontent { display: none; }3. add this css:
.home .panel-grid:only-child .siteorigin-panels-stretch { margin-bottom: 0 !important; }Ben
In forum: Virtue ThemeIn reply to: Home Page Video Image
March 15, 2016 at 12:11 pm #85930Hey,
The featured image is all the shows when your using the theme options > home layout > latest post. That post output format is image or no image. There isn’t an option there for a slider or video. It’s designed to be basic and isn’t not designed to show the post summary setting.If you want an image to show with your post there then you need to set a featured image.
Now you can use a differnet blog output format like what you see here: http://themes.kadencethemes.com/virtue-premium/blog/
Or here: http://themes.kadencethemes.com/virtue-premium/blog-grid-three-column/Those pull the video right into the summary output.
You can use both of those on your home page by either making the home page your “latest post page”
or by using a blog shortcodes: http://docs.kadencethemes.com/virtue/#shortcodes
See here for more info: https://www.kadencewp.com/creating-a-home-page-with-virtue/
Ben
In forum: Virtue ThemeIn reply to: Creating a portfolio
Glad things are working with your portfolio. If this happens again I would suggest changing your permalink setting to Post Name as a test.
There isn’t an option to add content under the portfolio grid, but you could use a portfolio grid shortcode then add whatever you wanted underneath. The shortcode would look like this:[portfolio_posts orderby=date columns=4 items=12 cat=photos]
Hope that’s helpful!Hannah
In forum: Virtue ThemeIn reply to: How to style each post individually?
March 15, 2016 at 2:07 am #858481. It’s not a specific enough css selector.
Use:#kad-blog-grid #post-29 { background-color: #fafafa; border-style: solid; border-width: 10px; border-radius: 15px; color: #000; }2. If you make the front page a static page you would have to use a shortcode for displaying posts. Like:
[blog_grid items=4 columns=3]PLease see: https://www.kadencewp.com/creating-a-home-page-with-virtue/
In forum: Virtue ThemeIn reply to: How to style each post individually?
Thanks, Ben!
I am using #post-id for the styling on the excerpt page. for the posts, I am using the page builder as it is easier for me to style.
Can you please comment on the two questions below:
1) Below is an example for one of the excerpts. I am using for following css for one of my post (on my excerpt
#post-29 { background-color: #fafafa; border-style: solid; border-width: 10px; border-radius: 15px; color: #000; } #post-29 h4.entry-title { color: #00007a;}I can see the changes with this css except the following has no effect:
border-style: solid; border-width: 10px;Is there anything wrong with this?
2) I have a page Blogs & Analyses. When I use it as regular page and select blog/blog grid as template and select my blog category under Blog Category I can see the excerpts of all my posts in a two-colummn format (as I have selected so).
However, when I set this page to my Front Page, the excerpts disappear. I looked at the Home Layout under Theme Options but the only setting available is for the latest posts and you can choose how many of these “latest Posts” should be displayed.
Can you please tell me how to make excerpts of ALL of my posts appear on the Front Page?
Thank you,
JayIn forum: Virtue ThemeIn reply to: Related Posts Number of Items
March 12, 2016 at 6:42 am #85420I’m guessing your more wanting the blog grid shortcode from the link hannah posted.
Ben
In forum: Virtue ThemeMarch 11, 2016 at 5:50 pm #85382yes Hannah I was tlooking about that . I have change the attibut of the Page “Portfolio Category grid” to “Portfolio grid” .
ANd the filter option has appear . All is fine …SO now I am very nearby what I ecpect.
but there is a bug
visit my page http://www.marc-joseph-sigaud.com/portfolio-categories/
And test :
click from left to right successively from ALL to SHOW
After come back in the invers way
the portfolio post ( the one which is display when clicked on SHOW) keep always displayed in row 1 and column 1It ‘s diseappear if you click on ALL .
WOuld it be the fact that it’s the last type of portfolio listed … If I suppress the portfolio type SHOw no problems.. it’s seems something wrong for the LAst item porffolio type …. in position 6 in the list .. i think you will understand ..
best MarcIn forum: Virtue ThemeSorry, there isn’t a built in option for that. The filter is only an option on the portfolio page (with individual portfolio posts) not the portfolio category. But looking at your site it looks like you haven’t turned the filer on for your portfolio page so maybe that’s what you mean. In your Portfolio Grid edit page under Portfolio Grid Options select Yes beside Filter? Then to turn on masonry go to Theme Options > Portfolio Options and select On beside Masonry Style.
Hannah
In forum: Virtue ThemeIn reply to: CMS-like structure wanted for categories
In forum: Virtue ThemeIn reply to: Home Blog Settings
March 9, 2016 at 11:48 pm #85135Hey,
There isn’t a shortcode that does this exactly but you can make it happen with the shortcode that hannah posted. First you need to make sure each post has a featured image set and that the “post summary” is set to portrait or landscape image.Then in your theme options > advnaced settings add this to the css box:
.home-widget-box #kad-blog-grid .blog_item .postcontent { display: none; }Ben
-
AuthorSearch Results


