Hello Summer Sale!
Exclusive season-opening discount on TheGem theme.
Limited time offer.

Okay
  Public Ticket #1090191
Issue in theme
Closed

Comments

  •   gsmonroe started the conversation
  •   gsmonroe replied privately
  •   gsmonroe replied privately
  • [deleted] replied

    1. Try to use child theme from attachment

    2. Sorry, not quite sure what do you mean. Can you pls provide more details with screenshots?

    3. I suppose problem will be resolved after zoom magnifier using.

  • [deleted] replied

    Child theme

  •  2
    gsmonroe replied

    Thanks for your reply and help I appreciate,  Please check screenshot for the 2nd request.

    https://tekkima.com/shop/venture-fleece/

    Also, the 3rd request is still pending, can you please help me?

    Here is the 3rd point

    When I pick color image won't change until I pick size from drop down

    please check https://tekkima.com/shop/venture-fleece/


    Thanks

  • [deleted] replied

    2. You need to add next code to functions.php file in child theme.

    function thegem_child_init() {
        remove_action('thegem_woocommerce_single_product_right', 'woocommerce_template_single_excerpt', 35);
        remove_action('thegem_woocommerce_single_product_right', 'woocommerce_template_single_add_to_cart', 45);
    } add_action('init', 'thegem_child_init'); add_action('thegem_woocommerce_single_product_right', 'woocommerce_template_single_add_to_cart', 35);
    add_action('thegem_woocommerce_single_product_right', 'woocommerce_template_single_excerpt', 45);

    3. Picture may change only when you select variation. It is default woocommerce interface.



  •  2
    gsmonroe replied

    Hello Sir,


    Thanks for your help I appreciate and one last thing, please. i want to set limit to 3 in You may interested products and also want to make it bigger, i attached screenshot please check, thanks


  • [deleted] replied

    You need to change template woocommerce/content-related-product.php.  Copy this tapmlate to child theme directory (path must be saved). Then add next string:

    $woocommerce_loop['columns'] = 3;

    after this code:

    // Store column count for displaying the grid 
    if ( empty( $woocommerce_loop['columns'] ) ) {
        $woocommerce_loop['columns'] = apply_filters('loop_shop_columns', 4);
    }