Home › Forums › WoodMart – Premium Template › Features Requests
Features Requests
- This topic has 827 replies, 32 voices, and was last updated 1 week, 2 days ago by
Jeriss Cloud Center.
-
AuthorPosts
-
July 7, 2022 at 2:50 pm #389397
Jeriss Cloud CenterParticipantSimilar to the “free shipping minimum amount” setting
=> please provide us a Minimum Order Amount setting with a Notification Banner to display in the Cart / Checkout pages if this minimum order amount is not reached.
July 10, 2022 at 8:49 pm #390013
vaishalipatelParticipantHello
I am trying to import theme demo but it’s not working . It’s shows error “AJAX import error. Try to disable all external plugins and run the import again. If it doesn’t help, contact our support center for further assistance.” Please help me . can you give me email id for support
July 10, 2022 at 8:54 pm #390014
Jeriss Cloud CenterParticipantThis thread is only for Feature Request, not for support.
Create a new Support Ticket (not on the Feature Request) : https://xtemos.com/forums/
July 11, 2022 at 11:24 am #390124
Jeriss Cloud CenterParticipantPlease provide us more choices of styles for the Mobile Menu (burger icon) in the Header Builder.
For instance, there is a new trend on some major brand worldwide to display the burger icon with 2 lines instead of 3 lines. Or another example the 3 lines could be designed as cascade. See examples below.
-
This reply was modified 1 month, 1 week ago by
Jeriss Cloud Center.
Attachments:
You must be logged in to view attached files.July 11, 2022 at 11:25 am #390128
Jeriss Cloud CenterParticipantAttachments Part 2 of #390124
-
This reply was modified 1 month, 1 week ago by
Jeriss Cloud Center.
Attachments:
You must be logged in to view attached files.July 11, 2022 at 12:01 pm #390159
iamfahrigParticipantSuggestion
Automatic cart update on click
VideoCSS Snippet:
————————————————————–//Hide Update Cart Button// input[name='update_cart'] { display: none !important; } button[name='update_cart'] { display: none !important; }
————————————————————–
In the functions.php, add the following code://Automatic cart update on click // add_action( 'wp_footer', 'cart_update_qty_script' ); function cart_update_qty_script() { if (is_cart()) : ?> <script> jQuery('div.woocommerce').on('change', '.qty', function(){ jQuery("[name='update_cart']").removeAttr('disabled'); jQuery("[name='update_cart']").trigger("click"); }); </script> <?php endif; }
-
This reply was modified 1 month, 1 week ago by
iamfahrig.
-
This reply was modified 1 month, 1 week ago by
iamfahrig.
Attachments:
You must be logged in to view attached files.July 11, 2022 at 12:13 pm #390166
harshweParticipantHello, <br>
+1 to this suggestion by @fahri here-
https://xtemos.com/forums/topic/features-requests-2/page/28/#post-390159Although we ourselves have already added similar code long time back on our site. But this functionality should be implemented within the Theme itself. As it won’t require complication or interference with base codes.
Many of the woocommerce based themes on themeforest already have this, by default, if we look at their demo.
It can also be implemented as On/Off toggle too (if someone still do not prefer this way of auto-update of cart)
A kind request:
@luke, if you are reading, and if you and Team could please think on this and plan to implement.Regards
July 11, 2022 at 10:41 pm #390305
iamfahrigParticipantSuggestion
Remove product-category slug
Video
In the functions.php, add the following code:/* Code Purpose : Remove product-category slug */ add_filter('request', function( $vars ) { global $wpdb; if( ! empty( $vars['pagename'] ) || ! empty( $vars['category_name'] ) || ! empty( $vars['name'] ) || ! empty( $vars['attachment'] ) ) { $slug = ! empty( $vars['pagename'] ) ? $vars['pagename'] : ( ! empty( $vars['name'] ) ? $vars['name'] : ( !empty( $vars['category_name'] ) ? $vars['category_name'] : $vars['attachment'] ) ); $exists = $wpdb->get_var( $wpdb->prepare( "SELECT t.term_id FROM $wpdb->terms t LEFT JOIN $wpdb->term_taxonomy tt ON tt.term_id = t.term_id WHERE tt.taxonomy = 'product_cat' AND t.slug = %s" ,array( $slug ))); if( $exists ){ $old_vars = $vars; $vars = array('product_cat' => $slug ); if ( !empty( $old_vars['paged'] ) || !empty( $old_vars['page'] ) ) $vars['paged'] = ! empty( $old_vars['paged'] ) ? $old_vars['paged'] : $old_vars['page']; if ( !empty( $old_vars['orderby'] ) ) $vars['orderby'] = $old_vars['orderby']; if ( !empty( $old_vars['order'] ) ) $vars['order'] = $old_vars['order']; } } return $vars; }); add_filter('term_link', 'term_link_filter', 10, 3); function term_link_filter( $url, $term, $taxonomy ) { $url=str_replace("/./","/",$url); return $url; }
-
This reply was modified 1 month, 1 week ago by
iamfahrig.
July 16, 2022 at 2:19 pm #391437
Jeriss Cloud CenterParticipantPlease provide us a new Widget that would be a “Toogle” between White / Dark Theme
(this exist in other themes like Avada)
-
This reply was modified 1 month ago by
Jeriss Cloud Center.
Attachments:
You must be logged in to view attached files.July 16, 2022 at 2:22 pm #391440
Jeriss Cloud CenterParticipantPlease allow us to import Demos with PLACEHOLDERS rather than importing blurred images.
(for instance Avada supports both “import with images” and “import with placeholders)
Attachments:
You must be logged in to view attached files.July 16, 2022 at 2:23 pm #391442
Jeriss Cloud CenterParticipantThe cookies notification in Woodmart is too basic. Displaying just a cookies notice is NOT GDPR-compliant.
Other themes have more advanced GDPR tools included, please provide us something more advanceD.
Attachments:
You must be logged in to view attached files.July 23, 2022 at 1:02 pm #393049
markusParticipantHi,
obviously, there is only this one single post that collects all feature requests from all customers.
I have seen a feature in Shoptimizer which is really amazing and makes a big difference to usability and I assume SEO as well (as the content will be immediately visible on the page without the need of an additional click).
Shoptimizer managed to show the product-information not in tabs but one below each other. Instead of the tabs they added a sticky navigation, which is really amazing.
The content of the individual tabs is not in tabs but will always be shown just by scrolling or jumping to it.
Best watch the video:
http://recordit.co/VquWIhpAsDor watch it live
https://shoptimizerdemo.commercegurus.com/Is this something you see yourself getting into?
I think it’s also a good additional selling point for Woodmart 🤑🤑🤑
Attachments:
You must be logged in to view attached files.July 24, 2022 at 12:57 pm #393189
hamster2116ParticipantMore product gallery designs for mobile
At the moment, there are many great gallery designs for desktop, with columns and grid, but only 1-2 designs for mobile (slider). It would be great to have a stacked image layout or grid for mobile. Thanks for considering.July 28, 2022 at 4:49 pm #394140
ThoraParticipantPlease fix the bug, that AJAX results for fullscreen search in mobile header do not work anymore, when there is no fullscreen search in desktop header, as mentioned in the thread New ” Full screen 2″ header search not working.
For now a possible workaround is to add a second search element to the desktop header with fullscreen modus, that is hidden via CSS (“display: none;”).
July 30, 2022 at 4:25 am #394469
iamfahrigParticipantSuggestion
Best watch the video:
https://video.hizliresim.com/watch/CocXXW6mhUor watch it live
https://shoptimizerdemo.commercegurus.com/product/endeavour-training-sports-top/Attachments:
You must be logged in to view attached files.August 4, 2022 at 1:52 am #395382
jesusewayaParticipantHello, I have problems with the maintenance mode, I have deactivated it and it is still active, and I cannot see my main page.
August 10, 2022 at 11:25 pm #396660
Jeriss Cloud CenterParticipantPlease share publicly your roadmaps (or at least the main topics on what you have planned/decided to work on for each next release). I assume we are all very interested to know about that. Each release is always a surprize, but we’d appreciate if you could be more open with users, allowing us to decide/vote for new features.
August 10, 2022 at 11:28 pm #396661
Jeriss Cloud CenterParticipantIn the Product Page, you recently provided us a theme settings which allows us to keep all Tabs closed (description, additional information, reviews, etc…).
Currently, the options are the below :
– All closed
– First tab openedCan you please provide an additional option :
– Specific tab opened => there we would select which tab should be the one to be opened first
e.g. Reviews tab-
This reply was modified 1 week, 2 days ago by
Jeriss Cloud Center.
Attachments:
You must be logged in to view attached files. -
This reply was modified 1 month, 1 week ago by
-
AuthorPosts
Tagged: #393049
- You must be logged in to create new topics. Login / Register