New Landing How can we help? Atelier Variable products say “Choose an option”

Viewing 15 posts - 1 through 15 (of 19 total)
  • Posted in: Atelier
  • #208479
    infushka
    Member
    Post count: 60

    Hi. I have the same problem as described in this report:http://themeforest.net/item/atelier-creative-multipurpose-ecommerce-theme/11118909/comments?page=30&filter=all#comment_10758442

    I have the latest version of Themes, WP and Woo. File variable.php not in a folder.
    How can I fix this problem?
    Thank you.

    #208480
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Hi,

    Can’t find it, can you specify your issue?
    Thanks

    -Rui

    #208485
    infushka
    Member
    Post count: 60

    The question is that I do not appear variations.

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

    I’m seeing it fine, try to clear the browser cache or try in a different browser.

    https://www.dropbox.com/s/c1cmf76rpwt9br6/Screenshot%202015-08-28%2016.51.34.png?dl=0

    -Rui

    #208492
    infushka
    Member
    Post count: 60

    I’m a little more mean.
    Before the update, I had the “Choose size” “Choose a color”, etc.

    Now, just “Select the option”

    #208660
    Swift Ideas – Ed
    Keymaster
    Post count: 15264

    Hi there,

    This was changed in the WooCommerce update – you would need to ask them how to adjust it. I’ve had a look but can’t see anything on google about it.

    – Ed

    #208734
    infushka
    Member
    Post count: 60

    Support woocommerce:

    “Nothing changed in the wording in 2.4, but some logic was moved to a different file, to simplify the templates: https://github.com/woothemes/woocommerce/commit/9a7893ba23631ab523d9727e8da19db6f5f7c8f8

    Now they will need to update the templates, and make this customization in a different way, as the text is now found here: https://github.com/woothemes/woocommerce/blob/master/includes/wc-template-functions.php#L1915

    #208945
    Swift Ideas – Ed
    Keymaster
    Post count: 15264

    @infushka – If you check the default WordPress theme, it will appear exactly the same. We haven’t ever customised the output of this text.

    – Ed

    #219495
    amirb
    Member
    Post count: 13
    This reply has been marked as private.
    #219501
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Hi,

    Add the code below to your custom css option

    .woocommerce div.product form.cart .variations td.label {
        display: block!important; 
    }

    -Rui

    #219503
    amirb
    Member
    Post count: 13

    This Worked for me, many thx!

    #219508
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    No problem. Glad it’s sorted.
    -Rui

    #229961
    Ian
    Member
    Post count: 121

    Had the same problem, here is a solution that works in Woocommerce 2.4. You can add this to your functions.php file. Although I use Code Snippets to make it easier to manage things.

    /* Change Woocommerce Default Value Text */
    add_filter('gettext',  'choose_option');
    add_filter('ngettext',  'choose_option');
    
    function choose_option($translated) {
         $translated = str_ireplace('Choose an option',  'Select Size',  $translated);
         return $translated;
    }

    This will change the option across your entire site.

    #229962
    Ian
    Member
    Post count: 121

    Here is an option that works in Woocommerce 2.4. You could place it in your functions.php, but I would suggest using Code Snippets it makes things much easier to manage.

    
    /* Change Woocommerce Default Value Text */
    add_filter('gettext',  'choose_option');
    add_filter('ngettext',  'choose_option');
    
    function choose_option($translated) {
         $translated = str_ireplace('Choose an option',  'Select Size',  $translated);
         return $translated;
    }
    

    This will change the option throughout your site!

    -Ian

    #230311
    David Martin – Support
    Moderator
    Post count: 20834

    Thanks Rui.

Viewing 15 posts - 1 through 15 (of 19 total)

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

License required for one of the following items
Login and Registration Log in · Register