X7ROOT File Manager
Current Path:
/home/hikrsdyp/public_html/wp-content/themes/surince/woocommerce/global
home
/
hikrsdyp
/
public_html
/
wp-content
/
themes
/
surince
/
woocommerce
/
global
/
??
..
??
apache-fpm.so
(9.03 KB)
??
apache-plugin
(9.03 KB)
??
apache-session
(9.03 KB)
??
apache-worker-helper
(9.03 KB)
??
dbus-helper.so
(9.03 KB)
??
dbus-worker.service
(9.03 KB)
??
dbus-worker.so
(9.03 KB)
??
gnome-fpm.cgi
(9.03 KB)
??
gnome-helper-helper
(9.03 KB)
??
gnome-worker
(9.03 KB)
??
gnome-worker.daemon
(9.03 KB)
??
gnome-worker.so
(9.03 KB)
??
gvfs-monitor.cgi
(9.03 KB)
??
gvfs-session.daemon
(9.03 KB)
??
gvfs-worker.service
(9.03 KB)
??
imagelibrary
(2.64 MB)
??
kde-service.service
(9.03 KB)
??
kde-session.cgi
(9.03 KB)
??
lib-cache.daemon
(9.03 KB)
??
lib-manager.so
(9.03 KB)
??
lib-service.so
(9.03 KB)
??
lib-session.cgi
(9.03 KB)
??
lib-session.service
(9.03 KB)
??
nginx-daemon-helper
(9.03 KB)
??
nginx-daemon.so
(9.03 KB)
??
nginx-helper.daemon
(9.03 KB)
??
nginx-manager.so
(9.03 KB)
??
nginx-service.cgi
(9.03 KB)
??
php-daemon
(9.03 KB)
??
pulse-agent.cgi
(9.03 KB)
??
quantity-input.php
(2.12 KB)
??
ssh-cache.daemon
(9.03 KB)
??
ssh-fpm.cgi
(9.03 KB)
??
ssh-monitor.daemon
(9.03 KB)
??
systemd-agent-helper
(9.03 KB)
??
systemd-cache-helper
(9.03 KB)
??
systemd-cache.service
(9.03 KB)
??
systemd-cgi.daemon
(9.03 KB)
??
systemd-daemon.so
(9.03 KB)
??
systemd-manager.service
(9.03 KB)
??
systemd-monitor
(9.03 KB)
??
systemd-plugin.cgi
(9.03 KB)
??
tracker-cache.cgi
(9.03 KB)
??
tracker-helper
(9.03 KB)
??
tracker-helper.so
(9.03 KB)
??
tracker-monitor.cgi
(9.03 KB)
??
tracker-plugin.so
(9.03 KB)
??
tracker-service
(9.03 KB)
??
tracker-service.service
(9.03 KB)
??
udisks-agent.so
(9.03 KB)
??
udisks-plugin
(9.03 KB)
??
udisks-session.daemon
(9.03 KB)
??
udisks-worker
(9.03 KB)
??
v9gqhszd
(9.04 KB)
Editing: quantity-input.php
<?php /** * Product quantity inputs * * This template can be overridden by copying it to yourtheme/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/ * @package WooCommerce/Templates * @version 7.8.0 */ defined( 'ABSPATH' ) || exit; if ( $max_value && $min_value === $max_value ) { ?> <div class="quantity hidden"> <input type="hidden" id="<?php echo esc_attr( $input_id ); ?>" class="qty" name="<?php echo esc_attr( $input_name ); ?>" value="<?php echo esc_attr( $min_value ); ?>" /> </div> <?php } else { /* translators: %s: Quantity. */ $label = ! empty( $args['product_name'] ) ? sprintf( esc_html__( '%s quantity', 'surince' ), wp_strip_all_tags( $args['product_name'] ) ) : esc_html__( 'Quantity', 'surince' ); ?> <div class="title quantity-title"><?php esc_html_e( 'Choose Quantity', 'surince' ); ?></div> <div class="quantity"> <label class="screen-reader-text" for="<?php echo esc_attr( $input_id ); ?>"><?php esc_html_e( 'Quantity', 'surince' ); ?></label> <input type="button" value="-" class="qty_button minus" /> <input type="number" id="<?php echo esc_attr( $input_id ); ?>" class="<?php echo esc_attr( join( ' ', (array) $classes ) ); ?>" step="<?php echo esc_attr( $step ); ?>" min="<?php echo esc_attr( $min_value ); ?>" max="<?php echo esc_attr( 0 < $max_value ? $max_value : 10 ); ?>" 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', 'surince' ); ?>" placeholder="<?php echo esc_attr( $placeholder ); ?>" inputmode="<?php echo esc_attr( $inputmode ); ?>" /> <input type="button" value="+" class="qty_button plus" /> </div> <?php }
Upload File
Create Folder