How can the name of the selected delivery store be displayed in the list of orders in the woocommerce?
At this point only the title of the delivery method is displayed.
Thank you very much!
]]>Thanks,
Steve brinkey
]]>add_filter( ‘storefront_loop_columns’, ‘smsexshop_pocet_sloupcu’ );
function smsexshop_pocet_sloupcu() {
return 4;}
2. Can u do an option with no button description.
like for option 20 40 100. It displays just the number in basic and dropdown poition
– less space needed and functional for all languages
manually – in plugin editor class-wppp-front-end.php u remove “products per page” from this code section:
?><option value=”<?php echo esc_attr( $value ); ?>” <?php selected( $value, $this->loop_shop_per_page() ); ?>><?php
$ppp_text = apply_filters( ‘wppp_ppp_text’, __( ‘%s products per page’, ‘woocommerce-products-per-page’ ), $value );
esc_html( printf( $ppp_text, $value == -1 ? __( ‘All’, ‘woocommerce-products-per-page’ ) : $value ) ); // Set to ‘All’ when value is -1
?></option><?php
global $woocommerce_loop;
$woocommerce_loop['columns'] = 5;
and
add_filter( 'loop_shop_columns', 'wc_loop_shop_columns', 1, 10 );
function wc_loop_shop_columns( $number_columns ) {
return 5;
}
and
function loop_columns() {
return 5; // 5 products per row
}
add_filter('loop_shop_columns', 'loop_columns', 999);
I tried this plugins: …product per page, WooCommerce Product Archive Customiser, and last version of visual composer,and woocommerce shortcode…
I tried everything but just 3 columns and 4 columns, not 5.
of course I saw a video that uses dhvc woocommerce shortcodem which I couldn’t find it.
by the way, I’ll be grateful if somebody help me…