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 'COLUMNS'

Home / Forums / Search / Search Results for 'COLUMNS'

Viewing 20 results - 3,461 through 3,480 (of 3,937 total)
  • Author
    Search Results
  • #30226

    shortcodes inside shortcodes can cause problems. I would built your main column with pagebuilder, then inside the visual editor widget you can have the accordion and use the theme shortcodes for columns.

    Else you can just add html in the accordion for the columns.

    Ben

    #30195

    Hi, I have created a page with photos, text and a video, spread across two columns. All looks good unless I scale the page – when I do, the photo enlarges but the video doesn’t, so things start to look out of line.

    Do you have any suggestions as to how I can make everything keep in line regardless of any scaling?

    Thanks very much,

    Jane

    #30191

    Using 4 columns in Virtue footer widget with image menu item, I am using images that are 100 px w x 150 px high and set the item height to 150, but the images come out much larger than that. I must be missing a setting somewhere – any help?

    In forum: Virtue Theme

    In reply to: In page slider

    #29816

    Hi Ben

    This is wonderful – thank you. I am using this to display 3 images at a time in a row. The slider does not work for me as it only displays one image at a time (i tried adding per_page=”3″ but not working).

    The carousel is great, but I need to tweak it a bit more.

    Is there a way to control transition? It zooms across a bit fast at 3 at a time. I want to be able to transition one image at a time (not all three) and also control the transition effect (e.g. a slow smooth movement) – is that possible?

    Right now I have this;

    [gallery columns="3" link="file" ids="164,167,152" type="carousel" speed="9000"]

    Is it possible to add a transition effect to the shortcode e.g transition=”.6s” ?

    Or perhaps this could be done with css e.g. transition: .9s, ease-in-out, left; But which element would this be applied to ?

    The example here is good – but can this be replicated in page gallery shortcode?
    http://virtuemock.kadencethemes.com/?page_id=439

    Thanks
    Sol

    In forum: Virtue Theme
    #29623

    1. In your single portfolio post pages. There is navigation (left and right arrows with a grid in the middle) That parent page is the grid link. This allows you to have different grids for different portfolio items.

    2. Then you can use this css to hide the title:

    .home-portfolio .hometitle {
    display: none;
    }
    

    3. hmm, I don’t have this issue on a test server. can you post a link. (by the way the columns are set by your column options).
    Are you just adding 200 no “px” right?

    Ben

    #29607

    Hi,

    I have virtue premium theme. Great work.

    question:
    Where can i change e-mail on which i recieve when someone post testimonial? I don’t have testiomonials on template page, but on single page using shortcode [testimonial_posts items=30 columns=1].

    Thank you,

    Kind regards,
    Matija

    #29598

    Hey Thomas,
    I think your best bet is to use the featured page template and add the testimonials through shortcodes. Something like this should work-
    [testimonial_posts columns="3" items="20"]
    Hope that helps!

    Hannah

    #29575

    Hello, I would like to ask you on some help with the portfolios

    1. Please explain what the Portfolio Parent Page is used for which I can chose on every portfolio element. No matter what I don’t see any differences anywhere.

    2. Home Layout->Home Portfolio Carousel Settings->Home Portfolio Carousel title
    when left empty it es replaced by “Featured Projects”. I don’t need any title, the pictures speak for themselves.

    3. Home Layout->Home Portfolio Carousel Settings->Set height for portfolio items – Optional
    no matter what I chose height is always 450 (with 3 columns) which is very ugly because the images I wanted to use are only 200 height

    In forum: Virtue Theme
    #29548

    Hey, Your missing the purpose of my function. Yours adds the sidebar, mine tells which sidebar to use. You would use both.

    The filter isn’t an ajax filter (fyi) but it is a filter and you can have it with the shortcode:

    [portfolio_posts columns="4" items="10" filter="true"]

    With the function I posted you can change to set a custom sidebar for portfolio posts too, just have to change what the “if” is for.

    add_filter('kadence_sidebar_id', 'psingle_sidebar_id');
    function psingle_sidebar_id($sidebar) {
      if (is_singular('portfolio')) {
        return 'sidebar2';
      }
      return $sidebar;
    }

    So no I’m not saying you can’t have a custom sidebar on anything in the site. I’m saying there is a built in filter for it and here is how to use it.

    A plugin is something to consider, this isn’t as higher requested as you might think, especially as I’ve made it pretty easy to hook into with a function and I’ve made sure the css won’t freak out if your using a sidebar on a post that was designed to be full-width. all you need to to create the sidebar in your misc settings of the theme options then add that name into the functions and your done.

    Ben

    In forum: Virtue Theme
    #29534

    Elisey,
    You can use the portfolio shortcodes on any page. So say you want to show the grid with a sidebar you can use a sidebar template then add your portfolio shortcode in the page content:

    [portfolio_posts columns="4" items="10"]

    http://docs.kadencethemes.com/virtue/#shortcodes

    If you really want to use the portfolio grid page (where you can’t select a custom sidebar you can use a function for it:

    add_filter('kadence_sidebar_id', 'pgrid_sidebar_id');
    function pgrid_sidebar_id($sidebar) {
      if (is_page_template('page-portfolio.php')) {
        return 'sidebar2';
      }
      return $sidebar;
    }
    

    Ben

    #29354

    Hey,
    Looks like your using the image menu. and when you define three columns it assumes you are going to have at least three items.

    You can add this css but when you get a third item you will want to remove it.

    @media (min-width: 992px){
    .homepromo {
        max-width: 900px;
        margin: 0 auto;
    }
    .homepromo .homeitemcount1, .homepromo .homeitemcount2 {
        width: 50%;
    }
    }

    Ben

    #29239

    When I upgraded to the Premium theme I seem to have lost the ability to use text as my logotype – the settings for the font for the logo text option is still there in theme options main, but not the text box and also now the site tag line will not appear “under the logo” anymore, maybe because I haven’t uploaded a logo and something isnt working with setting text as the logo?

    I used [portfolio_posts items=”-1″ columns=”4″ masonry=”true” filter=”true”] on content for my homepage as you suggested to another in the forum, and the filter is working great but it is not going to Masonry for some reason,

    In forum: Virtue Theme

    In reply to: In page slider

    #29178

    Hey,
    There actually is a shortcode to create a custom carousel. It’s not in the shortcodes list. (I’m working on an update for it).

    There is also the option for a gallery. With the theme gallery on you can make any gallery a carousel or a slider just by adding type=”carousel” or type=”slider to the gallery shortcode.

    See examples here: http://themes.kadencethemes.com/virtue-premium/wordpress-gallery/

    If you want a custom carousel shortocode which will allow you to make anything a carousel you can use this:

    [custom_carousel columns=1 speed=9000 scroll=1]
    
    [carousel_item columns=1]
    Item 01 - Add your info here
    [/carousel_item]
    
    [carousel_item columns=1]
    Item 02 - Add your info here
    [/carousel_item]
    
    [carousel_item columns=1]
    Item 03 - Add your info here
    [/carousel_item]
    
    [carousel_item columns=1]
    Item 04 - Add your info here
    [/carousel_item]
    
    [/custom_carousel]

    Ben

    In forum: Virtue Theme

    In reply to: Crop to Squares

    #28889

    ok, I see, your using a wp gallery on your visions page. You don’t have any portfolio items… Check out this tutorial: https://www.kadencewp.com/creating-a-portfolio-page-with-virtue/

    by the way you can change the gallery columns in the gallery settings just click on it.

    Ben

    In forum: Virtue Theme

    In reply to: Menu Image width

    #28829

    Home to be the full width layout
    It can stretch the entire width of the screen to fit 4 columns

    In forum: Virtue Theme

    In reply to: Menu Image width

    #28828

    Are you wanting to make it three columns or are you wanting the images to touch?

    Ben

    In forum: Virtue Theme

    In reply to: Crop to Squares

    #28820

    Hey,
    Looks like you set the amount of item to 4? Your sure you set the columns?

    Can you post a temp login?

    Use the “Set as private reply”

    Ben

    In forum: Virtue Theme

    In reply to: Crop to Squares

    #28811

    Great it worked! thank you! Now that i’m seeing it though, i’d like to set it to 4 columns, however when i select that on the editing page, it still is showing me 3 per column. Is there somewhere else i need to change this? thanks again

    #28746

    Hello,
    1. This is not determined by the page width, but by your settings. The homepage portfolio carousel can be edited in theme options > home layout. There’s an option to Choose how many columns are in carousel.

    2. There’s not a set height/width. It really depends on the look you want. I mostly recommend bigger images, but some people like their images to be stretched. If you don’t like the current look maybe try making your pictures bigger?

    Hannah

    #28500

    Thank you Ben, it works now! (I didn’t set portfolio items)
    about the left arrow, I add two items–so total 12 items on five columns. they work perfectly.
    Thank you again!
    Steve

Viewing 20 results - 3,461 through 3,480 (of 3,937 total)