Viewing 15 replies - 1 through 15 (of 16 total)
  • Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    What is the size value?

    Do you have template overrides? Check your system status report.

    Thread Starter mrwrongusername

    (@mrwrongusername)

    Size is added as a variation. And it works perfectly, it’s just I don’t see it in my mail but see it in WP dashboard.

    Yes I have template overrides. Should I contact theme developer then?

    Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    Can you show the report, I might be able to tell you which one does it.

    Thread Starter mrwrongusername

    (@mrwrongusername)

    Here is the report screen shoot

    https://prnt.sc/b4m7gx

    Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    No email templates in the list?

    Thread Starter mrwrongusername

    (@mrwrongusername)

    Here is the complete report from system settings, plus the screen shoot above

    ### WordPress Environment ###

    Home URL:
    Site URL:
    WC Version: 2.5.5
    Log Directory Writable: ?
    WP Version: 4.5
    WP Multisite: –
    WP Memory Limit: 256 MB
    WP Debug Mode: –
    Language: en_GB

    ### Server Environment ###

    Server Info: Apache
    PHP Version: 5.6.21
    PHP Post Max Size: 128 MB
    PHP Time Limit: 120
    PHP Max Input Vars: 3000
    SUHOSIN Installed: –
    MySQL Version: 5.6.28
    Max Upload Size: 128 MB
    Default Timezone is UTC: ?
    fsockopen/cURL: ?
    SoapClient: ?
    DOMDocument: ?
    GZip: ?
    Multibyte String: ?
    Remote Post: ?
    Remote Get: ?

    ### Database ###

    WC Database Version: 2.5.5
    :
    woocommerce_sessions: ?
    woocommerce_api_keys: ?
    woocommerce_attribute_taxonomies: ?
    woocommerce_termmeta: ?
    woocommerce_downloadable_product_permissions: ?
    woocommerce_order_items: ?
    woocommerce_order_itemmeta: ?
    woocommerce_tax_rates: ?
    woocommerce_tax_rate_locations: ?

    ### Active Plugins (12) ###

    Akismet: by Automattic – 3.1.11
    Contact Form 7: by Takayuki Miyoshi – 4.4.2
    Duplicate Post: by Enrico Battocchi – 2.6
    Easy Facebook Likebox: by Sajid Javed – 4.2.5
    Force Regenerate Thumbnails: by Pedro Elsner – 2.0.5
    Limit Login Attempts: by Johan Eenfeldt – 1.7.1
    MailChimp for WordPress Lite: by ibericode – 2.3.15
    WooCommerce Mijireh Checkout: by WooThemes – 1.0.8
    WooCommerce Social Media Share Buttons: by Toastie Studio – 1.3.0
    WooCommerce: by WooThemes – 2.5.5
    Yoast SEO: by Team Yoast – 3.2.5
    YITH WooCommerce Wishlist: by YITHEMES – 2.0.15

    ### Settings ###

    Force SSL: –
    Currency: GBP (£)
    Currency Position: left
    Thousand Separator: ,
    Decimal Separator: .
    Number of Decimals: 2

    ### API ###

    API Enabled: ?
    API Version: 3.1.0

    ### WC Pages ###

    Shop Base: #2422 – /shop/
    Basket: #2423 – /basket/
    Checkout: #2424 – /checkout/
    My Account: #2425 – /my-account/

    ### Taxonomies ###

    Product Types: external (external)
    grouped (grouped)
    simple (simple)
    variable (variable)

    ### Theme ###

    Name: DCL
    Version: 9.7
    Author URL: https://www.mediaweb.rs
    Child Theme: ? – If you’re modifying WooCommerce on a parent theme you didn’t build personally
    then we recommend using a child theme. See: How to create a child theme

    WooCommerce Support: ?

    ### Templates ###

    Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    You didn’t send the templates section ??

    Thread Starter mrwrongusername

    (@mrwrongusername)

    It’s on the screen shoot above, but here it is

    https://prnt.sc/b4m7gx

    Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    I wasn’t sure if that was cut off since I see no email overrides.

    You’ve not touched core files have you?

    If you create a new variable product, is that affected also?

    Thread Starter mrwrongusername

    (@mrwrongusername)

    Nope, I haven’t changed anything in core files.

    Yes it’s the same. I still don’t receive size inside email.

    Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    Can you share a link to this product so I can view source?

    Thread Starter mrwrongusername

    (@mrwrongusername)

    Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    Page was fine.

    Tried local and it was fine https://dl.dropboxusercontent.com/s/resyqyjacud30x4/2016-05-17%20at%2016.11.png?dl=0

    Not sure what it could be if its not customised at all. I’ve not seen the problem before.

    DO a test with twenty twelve theme active.

    Thread Starter mrwrongusername

    (@mrwrongusername)

    I have this code in my CSS but I don’t think it’s affecting WooCommerce

    /* Products */
    .woocommerce ul.products li.product .desc { background: none; text-align: center; }
    .woocommerce ul.products li.product .desc h4 { font-size: 20px; line-height: 28px; }
    .woocommerce ul.products li.product .desc .star-rating { display: inline-block; }
    
    .woocommerce div.product p.price ins, .woocommerce div.product span.price ins { font-weight: 400; }
    .woocommerce ul.products li.product .price ins { font-weight: 400; }
    .woocommerce ul.products li.product .price, .woocommerce-page ul.products li.product .price { font-size: 16px; }
    
    /* Shopping cart */
    .woocommerce .widget_shopping_cart .buttons a.button_theme { color: #000000!important; }
    .woocommerce .widget_shopping_cart .buttons a.button_theme .button_icon i { color: rgba(0, 0, 0, 0.5) !important; }

    and this line in fuctions.php

    function woo_related_products_limit() {
      global $product;
    
    	$args['posts_per_page'] = 6;
    	return $args;
    }
    add_filter( 'woocommerce_output_related_products_args', 'jk_related_products_args' );
      function jk_related_products_args( $args ) {
    	$args['posts_per_page'] = 3; // 3 related products
    	$args['columns'] = 1; // arranged in 1 columns
    	return $args;
    }
    
    ?>

    You think it might be issue?

    Plugin Contributor Mike Jolley (a11n)

    (@mikejolley)

    Neither of those look like that could affect this.

Viewing 15 replies - 1 through 15 (of 16 total)
  • The topic ‘ariation attributes not showing in new order email’ is closed to new replies.