PATH:
home
/
centosnipponia
/
public_html
/
BAK_tradeandtraffic
/
wp-content
/
VAfiles
<?php /** * Grouped product add to cart * * This template can be overridden by copying it to yourtheme/woocommerce/single-product/add-to-cart/grouped.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 3.4.0 */ /** this is the path to this custom file /public_html/tradeandtraffic/wp-content/plugins/woocommerce/templates/single-product/add-to-cart */ defined( 'ABSPATH' ) || exit; global $product, $post; do_action( 'woocommerce_before_add_to_cart_form' ); ?> <form class="cart grouped_form" action="<?php echo esc_url( apply_filters( 'woocommerce_add_to_cart_form_action', $product->get_permalink() ) ); ?>" method="post" enctype='multipart/form-data'> <table cellspacing="0" class="woocommerce-grouped-product-list group_table" style="text-align: right; display: inline-block;"> <!--test inside//--> <thead> <tr> <th scope="col" >Ref No</th> <th scope="col">Description</th> <th scope="col">Product No</th> <th scope="col">Items</th> <th scope="col">Price</th> <th scope="col">Qty</th> <th scope="col">Status</th> </thead> </tr> <!--//--> <tbody> <?php $quantites_required = false; $previous_post = $post; $grouped_product_columns = apply_filters( 'woocommerce_grouped_product_columns', array( 'refnbr', 'label', 'productnbr', 'itemspp', 'price', 'quantity', 'status'//active disconti ), $product ); foreach ( $grouped_products as $grouped_product_child ) { $post_object = get_post( $grouped_product_child->get_id() ); $quantites_required = $quantites_required || ( $grouped_product_child->is_purchasable() && ! $grouped_product_child->has_options() ); $post = $post_object; // WPCS: override ok. setup_postdata( $post ); echo '<tr id="product-' . esc_attr( $grouped_product_child->get_id() ) . '" class="woocommerce-grouped-product-list-item ' . esc_attr( implode( ' ', wc_get_product_class( '', $grouped_product_child->get_id() ) ) ) . '">'; // Output columns for each product. foreach ( $grouped_product_columns as $column_id ) { do_action( 'woocommerce_grouped_product_list_before_' . $column_id, $grouped_product_child ); switch ( $column_id ) { case 'quantity': ob_start(); if ( ! $grouped_product_child->is_purchasable() || $grouped_product_child->has_options() || ! $grouped_product_child->is_in_stock() ) { woocommerce_template_loop_add_to_cart(); } elseif ( $grouped_product_child->is_sold_individually() ) { echo '<input type="checkbox" name="' . esc_attr( 'quantity[' . $grouped_product_child->get_id() . ']' ) . '" value="1" class="wc-grouped-product-add-to-cart-checkbox" />'; } else { do_action( 'woocommerce_before_add_to_cart_quantity' ); woocommerce_quantity_input( array( 'input_name' => 'quantity[' . $grouped_product_child->get_id() . ']', 'input_value' => isset( $_POST['quantity'][ $grouped_product_child->get_id() ] ) ? wc_stock_amount( wc_clean( wp_unslash( $_POST['quantity'][ $grouped_product_child->get_id() ] ) ) ) : 0, // WPCS: CSRF ok, input var okay, sanitization ok. 'min_value' => apply_filters( 'woocommerce_quantity_input_min', 0, $grouped_product_child ), 'max_value' => apply_filters( 'woocommerce_quantity_input_max', $grouped_product_child->get_max_purchase_quantity(), $grouped_product_child ), ) ); do_action( 'woocommerce_after_add_to_cart_quantity' ); } $value = ob_get_clean(); break; case 'label': $value = '<label for="product-' . esc_attr( $grouped_product_child->get_id() ) . '">'; $value .= $grouped_product_child->is_visible() ? $grouped_product_child->get_name() : $grouped_product_child->get_name(); $value .= '</label>'; break; case 'price': $value = $grouped_product_child->get_price_html(); //. wc_get_stock_html( $grouped_product_child ); break; case 'productnbr': $value = get_field('product_number'); break; case 'refnbr': $value =get_field('reference_number'); break; case 'itemspp': $value =get_field('items_per_pack'); break; case 'status': $value =get_field('part_status'); //elegxos gia to status switch ( $value ) { case '1': $value =" <img src=http://".$_SERVER['SERVER_NAME'] .addslashes("/wp-content/uploads/icons/outofstock.png")." title=".addslashes("Items").addslashes(get_field('part_status')-1)."> "; break; case '0': $value =" <img src=http://".$_SERVER['SERVER_NAME'] .addslashes("/wp-content/uploads/icons/outofstock.png")." title=".addslashes("Discontinued")."> "; break; default: $value =" <img src=http://".$_SERVER['SERVER_NAME'] .addslashes("/wp-content/uploads/icons/available.png")." title=".addslashes("Instock").addslashes(get_field('part_status')-1)."> "; break; } //elegxos gia to status break; default: $value = ''; break; } //update_field("erp_code", "dokimi");//ginetai update me ayton ton tropo alla otan fortonetai h selida echo '<td class="woocommerce-grouped-product-list-item__' . esc_attr( $column_id ) . '">' . apply_filters( 'woocommerce_grouped_product_list_column_' . $column_id, $value, $grouped_product_child ) . '</td>'; // WPCS: XSS ok. do_action( 'woocommerce_grouped_product_list_after_' . $column_id, $grouped_product_child ); } echo '</tr>'; } $post = $previous_post; // WPCS: override ok. setup_postdata( $post ); ?> </tbody> </table> <input type="hidden" name="add-to-cart" value="<?php echo esc_attr( $product->get_id() ); ?>" /> <?php if ( $quantites_required ) : ?> <?php do_action( 'woocommerce_before_add_to_cart_button' ); ?> <button type="submit" class="single_add_to_cart_button button alt"><?php echo esc_html( $product->single_add_to_cart_text() ); ?></button> <?php do_action( 'woocommerce_after_add_to_cart_button' ); ?> <?php endif; ?> </form> <?php do_action( 'woocommerce_after_add_to_cart_form' ); ?>
[+]
..
[-] grouped.php
[edit]
[-] theme-woo-modification.php
[edit]
[-] grouped.php-0509
[edit]
[-] functions.php
[edit]
[-] .htaccess.disabled
[edit]