First need to create a folder with "global" name on your themes/woocommerce folder. And here You need to create "quantity-input.php" file, with fallowing content: ----------------------------------------------------------------------------------------- <?php /** * Product quantity inputs with plus/minus buttons by Qubed Advertising * * Save this template to your theme as woocommerce/global/quantity-input.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @seehttps://docs.woocommerce.com/document/template-structure/ * @author WooThemes * @package WooCommerce/Templates * @version 3.3.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } if ( $max_value && $min_value === $max_value ) { ?>
We use cookies to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners who may combine it with other information that you’ve provided to them or that they’ve collected from your use of their services.
Cookies are small text files that can be used by websites to make a user's experience more efficient.
The law states that we can store cookies on your device if they are strictly necessary for the operation of this site. For all other types of cookies we need your permission. This means that cookies which are categorized as necessary, are processed based on GDPR Art. 6 (1) (f). All other cookies, meaning those from the categories preferences and marketing, are processed based on GDPR Art. 6 (1) (a) GDPR.
This site uses different types of cookies. Some cookies are placed by third party services that appear on our pages.
You can at any time change or withdraw your consent from the Cookie Declaration on our website.
Learn more about who we are, how you can contact us and how we process personal data in our Privacy Policy.
Please state your consent ID and date when you contact us regarding your consent.
Comments
this is WooCommerce default field which can not be changed unfortunately.
"global" name on your themes/woocommerce folder. And here You need to
create "quantity-input.php" file, with fallowing content:
-----------------------------------------------------------------------------------------
<?php
/**
* Product quantity inputs with plus/minus buttons by Qubed Advertising
*
* Save this template to your theme as woocommerce/global/quantity-input.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
* @see https://docs.woocommerce.com/document/template-structure/
* @author WooThemes
* @package WooCommerce/Templates
* @version 3.3.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
if ( $max_value && $min_value === $max_value ) {
?>
<input type="hidden" name="<?php echo esc_attr( $input_name );
?>" value="<?php echo esc_attr( $min_value ); ?>" />
<?php
} else {
?>
<div class="quantity">
<input class="minus" type="button" value="-">
<input type="number" step="<?php echo esc_attr( $step );
?>" min="<?php echo esc_attr( $min_value ); ?>" max="<?php
echo esc_attr( 0 < $max_value ? $max_value : '' ); ?>"
name="<?php echo esc_attr( $input_name ); ?>" value="<?php echo
esc_attr( $input_value ); ?>" title="<?php echo esc_attr_x(
'Qty', 'Product quantity input tooltip', 'woocommerce' ) ?>"
class="input-text qty text" size="4" pattern="<?php echo esc_attr(
$pattern ); ?>" inputmode="<?php echo esc_attr( $inputmode );
?>" />
<input class="plus" type="button" value="+">
</div>
<?php
}
-----------------------------------------------------------------------------------------
After add the fallowing code to theme functions.php:
------------------------------------------------------------------------------------------
// Add this to your theme's functions.php
function kia_add_script_to_footer(){
if( ! is_admin() ) { ?>
<script>
jQuery(document).ready(function($){
$('.quantity').on('click', '.plus', function(e) {
$input = $(this).prev('input.qty');
var val = parseInt($input.val());
var step = $input.attr('step');
step = 'undefined' !== typeof(step) ? parseInt(step) : 1;
$input.val( val + step ).change();
});
$('.quantity').on('click', '.minus',
function(e) {
$input = $(this).next('input.qty');
var val = parseInt($input.val());
var step = $input.attr('step');
step = 'undefined' !== typeof(step) ? parseInt(step) : 1;
if (val > 0) {
$input.val( val - step ).change();
}
});
});
</script>
<?php }
}
add_action( 'wp_footer', 'kia_add_script_to_footer' );
------------------------------------------------------------------------------------------
And finaly add to Betheme custom css this:
------------------------------------------------------------------------------------------
.woocommerce .quantity input.plus, .woocommerce .quantity input.minus {
height: 44px;
width: 43px;
padding: 0;
margin: 0;
font-weight: 400 !important;
position: relative;
font-size: 20px;
}
.woocommerce .quantity input.plus {
float: right;
border-radius: 0px;
}
.woocommerce .quantity input.minus {
float: left;
border-radius: 0px;
}
input[type="number"]{
font-size: 16px;
border-top: 1px solid #ccc;
border-right: none;
border-left: none;
border-bottom: 1px solid #ccc;
}
input[type="number"] {
-moz-appearance: textfield;
input[type=number]::-webkit-outer-spin-button{
-webkit-appearance: none;
margin: 0;
}
margin-left: 10px;
}
.woocommerce .quantity input.qty {
min-width: 50px;
}
.woocommerce .quantity .qty {
width: 1em !important;
}
.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents .quantity {
display: inline-block;
}
------------------------------------------------------------------------------------------
that's all