New Landing How can we help? Atelier Cleaning the product page

Viewing 15 posts - 1 through 15 (of 19 total)
  • Posted in: Atelier
  • #208151
    micheal_w
    Member
    Post count: 498

    Hi Guys,

    trying to clean up the site from the extra things we don’t need… Could you please help me to solve the below things:

    1. How can I hide the previous < > next button on the product page (top right of the descriptuon?
    2. How can I hide the breadcrumb on the product page (right above the product name)? By doing this, the product’s name goes up a little bit…
    3. I would like to make the price’s font larger, can I do that?
    4. When a variation is selected on the product page a “reset selection” appears under the sizes… Can I hide it somehow?

    Thanks!
    Micheal

    #208200
    David Martin – Support
    Moderator
    Post count: 20834

    Hi.

    These can be achieved with a little CSS:

    1)

    .product-navigation {
        display: none;
    }

    2)

    nav.woocommerce-breadcrumb {
        display: none;
    }

    3)

    span.amount {
        font-size: 30px;
    }

    4)

    a.reset_variations {
        display: none!important;
    }

    Thanks.
    David

    #208305
    micheal_w
    Member
    Post count: 498

    Hi David,

    thank you, with the 3) I want the font size larger on the product page only, not the shop/category listing…

    Thanks!

    #208324
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Please remove this custom css code:-

    span.amount {
        font-size: 30px;
    }

    And use this new custom css code :-

    .single-product span.amount {
        font-size: 30px;
    }

    Thanks
    Mohammad

    #208344
    micheal_w
    Member
    Post count: 498
    This reply has been marked as private.
    #208348
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Hi,

    Add the code below.

    .products .product .product-details .posted_in {
        display: none;
    }

    Hope it helps.

    -Rui

    #208351
    micheal_w
    Member
    Post count: 498

    Works perfectly, thank you!

    #208358
    David Martin – Support
    Moderator
    Post count: 20834

    Great, no problem!

    -David.

    #208360
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    You most welcome.
    Thanks
    Mohammad

    #208748
    micheal_w
    Member
    Post count: 498

    Hi Guys,

    above this thread I requested your help to increase the font size of the price on the product page only.

    .single-product span.amount {
        font-size: 30px;
    }

    I just noticed that the prices are larger on the hover cart as well (see screenshot) which is not good. Can it be the normal size please?

    Thanks!

    Attachments:
    You must be logged in to view attached files.
    #209039
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    Hi

    Change it to:

    .single-product .summary-top span.amount {
        font-size: 30px;
    }

    – Kyle

    #217228
    micheal_w
    Member
    Post count: 498

    Hi Kyle, if I use your new custom css code, the previously enlarged price on the product page goes back to small (but I want to keep it large)…

    #217229
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    Sorry, this should work:

    .single-product .product-price-wrap span.amount {
      font-size: 30px;
    }

    – Kyle

    #218960
    micheal_w
    Member
    Post count: 498

    It works finally, thank you so much 🙂

    #218970
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Great thanks to Kyle 🙂 .
    Thanks
    Mohammad

Viewing 15 posts - 1 through 15 (of 19 total)

You must be logged in to reply to this topic.