• Resolved Lucy

    (@kiddiestuff)


    Hello,

    I need help with the plugin, when the amount is selected I get the following error.

    .pwgc-field-container { margin-bottom: 14px; } .pwgc-label { font-weight: 600; display: block; } .pwgc-subtitle { font-size: 11px; line-height: 1.465; color: #767676; } .pwgc-input-text { width: 95%; } #pwgc-recipient-count { font-weight: 600; } #pwgc-quantity-one-per-recipient { display: none; } #pwgc-message { display: block; height: 100px; width: 95%; } .pwgc-hidden { display: none; } .woocommerce-variation-price { display: none !important; } .add_to_cart_wrapper { flex-wrap: wrap; } #pwgc-purchase-container { width: 100%; flex-basis: 100% !important; } .single_add_to_cart_button { flex: 1; } .woocommerce-variation-add-to-cart { flex-wrap: wrap !important; }

    Thank you,
    Lucy Reed
    I’m using the Pro version.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author pimwick

    (@pimwick)

    Your theme (Neve) is putting display: flex on every element inside the single_variation_wrap container with the following CSS:

    .woocommerce.single .single_variation_wrap > * {
      display: flex;
    }

    In order to fix this for the gift card plugin, perform the following steps:

    1. Log into your WordPress Admin area.
    2. Click on Appearance -> Customize -> Additional CSS
    3. Paste the following CSS into the field and save:

    .woocommerce.single .single_variation_wrap > style {
        display: none;
    }
    
    #pwgc-purchase-container {
        display: block;
    }
    Thread Starter Lucy

    (@kiddiestuff)

    Thank you very much!! That works perfectly. You have the BEST support by far of any of the plugins.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Error on purchase’ is closed to new replies.