Forum Replies Created

Viewing 13 posts - 1 through 13 (of 13 total)
  • in reply to: Schema.org errors #327789
    Damsho
    Member
    Post count: 15

    Sure, thanks. I can’t find the issue on my own, since all my products have a name filled in..

    in reply to: Hide currency sign #327117
    Damsho
    Member
    Post count: 15
    This reply has been marked as private.
    in reply to: Hide currency sign #327109
    Damsho
    Member
    Post count: 15

    I attached an image.

    1. I want to hide the euro symbol on the price. (except for the checkout, cart etc)
    2. How can i align all prices at the same row?

    Attachments:
    You must be logged in to view attached files.
    in reply to: Mega Menu not saving #326649
    Damsho
    Member
    Post count: 15

    Thanks Rui, woke up middle of the night with the plugin in mind that could give a conflict.
    Just tested it this morning, and fixed it with disabling: WPB Accordion Menu or Category PRO

    in reply to: Mobile Menu Bug #325665
    Damsho
    Member
    Post count: 15

    Great thanks Ed.

    in reply to: Mobile Menu Bug #325574
    Damsho
    Member
    Post count: 15

    Yup fixed it for now. Except for the tablet view, i could not get it to work.

    in reply to: Mobile Menu Bug #325570
    Damsho
    Member
    Post count: 15

    Ok thanks. Could you let us know when this will be fixed?

    in reply to: Mobile Menu Bug #325491
    Damsho
    Member
    Post count: 15

    Hi David,

    I’m using the latest version of the theme.
    But this issn’t only a problem on my website but even on the demo site of atelier.

    I check it with chrome and used the toggle device tool. And just a few minutes ago i checked it with my iphone 6 and see the same problem.

    I attached an example again of your own demo site.

    Attachments:
    You must be logged in to view attached files.
    in reply to: 2017 Feature Request Topic #325260
    Damsho
    Member
    Post count: 15

    Would love to see a category sidebar widget like this:
    view demo accordion

    in reply to: Language Woocommerce wrong after update #321342
    Damsho
    Member
    Post count: 15
    This reply has been marked as private.
    in reply to: Out of Stock product to displayed at the end #316327
    Damsho
    Member
    Post count: 15

    Would it be possible to integrate this function in atelier theme?
    So other people can just set on or off for showing out of stock products at the end of the catalog?

    in reply to: 2017 Feature Request Topic #316201
    Damsho
    Member
    Post count: 15

    I would like an option to show the categories as seen on my attached image.
    This would be lovely for my homepage.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Out of Stock product to displayed at the end #316197
    Damsho
    Member
    Post count: 15
    /**
    * Sorting out of stock WooCommerce products - Order product collections by stock status, in-stock products first.
    */
    class iWC_Orderby_Stock_Status
    {
    public function __construct()
    {
    // Check if WooCommerce is active
    if (in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) {
    add_filter('posts_clauses', array($this, 'order_by_stock_status'), 2000);
    }
    }
    public function order_by_stock_status($posts_clauses)
    {
    global $wpdb;
    // only change query on WooCommerce loops
    if (is_woocommerce() && (is_shop() || is_product_category() || is_product_tag())) {
    $posts_clauses['join'] .= " INNER JOIN $wpdb->postmeta istockstatus ON ($wpdb->posts.ID = istockstatus.post_id) ";
    $posts_clauses['orderby'] = " istockstatus.meta_value ASC, " . $posts_clauses['orderby'];
    $posts_clauses['where'] = " AND istockstatus.meta_key = '_stock_status' AND istockstatus.meta_value <> '' " . $posts_clauses['where'];
    }
    return $posts_clauses;
    }
    }
    new iWC_Orderby_Stock_Status;
    /**
    * END - Order product collections by stock status, instock products first.
    */

    Put this code in the function.php and it will show your out of stock products at the end.

Viewing 13 posts - 1 through 13 (of 13 total)