Forum Replies Created
-
AuthorPosts
-
July 16, 2020 at 2:55 pm in reply to: Cart price displayed on the top header row is incorrect #11409AndyKeymaster
The latest version (1.7.2) is now available with this issue fixed.
After updating the theme, you may need to clear your customer’s carts because WooCommerce caches active carts.
You can do this in your dashboard at ‘WooCommerce’ > ‘Status’ > ‘Tools’ tab, and “Clear customer sessions”.The price now also has it’s own span wrapper, so if you do still want to hide the price, use this CSS instead of the previous code:
.top-cart .cart-contents .amount { display: none; }
July 16, 2020 at 10:43 am in reply to: Cart price displayed on the top header row is incorrect #11405AndyKeymasterYou’re just missing the dot point in front of “top-cart”.
So it should be
.top-cart
and you havetop-cart
, a minor error but it makes all the difference.July 16, 2020 at 10:19 am in reply to: Cart price displayed on the top header row is incorrect #11403AndyKeymasterHi Matthew, thanks I see the problem now.
We’ll need to look into this and find out how the conditional discounts plugin works, and at which point in the WC cart process it changes the price.
I’ll get back to you when I know more.
In the meantime as a temporary solution, if you want to hide the price (the cart quantity will still be visible) so it’s not confusing for your customers, copy this CSS to ‘Customize’ > ‘Additional CSS’:
.top-cart .cart-contents { display: inline-block; width: 45px; height: 45px; overflow: hidden; }
AndyKeymasterUse this code:
#grid-loop article .entry-title { font-size: 24px; }
or to hide the titles, use this:
#grid-loop article .entry-title { display: none; }
July 16, 2020 at 8:43 am in reply to: Cart price displayed on the top header row is incorrect #11399AndyKeymasterThe price next to the cart icon in the header should be the sale price if the item is discounted.
Please take a look at our Trusted Pro demo and add a sale product to the cart. You will see the price in the header next to the cart icon will display the discounted price.
If this is not working correctly on your website, please can you let me know the URL of a discounted product on your site, and I’ll be able to take a look. Thanks in advance.
AndyKeymasterAt ‘Appearance’ > ‘Customize’ > ‘Layout Options’ > ‘Page Title Layout’, selecting the 2nd or 3rd option will take the title and description out of the large header image area, and display it in the main content area.
If you want to keep the large header image layout, but want to hide the category description, copy this code to ‘Additional CSS’:
.archive-description { display: none; }
AndyKeymasterUse this CSS for the color:
.entry-header.with-image .entry-title, .archive-header.with-image .archive-title { color: #ffffff; }
And this for the font and size:
.single .entry-header .entry-title, .page .entry-header .entry-title, .archive-header .archive-title { font-size: 4em; font-family: 'font name'; }
AndyKeymasterYou can use a shortcode instead, as this will allow you to place the categories in any order you want.
e.g. add this shortcode to your homepage content (in the page editor):
[product_categories ids="5,3,87,23" columns="4"]
The ids=”5,3,87,23″ are just an example, so replace these with your own category IDs, in any order you want.
To find out the ID of a category, go to ‘Products’ > ‘Categories’ and hover over the ‘Edit’ link for a category.
In the browser address bar you will see a link that looks something like this:
https://www.example.com/wp-admin/term.php?taxonomy=product_cat&tag_ID=42
The ID of that category is the number after tag_ID=, so that would be 42 in this example.
AndyKeymasterHi @Andresfr
This has been fixed in the latest version of the Starter Sites plugin.
Please update the plugin to version 1.3.1 and it should work correctly.
AndyKeymasterCopy this to Customize > Additional CSS:
.title-meta-wrapper { display: none; }
AndyKeymasterThe procedure to translate is different depending on how you are using the featured services section.
Are you using the “select a page” options, or are you writing your own title, sub-title and links directly into the featured services?
Please let me know which way you are doing it, and be able to show how to create additional language versions of the featured services.
AndyKeymasterTo remove it, use this CSS
.entry-footer { display: none; }
It’s fairly standard to show the post meta info such as author, categories and tags on a blog, but yeah if you just want to remove it use the CSS above.
AndyKeymasterPlease ask one question per topic, as it helps other users to find answers to the same or similar questions.
So, for example this question has the title “Changing header logo width”. You wouldn’t look at this question to find an answer about changing the font of the page title.
Thank you.
AndyKeymasterTo change the width of the logo section, add this code to ‘Appearance’ > ‘Customize’ > ‘Additional CSS’:
@media only screen and (min-width: 769px) { #masthead > .container { grid-template-columns: minmax(auto,300px) auto; } }
The key value here is 300px so change that to a different value, say 400px for example, and the logo section will max to that width.
AndyKeymasterThis should do it:
#homepage-sections #section-featured .product { float: none; margin-left: auto; margin-right: auto; }
-
AuthorPosts