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: Virtue Theme
In reply to: Add 3 home widget column to the layout.
April 29, 2015 at 10:22 am #39093You can set the home page to be a static page. That would allow you to have full pagebuilder control.
Or if you really want to use the home widget area you can use the “visual editor” widget and click “virtue shortcodes” then click columns that will give you the option to add three columns.
Or you can make the widget area a pagebuilder area with the layout pagebuilder widget.
Ben
In forum: Virtue ThemeIn reply to: Problem adding content
April 29, 2015 at 10:16 am #39091There isn’t any way to do this on the wordpress built category pages. not any “uncomplicated” ways.
My suggestion is just to build your own pages to act as category pages. You can add the category grid of products using this shortcode:
[product_category columns="4" category="appliances"]See more shortcodes here: http://docs.woothemes.com/document/woocommerce-shortcodes/
Ben
In forum: Virtue ThemeIn reply to: Home page: image with form
April 29, 2015 at 10:09 am #39089Pagebuilder is going to be your best bet for this, will allow you to have columns and widgets for your form and gives you the option to have a fullwidth background image.
Ben
In forum: Virtue ThemeIn forum: Virtue ThemeIn reply to: indent just one header
Hey Judy,Have you tried using the virtue shortcode “columns”? Another option would be to use pagebuilder. You would create a row with two columns and add an image to the first and your text to the second. Does that work for you?
https://www.kadencewp.com/using-page-builder-virtue-premium/Hannah
In forum: Virtue ThemeHello,
I would like to change the layout of my home page. I am now using in settings-reading-Front page displays your latest posts and then in Theme option-home layout- page content. So I have on my home page a beautiful display of my latest posts (4 columns-10 posts). See on *Login to see link
Now I would like to set a static page but I want to keep this exact same layout for my latest posts. I can’t find a widget that recreate the exact layout.
Can you please help?
Thank you,
Best,
MarylineIn forum: Virtue ThemeIn reply to: Portfolio Category Grid
Hi Ben,
Thanks for your reply.
I have a Portfolio Type tree that goes something like this:
Level 1 Parenta
Level 2 Childa
Level 2 Childb
Level 1 Parentb
Level 2 Childc
Level 2 ChilddWhen I put the above code [portfolio_types columns=”3″ items=”4″ childof=”Parenta”childcategories=true], it displays Parenta and Parentb, instead of Childa and Childb. Hope you can provide a fix. Thanks!
Aileen
In forum: Virtue ThemeIn reply to: Show two columns in the same row
This is what I typed… [gallery link="none" columns="1" size="full" ids="820,819,818,817,816,814,812,811,805"type="slider" width="450" height="260"]
Nothing is showing up where the image is supposed to be at the top, left of the text.
http://www.debbiesun.com/?post_type=productps. the images are sized 800 x 450. should I adjust the slider dimensions?
In forum: Virtue ThemeIn reply to: Show two columns in the same row
In forum: Virtue ThemeI am trying to create my home page with page builder so that I can have the sidebar on the left and text on the right. I also want to be able to insert a product carousel into the main body. I have used page builder before with no problems, but his time, the columns are ending up stacked instead of beside each other. I have tried changing some settings, but nothing seems to be working, and there are no plugin conflicts.
Here is a link to the home page: *Login to see link
Any ideas how to fix this?
In forum: Virtue ThemeIn reply to: Portfolio Category Grid
April 22, 2015 at 11:22 am #38317You would have to do this with a shortcode and not the page template. so just switch your page template to fullwidth and add this:
[portfolio_types columns=”3″ items=”4″ childof=”50″childcategories=true]
change out the childof number to the id of your parent type.
Ben
In forum: Virtue ThemeIn reply to: Show two columns in the same row
In forum: Virtue ThemeIn reply to: Show two columns in the same row
April 21, 2015 at 1:52 pm #38189Hey so that is your shop page. You can’t use pagebuilder on the woocommerce shop page. The two plugins conflict if you do. Just use the “virtue shortcodes” and click the columns options.
Ben
In forum: Virtue ThemeHi,
I´ve just added a row with two columns, the left column with an image (400px wide x 300 px high), the right column with text. I would like it to appear in one row so that the text is adjacent with the image, wrapped around to fit within the row. Now it’s showing the image in one row and the text below in a second row.
Thanks for the help!In forum: Virtue ThemeIn reply to: Customize Ecommerce Home Page
April 20, 2015 at 1:55 pm #38091Yeah you just stick the shortcode into the home page content.
http://docs.woothemes.com/document/woocommerce-shortcodes/
[featured_products per_page=”12″ columns=”4″]
Ben
In forum: Pinnacle ThemeIn reply to: Override gallery – I don't understand
Pinnacle Premium 1.3.0, I’m using a child theme from there. It’s under Miscellaneous Settings/Wordpress Galleries:
Enable Pinnacle Galleries to Override WordPress
This will enable or disable virtue galleries to be overridden by wordpress.Oh, going back there now, I see you’ve fixed it — well done! This helps, but —
So: choose On, to enable Pinnacle Galleries to override WordPress Galleries or other Gallery Plug-ins. I just wanted to copy and paste the gallery I had in Virtue onto my Pinnacle page. I understood it to be a WordPress Gallery and the shortcode is
[gallery type="carousel" speed=6000 columns=3 link="file" ids="30,31,32,33,34,35,36"]But copy/pasted code is not working. (of course I did update the ids, but still) I get the images in a grid on the page (it’s At Inks Lake) but what I had before was a nice 3 column slider. I thought (from that bookmarked page among your Virtue resources) it was WordPress code for gallery type=carousel. Not correct?
In forum: Virtue ThemeYou would have to remove the do_shortcode from the content-product.php file and replace with strip_shortcode.
Is there a way I can do this in an upgrade-safe way from my child theme? A filter, action or similar… If not maybe you could integrate a
apply_filterscall forwordpress_short_descriptionfilter in content-product.php as this is would seem logical to me as this is what the filter is about.That gallery rendering with images sitting on top of each other has to do with the area being “display:none” when you load as columns then being switched to display:block then you click the list option.
You would just have to add a javascript function that would re-render the gallery layout when the list button was clicked. If you are really interested in this I can give you the code.
Yes, this would be helpful. A hint like on which jquery event I need to attach which js function call would be sufficient, I guess.
as for the thumbnail size you can customize to whatever size you want those images to be in the shortcode using the imgwidth=”100″ and imgheight=”100″
Thanks for the advice, I’ll try this. The problem here might be that the thumbnail size needs to be different maybe on the shop than on the product page. But I’ll look into this if I can have the same sizes for both possibly.
In forum: Virtue ThemeApril 19, 2015 at 7:16 pm #37959You would have to remove the do_shortcode from the content-product.php file and replace with strip_shortcode.
That gallery rendering with images sitting on top of each other has to do with the area being “display:none” when you load as columns then being switched to display:block then you click the list option.
You would just have to add a javascript function that would re-render the gallery layout when the list button was clicked. If you are really interested in this I can give you the code.
as for the thumbnail size you can customize to whatever size you want those images to be in the shortcode using the
imgwidth="100"andimgheight="100"Ben
In forum: Virtue ThemeI use [gallery masonry="false" columns="6" ids="1896,1903"] in the product gallery short description. This causes layout problems (and slow loading due to big image files) on the /shop/ page. See this screenshot: *Login to see link
I thought of removing the gallery shortcode from the woocommerce short description on the shop page (a.k.a the_excerpt) using a filter with:
/* 2015-04-19: Do not print gallery on /shop/ - because does not work with long list */
function remove_shortcode_from_shop( $content ){
if ( is_shop() ) {
$content = strip_shortcodes( $content );
}
return $content;
}
add_filter( 'woocommerce_short_description', 'remove_shortcode_from_shop' );But the woocommerce_short_description filter does not seem to be applied on the shop page, only on product pages. Using the the_excerpt wordpress filter is also not applied here.
I looked at your code and the relevant part is in content-product.php:
<div class="product_excerpt">
<?php global $post;
if ($post->post_excerpt){
echo do_shortcode(wpautop(wptexturize($post->post_excerpt)));
} else {
the_excerpt();
} ?>
</div>Hmh, I am now stuck here :-/ Any advice how to remove the gallery shortcode from shop page? Is there a filter or anything else?
I know that there is a virtue premium option (“shop_excerpt”) to turn off the product short description completely. But that is not what I want, just removing the gallery would be ok.
PS Besides fixing the gallery rendering problem as shown in the screenshot would be cool too. Maybe this is just a missing initialisation. Then only the slow loading would remain due to the big files, where you of course cannot do much against (except maybe smaller thumbnails).
In forum: Virtue ThemeIn reply to: Image Menu Size
April 17, 2015 at 11:57 pm #37840How many columns did you set for the items? Can you post a link?
Ben
-
AuthorSearch Results


