New Landing How can we help? Themeforest Theme Support Neighborhood Cart alignment & Account links

Viewing 9 posts - 1 through 9 (of 9 total)
  • #305264
    fixius
    Member
    Post count: 16

    Hi, i have a problem with the shopping cart in mobile version and a petition.

    1. As you can see in the image, the products in the cart appears bad aligned.

    2. Is possible to delete the links (Email Customer, CareShipping Information, Returns & Exchange, FAQs) of my accout and purchase process?

    Cheers

    Attachments:
    You must be logged in to view attached files.
    #305494
    David Martin – Support
    Moderator
    Post count: 20834

    Please install and activate the supplied child theme, inside the child theme functions.php file and paste this:

    // Remove each style one by one
    add_filter( 'woocommerce_enqueue_styles', 'jk_dequeue_styles' );
    function jk_dequeue_styles( $enqueue_styles ) {
       if( is_checkout() || is_cart() ) {
          unset( $enqueue_styles['woocommerce-smallscreen'] );	// Remove the smallscreen optimisation
       }
       return $enqueue_styles;
    }

    Please add this to Theme Options => Custom CSS:

    @media (max-width: 767px) {
    body {
        padding-right: 0;
        padding-left: 0;
    }
    }
    #305529
    fixius
    Member
    Post count: 16

    Hi, thank you, the shopping cart issue is solved. But the code to delete links dont work :S

    Attachments:
    You must be logged in to view attached files.
    #305552
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Add this code to the custom css option

    .woocommerce .help-bar{
      display:none;
    }

    -Rui

    #319418
    kwlodar
    Member
    Post count: 22

    Just to ensure – if I would like to hide only Email Customer, CareShipping Information, Returns & Exchange, FAQs links but not the whole bar, I can use:

    .woocommerce .inline{
    display:none;
    }

    Right?
    Thanks for confirmation!
    Chris

    #319428
    kwlodar
    Member
    Post count: 22

    Oh, I found out that above code hided also other things, ex: Contact us on product page.
    Is there any other way to hide links marked on the screenshot, and leave the bar with telephone number?

    Attachments:
    You must be logged in to view attached files.
    #319431
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Hi,

    Add the code below to your custom css option

    .woocommerce .help-bar ul {
         display: none;
    }

    That should sort it.

    -Rui

    #319434
    kwlodar
    Member
    Post count: 22

    Perfect, works!
    Thank you.

    #319444
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Glad it’s sorted.
    -Rui

Viewing 9 posts - 1 through 9 (of 9 total)

You must be logged in and have valid license to reply to this topic.

License required for the following item
Login and Registration Log in · Register