Having problems after Legenda v3.0.3 update

This topic has 29 replies, 2 voices, and was last updated 9 years, 2 months ago ago by Robert Hall

  • Avatar: Roberts
    Roberts
    Participant
    September 20, 2016 at 11:17

    Hello. Updated my site to v3.0.3 and some of my custom css crashed. It looks like some elements are defined different in new update

    Due to header picture I need my cart to be displayed with little background to make it more visible.

    Please see screenshot below. Upper header is before update, the other one is after v3.0.3 update
    https://failiem.lv/down.php?i=qzccqhhe&view

    28 Answers
    Avatar: Robert Hall
    Robert Hall
    Participant
    September 20, 2016 at 14:02

    Hello,

    Try to add this code in custom.css file

    .shopping-cart-widget .cart-bag {
        background: rgba(255, 255, 255, 0.6);
        margin-left: 130px;
        padding: 0 10px;
    }

    Regards,
    Robert Hall

    Avatar: Roberts
    Roberts
    Participant
    September 20, 2016 at 15:44

    Thanks a lot!

    One more thing that is affected by update is my pop-up cart sizing information (needs to be displayed in line). Please see screenshot below:
    https://failiem.lv/down.php?i=j9cxxq99&view

    Last time it was done by following code (right now this code does not affect anything)

    .shopping-cart-widget .cart-popup .products-small .product-item .variation {
        height: 30px;
    }
    .shopping-cart-widget .cart-popup .products-small .product-item .variation p {
        line-height: 20px !important;
    }
    .shopping-cart-widget .cart-popup .products-small .product-item .variation dd:nth-child(2n):after {
        padding-right: 10px;
        padding-left: 10px;
    }
    .shopping-cart-widget .cart-popup .products-small .product-item .variation dd, .shopping-cart-widget .cart-popup .products-small .product-item .variation {
       display: flex;
    }
    Avatar: Robert Hall
    Robert Hall
    Participant
    September 21, 2016 at 14:18

    Hello,

    Do you mean this section? http://prntscr.com/ckmj2s

    Please provide us with wp-admin and FTP credentials in Private Content.

    Regards,
    Robert Hall

    Avatar: Roberts
    Roberts
    Participant
    September 21, 2016 at 14:33

    Yes, these parts

    Please, contact administrator
    for this information.
    Avatar: Robert Hall
    Robert Hall
    Participant
    September 21, 2016 at 15:05

    I can’t log to the admin panel via link http://…../store/wp-admin/
    Got the following error.
    See screenshot: http://prntscr.com/ckn61l

    Regards,
    Robert Hall

    Avatar: Roberts
    Roberts
    Participant
    September 21, 2016 at 15:20

    Ok. You have to provide me with your IP address so our server administrator can grant you access

    Avatar: Robert Hall
    Robert Hall
    Participant
    September 21, 2016 at 15:51

    Let’s try to add the following code first. If this doesn’t help you then I’ll provide you the IP address to email.

    .shopping-cart-widget .widget_shopping_cart_content ul li .descr-box .variation{
        display: inline-block;
    }
    .variation-Skritusliduizmrs {
        float: left;
    }
    .shopping-cart-widget .widget_shopping_cart_content ul li .descr-box .coast{
        float: left;
        width: 100%;
    }

    Regards,
    Robert Hall

    Avatar: Roberts
    Roberts
    Participant
    September 21, 2016 at 15:56

    .variation-Skritusliduizmrs is only sizing/one variation. What I need is all my variations to display inline like it did before

    Avatar: Robert Hall
    Robert Hall
    Participant
    September 21, 2016 at 16:01

    In this case try the following code

    .shopping-cart-widget .widget_shopping_cart_content ul li .descr-box .variation{
        display: inline-block;
    }
    .shopping-cart-widget .widget_shopping_cart_content ul li .descr-box .variation dt,
    .shopping-cart-widget .widget_shopping_cart_content ul li .descr-box .variation dd {
        float: left;
    }
    .shopping-cart-widget .widget_shopping_cart_content ul li .descr-box .coast{
        float: left;
        width: 100%;
    }

    Regards,
    Robert Hall

    Avatar: Roberts
    Roberts
    Participant
    September 21, 2016 at 16:07

    Almost done! How do I get them in one line? Now <dt> seems to sit little lower than <dd>

    Avatar: Robert Hall
    Robert Hall
    Participant
    September 21, 2016 at 16:13

    As I see they are fine now. See screenshot: http://prntscr.com/cko1ni

    Please show a screenshot of the issue.

    Regards,
    Robert Hall

    Avatar: Roberts
    Roberts
    Participant
    September 21, 2016 at 16:24

    This is how I see it https://fv12.failiem.lv/down.php?i=d7wcn5dz&view&PHPSESSID=6qt6m76jglpnpgvntmtfmutjl3

    First variable is in different height, the next one is OK. Weird

    Avatar: Robert Hall
    Robert Hall
    Participant
    September 21, 2016 at 16:30

    Try to add this code and play with line-height value.

    .shopping-cart-widget .widget_shopping_cart_content ul li .descr-box .variation dd {
    line-height: 21px;
    }

    Regards,
    Robert Hall

    Avatar: Roberts
    Roberts
    Participant
    September 21, 2016 at 16:33

    The code you provided does not seem to affect anything

    Avatar: Robert Hall
    Robert Hall
    Participant
    September 21, 2016 at 16:46

    Very strange. Try the following code. This one should works.

    .shopping-cart-widget .widget_shopping_cart_content ul li .descr-box .variation dt, .shopping-cart-widget .widget_shopping_cart_content ul li .descr-box .variation dd {
        line-height: 22px;
    }

    Regards,
    Robert Hall

    Avatar: Roberts
    Roberts
    Participant
    September 21, 2016 at 16:56

    Yes now it works with line height 21px -> Thanks!

    + few more things!

    1. Found little bug regarding cart background code you provided

    .shopping-cart-widget .cart-bag {
        background: rgba(255, 255, 255, 0.6);
        margin-left: 130px;
        padding: 0 10px;
    }

    Is there a way to make it flexible? Because right now with 130px margin it works fine, but when more than 9 products are added to cart, it expands and breaks it into two lines

    2. Why is there a huge space between variable like size and quantity in this pop cart? Actually we got rid of these problems in this topic (https://www.8theme.com/topic/space-under-variable-attribute-cart/)

    3. There is again problem with pop cart “ITEM”. When one product is added it shows “1 items”, but should be “1 item” = singular

    Avatar: Robert Hall
    Robert Hall
    Participant
    September 21, 2016 at 17:31

    1) Try to replace that code with:

    
    .shopping-cart-widget .cart-bag {
        background: rgba(255, 255, 255, 0.6);
        padding: 0 10px;
    }
    .shopping-cart-widget .cart-summ .cart-summ{
        display: inline-block;
    }

    2) Use the following code

    .shopping-cart-widget .widget_shopping_cart_content ul li .descr-box .variation,
    .shopping-cart-widget .widget_shopping_cart_content ul li .descr-box .variation dd p {
        margin-bottom: 0;
    }
    .shopping-cart-widget .widget_shopping_cart_content ul li .descr-box .coast {
        margin-top: -10px;
    }

    Regards,
    Robert Hall

    Avatar: Roberts
    Roberts
    Participant
    September 22, 2016 at 08:42

    Thanks Robert, problem #1 and #2 solved

    How about #3? When one product is added to cart it shows “1 itemS”, but should be “1 item” = singular

    Avatar: Roberts
    Roberts
    Participant
    September 22, 2016 at 09:01

    +1 more

    Product quantity in product page, shopping cart etc. is not responsive. If more than 9 products are added in quantity it’s impossible to tell how much you really selected. Please see screenshot https://failiem.lv/down.php?i=ujdjjt26&view
    Code to fix it would be nice and also thing to add in next theme update for sure.

    Avatar: Robert Hall
    Robert Hall
    Participant
    September 22, 2016 at 09:21

    Hello,

    Please provide us with FTP credentials in Private Content.

    Regards,
    Robert Hall

    Avatar: Roberts
    Roberts
    Participant
    September 22, 2016 at 09:24

    See private content, IDK for sure but there also could be IP permission set. If you can not log in, I need your IP address

    Please, contact administrator
    for this information.
    Avatar: Robert Hall
    Robert Hall
    Participant
    September 22, 2016 at 09:38

    Please try it yourself. You need replace the following code in \wp-content\themes\legenda\framework\woo.php file on line 938

    <span class="badge-number"><?php echo $woocommerce->cart->cart_contents_count; _e(' items for', ETHEME_DOMAIN);?></span>
    

    with

    <span class="badge-number">
    <?php echo $woocommerce->cart->cart_contents_count; ?> <?php echo ($woocommerce->cart->cart_contents_count != 1) ? __('items', ETHEME_DOMAIN) : __('item', ETHEME_DOMAIN) ; ?></span> <span class="for-label"><?php _e('for', ETHEME_DOMAIN) ?></span>
    </span>

    Also this will be fixed in the next theme update.

    Regards,
    Robert Hall

    Avatar: Roberts
    Roberts
    Participant
    September 22, 2016 at 09:56

    Thanks Robert for the code – it did the trick!

    What about product quantity in product page, shopping cart etc.? It is not responsive. If more than 9 products are added in quantity it’s impossible to tell how much you really selected. Please see screenshot https://failiem.lv/down.php?i=ujdjjt26&view
    Code to fix it would be nice and also thing to add in next theme update for sure

    Avatar: Robert Hall
    Robert Hall
    Participant
    September 22, 2016 at 12:26

    Please clarify what device and browser you’re using?

    As you can see in the Chrome browser we can add three numbers – http://prntscr.com/ckzrzo

    Regards,
    Robert Hall

    Avatar: Roberts
    Roberts
    Participant
    September 22, 2016 at 12:56

    Problem exists in Mozilla Firefox (48.0.2)

    Avatar: Robert Hall
    Robert Hall
    Participant
    September 22, 2016 at 14:17

    Try to add the following code in custom.css

    .quantity input[type=number] {
        -moz-appearance:textfield !important;
    }

    Regards,
    Robert Hall

    Avatar: Roberts
    Roberts
    Participant
    September 22, 2016 at 14:58

    Thanks a lot, Robert, for your time and patience! At this moment everything seems to work 😉

    Avatar: Robert Hall
    Robert Hall
    Participant
    September 22, 2016 at 15:20

    You’re welcome and have a nice day!

    Regards,
    Robert Hall

  • Viewing 29 results - 1 through 29 (of 29 total)

The issue related to '‘Having problems after Legenda v3.0.3 update’' has been successfully resolved, and the topic is now closed for further responses

We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.