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: Portfolio (home) Grid in Mobile?
In forum: Virtue ThemeIn forum: Virtue ThemeIn reply to: Woo Template Builder – Products on Any Page?
Hi Greg,
You can add products into any page using a shortcode like this:[products limit="5" columns="5"]You can even choose specific products by their product id:[products limit="5" columns="5" ids="44, 48, 59, 60, 61"]You can find a full list of shortcodes here: https://docs.woocommerce.com/document/woocommerce-shortcodes/
Hope that’s helpful!Hannah
In forum: Ascend ThemeHello again Kadence team,
I’m wondering if you have a workaround for irregular width footer columns? For example, instead of having two columns of 50% each, I am trying to achieve something like 65% and 35% …or any other variable. This would only apply to desktop / tablet views.
Any ideas would be great.
Many thanks in advance,
Andrew.
In forum: Ascend ThemeTopic: Ascend footer menus
Hello Kadence team,
I’m using the Ascend Premium theme and I am trying to replicate the footer menus style that are in your ‘Shopping’ demo: *Login to see link
I have tried various combinations but can’t work out how you have created two menu columns with only one title (CUSTOMER SERVICE) spanning both the menu columns. I hope that makes sense?
A link to my current effort is here: *Login to see link
Any assistance greatly appreciated, as always!
Andrew.
In forum: Pinnacle ThemeIn forum: Ascend ThemeIn reply to: Product Carousel Tabs: Columns differ to settings?
March 13, 2018 at 1:49 pm #183138If you max width is set to 1440 or larger then more columns would be added as the screen gets larger. The column setting is for standard screens or when you max width is set to 1140.
Ben
In forum: Ascend ThemeMarch 13, 2018 at 12:44 pm #183104Hi guys,
I have a problem with the Product Carousel Tabs: Somehow (and sometimes) the shown products don’t match the settings.
Choose how many columns are in each carousel: 5
Bestsellers which are shown: 4 (and not centered)
Featured which are shown: 5 (and not centered)I’ve emptied the cache several times.
In forum: Membership ForumsIn reply to: pricing table mess up
March 13, 2018 at 12:06 pm #183095Looks like you are using a plugin that is not ours. You may want to report this to the plugin authors.
I’m going to suggest this:
.so-widget-sow-price-table-atom-aaaaf2b24b27 .ow-pt-columns-atom .ow-pt-column .ow-pt-image img { max-height: 100%; margin: 0 auto; }In forum: Ascend ThemeIn reply to: making columns site origin editor
In forum: Ascend ThemeMarch 13, 2018 at 10:24 am #183067Hello,
Is is possible to split a piece of writing into 2 columns?
On this page I have a block of writing that I want to split into two columns but I want to avoid making a separate row when adding a widget.
Thanks
In forum: Ascend ThemeIn reply to: Using portfolio grid hover effect on other images
In forum: Virtue ThemeIn reply to: Home Custom Carousel’s slider OFF
In forum: Ascend ThemeIn reply to: Using portfolio grid hover effect on other images
Hannah thank you, it’s perfect! Just a question – I have only two portfolio types. Using the shortcode in pagebuilder, it reverts to flush left. So I made 3 columns in the row, and put the code in the middle column, but it’s now flushing left within the column. Then I tried to just hit text center in the text editor, and although it centers in the preview, it doesn’t center once it renders the page.
Any other way I could center these two types? I checked the shortcodes page you sent me, it’s a little new for me so forgive me – perhaps is there instead a way to show portfolio_types and choose only one type to show instead of showing all of them? If so then I will split them up and put them each in their own column. Thank you so much for your help!! 🙂
In forum: Virtue ThemeMarch 12, 2018 at 3:01 pm #182941The width is based on your columns. it’s set to fill the columns you set so more columns less width, less columns more width.
Ben
In forum: Virtue ThemeIn reply to: carousel shortcode
I went the hard way of course, I looked into code, and saw there is actually no author variable and only one post type allowed, and also no custom posts. I copied the function and tried to make a shortcode, however I need help with debugging it – it doesn’t work:
So far I changed some variables and removed the products, staff, testimonial parts from it.
function add_dnevnik_hudeyushego( $atts, $content) { extract(shortcode_atts(array( 'type' => '', 'id' => (rand(10,100)), 'columns' => '4', 'orderby' => '', 'order' => '', 'author_name' => '', 'mcol' => null, 'scol' => null, 'xscol' => null, 'sscol' => null, 'img_height' => '', 'autoplay' => 'true', 'offset' => null, 'speed' => '9000', 'transspeed' => '400', 'scroll' => '1', 'arrows' => 'true', 'items' => '8' ), $atts)); global $post; $this_post_id = $post->ID; if ( empty( $type ) ) { $type = 'post,diary'; } if( empty( $orderby ) ) { $orderby = 'menu_order'; } if( ! empty( $order ) ) { $order = $order; } else if( $orderby == 'menu_order' ) { $order = 'ASC'; } else { $order = 'DESC'; } ob_start(); virtue_build_post_content_carousel2( $id, $columns, $type, $items, $orderby, $order, $author_name, $class, $offset, $autoplay, $speed, $scroll, $arrows, $transspeed, $img_height, $mcol, $scol, $xscol, $sscol ); $output = ob_get_contents(); ob_end_clean(); wp_reset_postdata(); return $output; } if( ! function_exists( 'virtue_build_post_content_carousel2' ) ) { function virtue_build_post_content_carousel2( $id = 'content_carousel', $columns = '5', $type = 'post,diary', $items = 8, $orderby = null, $order = null, $author_name = null, $class = null, $offset = null, $autoplay = 'true', $speed = '9000', $scroll = '1', $arrows = 'true', $transspeed = '400', $imgheight = null, $mdcol = null, $smcol = null, $xscol = null, $sscol = null ) { $cc = array(); if ($columns == '2') { $cc = virtue_carousel_columns('2'); }else if ($columns == '1') { $cc = virtue_carousel_columns('1'); } else if ($columns == '3'){ $cc = virtue_carousel_columns('3'); } else if ($columns == '6'){ $cc = virtue_carousel_columns('6'); } else if ($columns == '5'){ $cc = virtue_carousel_columns('5'); } else { $cc = virtue_carousel_columns('4'); } $cc = apply_filters('kadence_carousel_columns', $cc, $id); if( !empty($xxlcol) ) { $cc['xxl'] = $xxlcol; } if( !empty($xlcol) ) { $cc['xl'] = $xlcol; } if( !empty($mdcol) ) { $cc['md'] = $mdcol; } if( !empty($smcol) ) { $cc['sm'] = $smcol; } if( !empty($xscol) ) { $cc['xs'] = $xscol; } if( !empty($sscol) ) { $cc['ss'] = $sscol; } $post_type = $type; $extraargs = array(); global $kt_blog_carousel_loop; $kt_blog_carousel_loop = array( 'columns' => $columns, 'imgheight' => $imgheight ); $margin = 'rowtight'; if(empty($orderby)) { $orderby = 'date'; } if(empty($order)) { $order = 'DESC'; } $args = array( 'orderby' => $orderby, 'order' => $order, 'post_type' => $post_type, 'offset' => $offset, 'post_status' => 'publish', 'posts_per_page' => $items, 'author_name' => $author_name, ); $args = array_merge($args, $extraargs); echo '<div class="carousel_outerrim">'; echo '<div class="carouselcontainer '.esc_attr($margin).'">'; echo '<div id="kadence-carousel-'.esc_attr($id).'" class="slick-slider '.esc_attr($class).' carousel_shortcode kt-slickslider kt-content-carousel loading clearfix" data-slider-fade="false" data-slider-type="content-carousel" data-slider-anim-speed="'.esc_attr($trans_speed).'" data-slider-scroll="'.esc_attr($scroll).'" data-slider-auto="'.esc_attr($auto).'" data-slider-speed="'.esc_attr($speed).'" data-slider-xxl="'.esc_attr($cc['xxl']).'" data-slider-xl="'.esc_attr($cc['xl']).'" data-slider-md="'.esc_attr($cc['md']).'" data-slider-sm="'.esc_attr($cc['sm']).'" data-slider-xs="'.esc_attr($cc['xs']).'" data-slider-ss="'.esc_attr($cc['ss']).'">'; $loop = new WP_Query($args); if ( $loop ) : while ( $loop->have_posts() ) : $loop->the_post(); get_template_part('templates/content', 'loop-post-carousel'); endwhile; endif; wp_reset_postdata(); echo '</div>'; echo '</div>'; echo '</div> <!--Carousel-->'; } } add_shortcode('dnevnik_hudey', 'add_dnevnik_hudeyushego');In forum: Pinnacle ThemeIn reply to: Enable Large Menu – 2 Columns not 4?
In forum: Pinnacle ThemeIn reply to: Enable Large Menu – 2 Columns not 4?
In forum: Pinnacle ThemeI’d like the dropdown under ‘Services’ to be 2 columns. I’ve enabled large menu on Services in the Menu tab, but it looks like it’s displaying 4 columns?
Ref Link: *Login to see link
In forum: Ascend ThemeIn reply to: bug in page builder icon visualization
March 9, 2018 at 9:01 am #182565hi, thank you.
We have this page https://www.veritech.it/monitoraggio-e-automazione/
that has this structure: https://postimg.org/image/5g89xthjp/
and when we enter in the accordion widget we have a tab that contains another layout builder widget https://postimg.org/image/o8k51gqth/ and if we open that widget we put two columns with 2 icones https://postimg.org/image/z85cd6c4l/ … that 2 icones are displayed very little in the page as you can see…hope you can understand now…
thank you very much
-
AuthorSearch Results


