-
AuthorPosts
-
May 31, 2024 at 8:05 am #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:
Here is a product after adding variations:
Thank you
May 31, 2024 at 1:55 pm #1447184Hey robertbwc,
Thanks for the screenshots. Please post links to where we can see the actual elements as well.
Best regards,
RikardJune 1, 2024 at 12:30 am #1447224Hello,
The links and logins are in the “private content” section below :)
June 1, 2024 at 11:28 am #1447264Hi,
Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:
span.price ins::before { content: none; }
Best regards,
RikardJune 3, 2024 at 7:18 pm #1447580Hi Rikard,
Thank you for the suggestion, but that did not work to remove the dot.June 3, 2024 at 8:09 pm #1447586Hi,
Please try this instead:
span.price ins::before { content: none !important; }
Best regards,
RikardJune 3, 2024 at 8:13 pm #1447588That worked, thank you!
June 3, 2024 at 8:19 pm #1447590On 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.June 4, 2024 at 4:58 am #1447613Hi,
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,
IsmaelJune 4, 2024 at 7:12 pm #1448104Thank you. You have been very helpful.
June 4, 2024 at 9:08 pm #1448227 -
AuthorPosts
- You must be logged in to reply to this topic.