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'
-
AuthorSearch Results
-
In forum: Pinnacle Theme
In reply to: Column in a pre-existing Column
February 7, 2015 at 3:37 pm #30226shortcodes 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
In forum: Virtue ThemeTopic: Scaling items on a page
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
In forum: Virtue ThemeTopic: Image size in footer widget
In forum: Virtue ThemeIn reply to: In page slider
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=439Thanks
SolIn forum: Virtue ThemeIn reply to: Problems with Portfolio
February 3, 2015 at 12:44 pm #296231. 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
In forum: Virtue ThemeHi,
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,
MatijaIn forum: Virtue ThemeIn reply to: Use Revolution Slider in Portfolio Grid page etc
In forum: Virtue ThemeTopic: Problems with Portfolio
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 heightIn forum: Virtue ThemeIn reply to: Sidebar on Portfolio Grid
February 2, 2015 at 9:39 pm #29548Hey, 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 ThemeIn reply to: Sidebar on Portfolio Grid
February 2, 2015 at 5:05 pm #29534Elisey,
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
In forum: Virtue ThemeIn reply to: Menu image de page d'accueil
February 1, 2015 at 12:13 am #29354Hey,
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
In forum: Virtue ThemeTopic: Site Logo-type disabled?
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 ThemeIn reply to: In page slider
January 30, 2015 at 11:27 am #29178Hey,
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 ThemeIn reply to: Crop to Squares
January 28, 2015 at 11:33 am #28889ok, 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 ThemeIn reply to: Menu Image width
January 28, 2015 at 2:12 am #28829Home to be the full width layout
It can stretch the entire width of the screen to fit 4 columnsIn forum: Virtue ThemeIn reply to: Menu Image width
January 28, 2015 at 1:43 am #28828Are you wanting to make it three columns or are you wanting the images to touch?
Ben
In forum: Virtue ThemeIn reply to: Crop to Squares
January 28, 2015 at 12:52 am #28820Hey,
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 ThemeIn reply to: Crop to Squares
In forum: Pinnacle ThemeIn reply to: Portfolio carousel + Home Slider
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
In forum: Virtue ThemeIn reply to: Portfolio post Bottom Carousel Options
-
AuthorSearch Results


