[Resolved] Login to view prices

Home Forums Support [Resolved] Login to view prices

Home Forums Support Login to view prices

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #931112
    Georgi

    Hello,

    Is there a way to make my shop hide prices and instead show a button “Login to view prices” or something along these lines?

    Kind regards,
    Georgi

    #931134
    David
    Staff
    Customer Support

    Hi there,

    this article provides the PHP snippet required to do that:

    https://businessbloomer.com/woocommerce-hide-price-add-cart-logged-users/

    #931152
    Georgi

    Thank you, it worked.

    However “Login to see prices” is displayed as text. Do you know how it can be turned to a button instead?

    Kind regards,
    Georgi

    #931172
    David
    Staff
    Customer Support

    this line of code:

    echo '<a href="' . get_permalink(wc_get_page_id('myaccount')) . '">' . __('Login to see prices', 'theme_name') . '</a>';

    You can add a button class to the <a> tag like so:

    echo '<a class="button" href="' . get_permalink(wc_get_page_id('myaccount')) . '">' . __('Login to see prices', 'theme_name') . '</a>';

    #931178
    Georgi

    Thank you, thank you so much! <3

    #931184
    David
    Staff
    Customer Support

    Glad to be of help

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.