Forum Replies Created

Viewing 15 posts - 331 through 345 (of 1,124 total)
  • Author
    Posts
  • in reply to: Cart price displayed on the top header row is incorrect #11409
    Andy
    Keymaster

    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;
    }
    in reply to: Cart price displayed on the top header row is incorrect #11405
    Andy
    Keymaster

    You’re just missing the dot point in front of “top-cart”.

    So it should be .top-cart and you have top-cart, a minor error but it makes all the difference.

    in reply to: Cart price displayed on the top header row is incorrect #11403
    Andy
    Keymaster

    Hi 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;
    }
    in reply to: customizing h1 – h6 #11400
    Andy
    Keymaster

    Use this code:

    #grid-loop article .entry-title {
        font-size: 24px;
    }

    or to hide the titles, use this:

    #grid-loop article .entry-title {
        display: none;
    }
    in reply to: Cart price displayed on the top header row is incorrect #11399
    Andy
    Keymaster

    The 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.

    in reply to: Fixing an issue with “Category Descriptions” #11386
    Andy
    Keymaster

    At ‘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;
    }
    in reply to: Header text on individual pages/single blog post view #11365
    Andy
    Keymaster

    Use 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';
    }
    in reply to: categories sort #11345
    Andy
    Keymaster

    You 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.

    in reply to: Import Demo Truted #11344
    Andy
    Keymaster

    Hi @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.

    in reply to: Header Title #11327
    Andy
    Keymaster

    Copy this to Customize > Additional CSS:

    .title-meta-wrapper {
        display: none;
    }
    in reply to: Featured Services in 3 language #11323
    Andy
    Keymaster

    The 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.

    in reply to: Remove category from bottom of post page #11311
    Andy
    Keymaster

    To 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.

    in reply to: Changing header logo width #11305
    Andy
    Keymaster

    Please 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.

    in reply to: Changing header logo width #11265
    Andy
    Keymaster

    To 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.

    in reply to: Featured product in the middle (Homepage) #11255
    Andy
    Keymaster

    This should do it:

    #homepage-sections #section-featured .product {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
Viewing 15 posts - 331 through 345 (of 1,124 total)