Forum Replies Created

Viewing 14 replies - 16 through 29 (of 29 total)
  • Thread Starter rupomkhondaker

    (@rupomkhondaker)

    Did you check the Shop >Parts by Brand ? when i click on submenu indicator the menu close.

    Thread Starter rupomkhondaker

    (@rupomkhondaker)

    Thanks for your answer.
    After enabling “Allow Parent Links” no result. Is the child lvl menu has another child then it close automatically.

    is there any other solution for this ?

    Plugin Author rupomkhondaker

    (@rupomkhondaker)

    You need to change few css to fix the issue with your theme.

    Plugin Author rupomkhondaker

    (@rupomkhondaker)

    is it solved now ?

    Plugin Author rupomkhondaker

    (@rupomkhondaker)

    Thanks for wonderful ideas. Hope I will add those function on next version.

    Next Version will come with a lot of options hope you guys enjoy 🙂

    Thanks
    Rupom

    //if a variable product has more than 20 variations, the data will be loaded by ajax ====add this on your function.php

    function custom_wc_ajax_variation_threshold( $qty, $product ) {
    	return 10;
    }
    
    add_filter( 'woocommerce_ajax_variation_threshold', 'custom_wc_ajax_variation_threshold', 10, 2 );
    Thread Starter rupomkhondaker

    (@rupomkhondaker)

    everything works fine before update to 2.4.4

    Thread Starter rupomkhondaker

    (@rupomkhondaker)

    <?php
    /**
     * Variable product add to cart
     *
     * @author        WooThemes
     * @package       WooCommerce/Templates
     * @version       2.3.0
     */
    
    if ( ! defined( 'ABSPATH' ) ) {
        exit;
    } // Exit if accessed directly
    global $product, $post;
    
    // resize the main image of each variations
    if ( function_exists( 'yith_wcmg_is_enabled' ) && yith_wcmg_is_enabled() && !is_quick_view() ) {
        foreach ( $available_variations as $variation_id => $variation ) {
            $available_variations[$variation_id]['image_src']       = yit_image( "src=$variation[image_src]&size=shop_single&output=url", false );
            $available_variations[$variation_id]['image_magnifier'] = yit_image( "src=$variation[image_magnifier]&size=shop_magnifier&output=url", false );
        }
    }
    
    /* woocommerce subscription price fix */
    $class_subscription = "";
    if ( $product->product_type == 'variable-subscription' ) {
        $class_subscription = "subscription";
        $woo_option         = get_option( 'woocommerce_subscriptions_add_to_cart_button_text' );
        $label              = $woo_option ? $woo_option : apply_filters( 'subscription_add_to_cart_text', __( 'Sign Up Now', 'yit' ) );
    }
    else {
        $label = apply_filters( 'single_add_to_cart_text',yit_icl_translate( "theme", "yit", "add_to_cart_text", yit_get_option( 'add-to-cart-text' ) ) , $product->product_type );
    }
    
    ?>
    
    <?php do_action( 'woocommerce_before_add_to_cart_form' ); ?>
    
    <form action="<?php echo esc_url( $product->add_to_cart_url() ); ?>" class="variations_form cart group" method="post" enctype='multipart/form-data' data-product_id="<?php echo $post->ID; ?>" data-product_variations="<?php echo esc_attr( json_encode( $available_variations ) ) ?>">
    
        <?php if ( ! empty( $available_variations ) ) : ?>
    
        <?php if ( is_shop_enabled() && yit_get_option( 'shop-detail-add-to-cart' ) && yit_product_form_position_is( 'in-sidebar' ) ) : ?>
            <div class="quantity-wrap group">
                <label><?php _e( 'Quantity', 'yit' ) ?></label>
                <?php woocommerce_quantity_input(); ?>
            </div>
        <?php endif; ?>
    
        <div class="variations">
            <?php $loop = 0; foreach ( $attributes as $name => $options ) : $loop ++; ?>
                <label for="<?php echo sanitize_title( $name ); ?>"><?php echo wc_attribute_label( $name ); ?></label>
                <div class="select-wrapper">
                    <select id="<?php echo esc_attr( sanitize_title( $name ) ); ?>" name="attribute_<?php echo sanitize_title( $name ); ?>" data-attribute_name="attribute_<?php echo sanitize_title( $name ); ?>">
                        <option value=""><?php echo __( 'Choose an option', 'yit' ) ?>&hellip;</option>
                        <?php
                        if ( is_array( $options ) ) {
    
                            if ( isset( $_REQUEST[ 'attribute_' . sanitize_title( $name ) ] ) ) {
                                $selected_value = $_REQUEST[ 'attribute_' . sanitize_title( $name ) ];
                            } elseif ( isset( $selected_attributes[ sanitize_title( $name ) ] ) ) {
                                $selected_value = $selected_attributes[ sanitize_title( $name ) ];
                            } else {
                                $selected_value = '';
                            }
    
                            // Get terms if this is a taxonomy - ordered
                            if ( taxonomy_exists( $name ) ) {
    
                                $terms = wc_get_product_terms( $post->ID, $name, array( 'fields' => 'all' ) );
    
                                foreach ( $terms as $term ) {
                                    if ( ! in_array( $term->slug, $options ) ) {
                                        continue;
                                    }
                                    echo '<option value="' . esc_attr( $term->slug ) . '" ' . selected( sanitize_title( $selected_value ), sanitize_title( $term->slug ), false ) . '>' . apply_filters( 'woocommerce_variation_option_name', $term->name ) . '</option>';
                                }
    
                            } else {
    
                                foreach ( $options as $option ) {
                                    echo '<option value="' . esc_attr( sanitize_title( $option ) ) . '" ' . selected( sanitize_title( $selected_value ), sanitize_title( $option ), false ) . '>' . esc_html( apply_filters( 'woocommerce_variation_option_name', $option ) ) . '</option>';
                                }
    
                            }
                        }
                        ?>
                    </select>
                </div>
            <?php endforeach;?><?php
            if ( yit_product_form_position_is( 'in-sidebar' ) && sizeof( $attributes ) == $loop ) {
                echo '<a class="reset_variations" href="#reset">' . __( 'Clear selection', 'yit' ) . '</a>';
            }
    
            ?>
        </div>
    
        <?php do_action( 'woocommerce_before_add_to_cart_button' ); ?>
    
        <div class="single_variation_wrap" style="display:none;">
            <?php do_action( 'woocommerce_before_single_variation' ); ?>
    
            <div class="single_variation <?php echo $class_subscription ?>"></div>
    
            <?php if ( $class_subscription != "" ): ?>
                <div class="clear"></div>
            <?php endif; ?>
    
            <div class="variations_button <?php echo $class_subscription ?>">
                <?php if ( yit_product_form_position_is( 'in-content' ) ) :
                    echo '<a class="reset_variations" href="#reset">' . __( 'Clear selection', 'yit' ) . '</a>';
                    ?>
                    <div class="quantity-wrap group">
                        <label><?php _e( 'Quantity', 'yit' ) ?></label>
                        <?php woocommerce_quantity_input(); ?>
    
                    </div>
                <?php endif; ?>
                <button type="submit" class="single_add_to_cart_button button alt"><?php echo $label ?></button>
            </div>
            <input type="hidden" name="add-to-cart" value="<?php echo $product->id; ?>" />
            <input type="hidden" name="product_id" value="<?php echo esc_attr( $post->ID ); ?>" />
            <input type="hidden" name="variation_id" value="" />
    
            <?php do_action( 'woocommerce_after_single_variation' ); ?>
        </div>
    
        <?php do_action( 'woocommerce_after_add_to_cart_button' ); ?>
    
        <?php else : ?>
    
                <p class="stock out-of-stock"><?php _e( 'This product is currently out of stock and unavailable.', 'yit' ); ?></p>
    
        <?php endif; ?>
    
    </form>
    
    <div class="clear"></div>
    
    <?php do_action( 'woocommerce_after_add_to_cart_form' ); ?>

    This is the code for variable.php

    Thread Starter rupomkhondaker

    (@rupomkhondaker)

    I also have the same problem

    Is there any way to check the product has variation something like

    <?php
    If (product has variation) {
    echo"This Product have Variations ";
    }else{
    echo"This Product does not have Variations ";
    } ?>

    I try this but not Work for me. How to check the product has variation or not?

    <?php
    					global $post,$woocommerce,$product;
    					$variations = $product->get_available_variations();
    					if( $variations == true){
    					  echo apply_filters( 'woocommerce_widget_cart_item_quantity', '<span class="quantity">' . sprintf( $product_price ) . '</span>', $cart_item, $cart_item_key );
    					} else{
    					  echo apply_filters( 'woocommerce_widget_cart_item_quantity', '<span class="quantity">' . sprintf( '%s &times; %s', $cart_item['quantity'], $product_price ) . '</span>', $cart_item, $cart_item_key );
    					}
    					?>
    Thread Starter rupomkhondaker

    (@rupomkhondaker)

    I have Updated the $subtitles_allowed_tags something like bellow and It works fine…….. 🙂

    $subtitles_allowed_tags = array(
    ‘i’ => array(), // italicized text
    ’em’ => array(), // emphasized text
    ‘strong’ => array(), // strong text
    ‘a’ => array( // Link
    ‘href’ => array(),// Link URL
    ‘title’ => array(), //Link Title
    ‘target’ => array() //Link target
    ),
    );

    Plugin Author rupomkhondaker

    (@rupomkhondaker)

    Hi,

    Thank you for your valuable review. As per your comment I have release a new version 1.0.4 which support all version of woo-commerce. You faced that problem because you might use older version of woocommerce.

    Regards,
    Rupom

Viewing 14 replies - 16 through 29 (of 29 total)