Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1447156

    Hello,

    In my store home page and on product pages after you add a product and variations, if an item has a discounted price, it adds a “dot” between the original price and the reduced price. How can I get rid of this “dot”?
    Please see example of store page with dots:
    Dot-1
    Here is a product after adding variations:
    Dot-2

    Thank you

    #1447184

    Hey robertbwc,

    Thanks for the screenshots. Please post links to where we can see the actual elements as well.

    Best regards,
    Rikard

    #1447224

    Hello,

    The links and logins are in the “private content” section below :)

    #1447264

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    span.price ins::before {
      content: none; 
    }

    Best regards,
    Rikard

    #1447580

    Hi Rikard,
    Thank you for the suggestion, but that did not work to remove the dot.

    #1447586

    Hi,

    Please try this instead:

    span.price ins::before {
      content: none !important; 
    }

    Best regards,
    Rikard

    #1447588

    That worked, thank you!

    #1447590

    On another note, would you happen to know how to implement a session timeout when a customer logs into the store? We would like that when a customer logs into the store, if not active for like 15 minutes that it automatically signs them out. Currently I have this:
    add_filter( ‘wc_session_expiration’, ‘woocommerce_cart_session_expires’);
    function woocommerce_cart_session_expires() {

    //Value is 15 minutes
    return 60 * 15;

    }
    but it is not working.
    If not, no worries, I know it’s not exactly theme related.

    #1447613

    Hi,

    Thank you for the update.

    Unfortunately, this option is not available in the theme by default. You may need to use a plugin and create additional functions to track user sessions. You also have the option to hire a freelancer who can assist you with the customization. You can find freelancers who specialize in theme customization by visiting our customization page.

    If you have any other questions or require further assistance, please feel free to let us know.

    Best regards,
    Ismael

    #1448104

    Thank you. You have been very helpful.

    #1448227

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

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