Okay
  Public Ticket #163753
Woocommerce Coupon Error V 2.1.2
Closed

Comments

  • David started the conversation
    Greetings, I just updated to Woocommerce V2.1.2 & Salient V3.0. After updating both, my Usage Restrictions are not allowing me to select products, product categories, etc in my Coupon section of Woocommerce. Not sure if you were aware of this issue or are currently creating a fix. Thank you, DLK
  •  1,069
    ThemeNectar replied

    Hey David!

    This is indeed a bug - if you want to sort it prior to the next release open up the file chosen.css located in nectar/tinymce/shortcode_generator/css/chosen and add this in at the top:

    .chzn-container-multi .chzn-choices {
        -moz-box-sizing: border-box;
        background-color: #FFFFFF;
        background-image: linear-gradient(#EEEEEE 1%, #FFFFFF 15%);
        border: 1px solid #AAAAAA;
        cursor: text;
        height: auto !important;
        margin: 0;
        overflow: hidden;
        padding: 0;
        position: relative;
        width: 100%;
    }
    
    .woocommerce_options_panel .chzn-container .chzn-drop {
        width: 100% !important;
    }
    
    .chzn-container-multi .chzn-choices li.search-field input[type="text"] {
        background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
        border: 0 none !important;
        border-radius: 0;
        width: 100%!important;
        box-shadow: none;
        color: #666666;
        font-family: sans-serif;
        font-size: 100%;
        height: 25px;
        line-height: normal;
        margin: 1px 0;
        outline: 0 none;
        padding: 5px;
    }

    Cheers!