Digital experiences for all disciplines
Forum Replies Created
-
Posted in: We hit Power Elite.
-
Sure, thanks. I can’t find the issue on my own, since all my products have a name filled in..
This reply has been marked as private.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.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 PROGreat thanks Ed.
Yup fixed it for now. Except for the tablet view, i could not get it to work.
Ok thanks. Could you let us know when this will be fixed?
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.Would love to see a category sidebar widget like this:
view demo accordionThis reply has been marked as private.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?I would like an option to show the categories as seen on my attached image.
This would be lovely for my homepage./** * 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.
-
Posted in: We hit Power Elite.