Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #920285
woo commerce my account
Closed

Comments

  •  2
    BDS started the conversation

    hello,

    my client does not want a login system on woo commerce. Could you tell us how we can do that.

    Thank you

  •  7,051
    Oliver replied

    Hi,

    I don't fully understand you.

    If "guest checkout" is enabled in woocommerce settings your client can make order as guest.




    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •  2
    BDS replied

    yes i have disable every option related to sign in, but still on checkout page i am getting sign in tab which i dont want. ijust want three steps as billing, payment and confirmation.

    http://brijdesignstudio.com/jbr/checkout/#checkout-billing

    This is the link for better understanding

  •  7,051
    Oliver replied

    We can change checkout  template on your site if you share ftp access. Don't forget make comment private.

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •  2
    BDS replied

    can you please mail us the checkout template so we can upload it

  •  7,051
    Oliver replied

    Put file from archive to /woocommerce/checkout/ directory in theme folder.

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •  2
    BDS replied

    ok thanks.

    and also on single product page, after product title on right hand side we have an icon which takes us back on shop page , we want to mention Back to Shop page  as this icon is not understanble by everyone

  •  7,051
    Oliver replied
    Please install TheGem child theme and add next code to functions.php file:
    function thegem_child_init() {
        remove_action('thegem_woocommerce_single_product_right', 'thegem_woocommerce_back_to_shop_button', 5);
        add_action('thegem_woocommerce_single_product_right', 'thegem_child_woocommerce_back_to_shop_button', 5);
    }
    add_action('init', 'thegem_child_init'); function thegem_child_woocommerce_back_to_shop_button() {
        thegem_button(array(
            'href' => get_permalink(wc_get_page_id('shop')),
            'style' => 'outline',
            'size' => 'tiny',
            'text' => 'Back to Shop',
            'position' => 'right',
            'icon' => 'prev',
            'border_color' => thegem_get_option('button_background_basic_color'),
            'text_color' => thegem_get_option('button_background_basic_color'),
            'hover_background_color' => thegem_get_option('button_background_basic_color'),
            'hover_text_color' => thegem_get_option('button_outline_text_hover_color'),
            'extra_class' => 'back-to-shop-button'
        ), 1);
    }

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver