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 - 1,441 through 1,460 (of 3,937 total)
  • Author
    Search Results
  • #183855
    This reply has been marked as private.
    #183756

    Hello,

    I have elected to display my portfolio image grid as four columns in desktop view.

    I need to display the portfolio grid in 2 or 3 columns in mobile/responsive mode rather than just the single column, how can I accomplish this?

    Thanks so much.

    #183619

    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

    #183320

    Hello 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.

    #183302

    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:

    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:

    Any assistance greatly appreciated, as always!

    Andrew.

    #183295

    Hey,

    this CSS should force the products to display in two columns in mobile:

    @media (max-width: 400px) {
    .kad_product {
        width: 50%;
        float: left;
        }
    }

    Try adding to Theme Options> Custom CSS, and let me know if it works.

    -Kevin

    #183138

    If 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

    #183104

    Hi 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 Forums

    In reply to: pricing table mess up

    #183095

    Looks 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;
    }
    #183071

    Hey,

    You can easily configure columns by clicking the “Extra Shortcodes” button at the top of your wordpress editor. Just click the shortcode, and configure the options.

    Let me know if that works for you.

    -Kevin

    #183067

    Hello,

    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

    #183038

    Try setting the number of columns to 2. Like this: [portfolio_types columns=2] Does that work for you?

    Hannah

    #183025

    Hi,
    If you’re no wanting the carousel effect, I would recommend using the home widget area and add the layout builder widget. Create a row with 4 columns, and add a virtue: image widget to each (from Appearance > Widgets). Would that work for you?

    Hannah

    #183021

    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!! 🙂

    #182941

    The 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 Theme

    In reply to: carousel shortcode

    #182839

    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');
    #182641

    Yes, the menu parent and all of the child items are set to “Number of Columns” = 2

    But the menu is showing as four..

    #182640

    Hey,
    Have you set the number of columns to be 2 in the menu item dropdown from Appearance > Menus?

    Hannah

    #182639

    I’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:

    #182565

    hi, 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

Viewing 20 results - 1,441 through 1,460 (of 3,937 total)