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 - 1,161 through 1,180 (of 2,160 total)
  • Author
    Search Results
  • #161865

    Ah, you now switched off the listing of the other posts in the post grid on the home page — do you think it is better? I actually was about to ask to make this option also for the portfolio grid.

    Is there a way to get it by a customizing piece of code?

    #161861

    2. I can’t find the conflicting plugin. something is forcing that grid to load 12. I overrode it with a shortcode using:
    [portfolio_posts items="6" style="mosaic" filter="true"]
    in the home widget area. That is a good option unless you want to try deactivating all your plugins.

    3. This plugin is your issue with favicon: Facebook Page Plugin (Likebox)

    #161830

    The portfolio category grid template will pull your portfolio categories (types), whereas the portfolio grid template will pull your individual portfolio posts. You can display a portfolio category grid in your homepage using a shortcode like this: [portfolio_types orderby=date showexcerpt=false columns=4 items=4 height=200] You can paste that into your homepage content area or else a text widget within your home widget area.

    Hannah

    #161014

    I have two things that I’m trying to do on the Portfolio Grid page.

    The page that I’m referring to is

    I would like the formatting of the Project Title/Text from the right-hand image, but by using the excerpt copy instead of the beginning copy in the post.

    In other words, the way it displays on the right-hand image is correct, but I want to use the excerpt copy instead of the post copy.

    When I added in the excerpt copy on the left-hand image, it resulted in everything appearing in a jumble at the bottom.

    How can I correct this? I looked through Portfolio settings in Appearance, I went through the Portfolio Grid page, and the individual Post pages, but I can’t find the correct settings anywhere. Help!

    Thanks,
    Dean

    #160984

    Hi there.

    I should stress I do not know if this issue is due to an issue with the Theme.. but having tried other things already (with no joy) I felt it wise to post something here.

    The issue I’m having is the media library no longer working on a WordPress Site I’m building using Virtue Premium (a Child Theme working with Virtue Premium).

    As things stand I’ve not even added many images, but when I go to add an image from the Media Library (when on a product page – WooCommerce) – it just hangs. I’ve had this sometimes in the past, when usually searching for an image solves the issue. However, this is not working either. I never get to see any images – even though there are definitely images on there!

    In case this is a clue, if I go direct to Media Library from WordPress admin this also doesn’t work UNLESS I select the “List” mode version (not grid) – then hey presto! I have images to pick from (or, in that case there, manage/remove etc.)

    Any ideas? Has anyone else had this issue?? It is seriously impairing/impeding progress on my project (again I appreciate it may not be the Theme at fault).

    Thanks,
    John.

    #160822

    There are galleries that have 1000+ individual photos I need a global solution that will work off a link to each image. That would be insane work LOL!

    “One other option would be to make a WooCommerce shop page and display the photos for sale there. The shop grid will look a bit different than the gallery, but it would create the link to your products by default.”

    You said this in previous post it sounds like a better option time wise please explain further.
    The work-around would be a better option if I just can create a new gallery and the user has the purchase options then is this a better way

    #160762

    I have problems with viewing blog posts. I created a page as a “blog grid” template … but what comes out is the preview of the three articles that are attached to each other without spaces. you can fix it a bit.


    Thank you…

    #160517

    Would It b feasible to be able to switch them over to Portfolios?

    No. You would have to create individual portfolio posts for each image.
    Did you look at the examples of portfolios and galleries that I sent above? And the tutorials? Portfolios are more like projects. They each have their own individual post page with their own content. From the portfolio grid page, you can click an image (which is the featured image of that portfolio post) and it will take you to the individual portfolio post with its own content. Like here: http://themes.kadencethemes.com/pinnacle-premium/portfolio/work-station/ Whereas galleries are just images. When you click on an image it just opens in a lightbox and there is not content attached.
    Hope that’s clear!

    Hannah

    #160429

    I still don’t see where I have the “portfolio grid” template pulling from any posts for my galleries page
    Where can I access that?

    page attributes >

    template > ?

    #160424

    Oh, you should see a Portfolio tab in your wp-admin panel with a list of your portfolio posts. Your portfolio grid page pulls the featured image of each individual portfolio post. It is different from a gallery.
    See gallery example here: http://themes.kadencethemes.com/pinnacle-premium/galleries/
    And portfolio grid here: http://themes.kadencethemes.com/pinnacle-premium/our-portfolio/

    Hannah

    In forum: Virtue Theme

    In reply to: Metabox Help

    #160181

    Hi Ben,

    I’m working through updating my old cmb functions to work with the new cmb2 as directed and noticed that the Blog Grid template seems to be missing the blog post options such as Blog Category, Order Item by, etc. I took a look through the code and found that the Blog Grid Options is set to template-blog-grid.php and template-blog-photogrid.php instead of page-blog-grid.php.

    Is this a change in the updated theme? I don’t seem to have template-blog-grid.php or template-blog-photogrid.php in my files. Thanks.

    #160102

    For the bottom portfolio carousel settings how can we remove lightbox and portfolio category?

    We have disabled these in the default settings for the portfolio grid but these do not seem to affect the carousel?

    #160037

    As of Virtue Premium 4.3.2 the metabox class has been updated.

    You would need to use this function:

    
    function custom_remove_portfolio_meta() {
    	$cmb = cmb2_get_metabox( 'portfolio_post_metabox' );
    	$cmb->remove_field( '_kad_portfolio_img_grid_columns' );
    	$cmb->remove_field( '_kad_shortcode_slider' );
    	$cmb->remove_field( '_kad_project_val01_title' );
    	$cmb->remove_field( '_kad_project_val01_description' );
    	$cmb->remove_field( '_kad_project_val02_title' );
    	$cmb->remove_field( '_kad_project_val02_description' );
    	$cmb->remove_field( '_kad_project_val03_title' );
    	$cmb->remove_field( '_kad_project_val03_description' );
    	$cmb->remove_field( '_kad_project_val04_title' );
    	$cmb->remove_field( '_kad_project_val04_description' );
    	$cmb->remove_field( '_kad_project_val05_title' );
    	$cmb->remove_field( '_kad_project_val05_description' );
    	$cmb->remove_field( '_kad_post_video_url' );
    	$cmb->remove_field( '_kad_post_video' );
    	$cmb->remove_field( '_kad_portfolio_parent' );
    
    }
    add_action( 'cmb2_init_before_hookup', 'custom_remove_portfolio_meta' );

    Ben

    In forum: Virtue Theme
    #159995

    Ben,

    Honestly, I’m not trying to be difficult. When I go under the shortcodes, the Blog Grid shortcode isn’t there. Is there a reason that some of them may not be activated? I tried to search under missing Virtue shortcodes or activating Virtue shortcodes, but I couldn’t find anything.

    I inserted the shortcode for the blog_posts and edited it to reflect what you provided, but it’s not working. I then inserted the blog_posts shortcode to make sure it worked correctly and it did.

    Here’s the page that I tested it on. http://www.freshfoliodesign.com/blog/formats/

    On a side not, I created the Home page using the Page Builder module (which I hadn’t used before). Would that prevent me from using the Blog_Grid Virtue shortcode? It’s not listed as an option in the Widgets for Page Builder right now either.

    Sorry for the confusion…

    Dean

    #159981

    Hi
    How can I format the search page?
    Now it shows 5 posts per page, in a Blog Grid style.
    I would like to have infinite scroll and a Blog (category) style.
    Is it possible?
    Thanks
    Alain

    In forum: Virtue Theme
    #159946

    Ben,

    I’m looking at the Virtue shortcodes, but don’t see one for the blog grid. I can see one for blog posts, but it doesn’t have post style setting and shows a cropped photo (which creates a problem when the featured image is landscape format).

    What am I missing?

    I also looked at the settings on the Home page and have included the blog posting (see bottom of page), but that displays the same cropped image as the blog posts Virtue shortcode.

    I can’t figure out what I’m missing on these. I’ve tried pretty much every option I can see, but can’t get it to work. Help!

    Dean

    #159906

    Hi, I am adding some drop shadow to my images. I´ve used:
    img {
    -webkit-box-shadow: 7px 1px 10px #7a7a7a;
    box-shadow: 7px 1px 10px #7a7a7a;
    }
    Which worked for the Portfolio and Portfolio Item pages.

    Now I would like to ask how to target images in these 3 places separately:

    1 – Homepage – Portfolio full
    2 – Carousels
    3 – Footer – Pinnacle: Post Grid: Recent Projects /this one is affected by the img style, but I need to target it separately for a smaller shadow/
    My page is: kubonovak.com

    Thanks a lot,
    Kubo

    In forum: Virtue Theme

    In reply to: Testimonials

    #159803

    3. Some of the text I have set to bold but, the Bold font appears only on the grid page … is there a way I can make it consistent across the site?

    The carousels by default post an excerpt of the testimonials. Not the “content” and excerpt only pulls text it doesn’t pull styling. For you to get styling you would need to pull all the content of the testimonial.

    Ben

    In forum: Virtue Theme

    In reply to: Testimonials

    #159744

    Kevin:
    Sorry, not sure why it is not inserting the link!

    In forum: Virtue Theme
    #159739

    You can have the post show on your home page as a grid without the images cropped by using the blog grid shortcode or setting the home page to be your latest posts page and setting the post style.

    For example: [blog_grid columns="3" items="6"]

    Ben

Viewing 20 results - 1,161 through 1,180 (of 2,160 total)