Home › Forums › WoodMart support forum › Features Requests
Features Requests
- This topic has 953 replies, 294 voices, and was last updated 4 months, 1 week ago by Lucky liang.
-
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 2 years, 3 months 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 2 years, 3 months 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 2 years, 3 months ago by iamfahrig.
- This reply was modified 2 years, 3 months 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 2 years, 3 months 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 2 years, 3 months 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 2 years, 2 months ago by Jeriss Cloud Center.
Attachments:
You must be logged in to view attached files.August 21, 2022 at 9:33 am #398558
Joggy222ParticipantHello
I would like to see in the future update possibility to select specific attribute in single product layouts in wpbakery. And the best case would be with image like in attachment. Something like select custom fields to show..
Attachments:
You must be logged in to view attached files.August 21, 2022 at 1:52 pm #398574
loolootrelParticipantHello.
1 โ A strong commenting system (this is a must in your theme)
The comment system is so basic!
Implement an advanced comment system like https://recart.wpsoul.com/product/huaweip30/ ?
It has integrated functionality like:
– Comments filtering
– Whether a comment is helpful or not (thumbs up/down voting)
– Advanced rating based on custom criteria (you can set multiple criteria separately for each product) for users to vote from 10 points or 5 points (custom points)
– Pros & Cons for a commenter/purchaser/user
– Schema markup for them based on latest Google SEO guidelines
– Showing the overall scores below the add to cart buttonโฆ
etcโฆ
Please build a comment/rating system, and let us be ahead of our competitors in SEOโฆ
Besides, an advanced rating system will be a huge advantage for an online shop2 โ A variety of options for Signin/Signup/Resetpass, like a pop-up form. Not just a solid slideout panel.
3 – Redirect to the exact requested page, when user click on signup/login/resetpass
Thank you
August 28, 2022 at 12:46 am #399970
MumboMediaParticipantImage cropping in theme and elementor elements, not depending on the image sized uploaded. So images always have the perfect size.
August 30, 2022 at 3:32 pm #400463
Jeriss Cloud CenterParticipantIn WoodMart Theme > Patcher :
Please provide us a “Select All / Deselect All” to apply patches in bulk.
(in the case of the screenshot, there are 19 patches => I can’t waste time of 19 clicks for 50 websites that I manage…)
- This reply was modified 2 years, 2 months ago by Jeriss Cloud Center.
Attachments:
You must be logged in to view attached files.September 7, 2022 at 10:30 am #401914
ady66ParticipantHello,
is it possible to add this function (Add text After/Before Add To Cart button) for each product separately? Thank you.
Add text After/Before Add To Cart button
Attachments:
You must be logged in to view attached files.September 12, 2022 at 4:25 pm #402985
ThoraParticipantHello,
it would be very useful to make available Patch Updates more prominent.
For now there is only the white Patch number in a red circle behind the “Patcher” menu title under “Woodmart” admin side menu.
Maybe it is possible to add:
- The same white Patch number in a red circle behind the “Patcher” menu title under “Woodmart” โ but for the admin headerbar
and/or - Messages for admins in the backend on Dashboard and Updates pages
If there had been a clearer indication of pending patch updates, this support request on my part, for example, would not have been necessary.
September 13, 2022 at 5:29 pm #404076
axxoParticipantI would have three feature requests:
1.) Further invest into site speed optimization ๐
2.) Help to improve the search function (i.e. by enabling 3rd party support for tools like “Algolia”)
3.) On Product Listing Pages (PLP), allow to i.e. display Product Series (not just categories, product title and price). Especially in the Fashion industry it’s a common thing to group products into a “Collections” which could be shown on PLPs above the product title, category or price.Thanks again for this amazing theme.
Best
-aSeptember 19, 2022 at 4:28 pm #407029
techmindParticipantPlease add Mini Compare Bar like Mini Cart for compare button for more usefull. Compare list can show in this page and this page can come from bottom page.
September 21, 2022 at 3:59 pm #407698
Jeriss Cloud CenterParticipantA major functionality is missing in your theme regarding the Header Builder > Mobile Menu. It’s impossible to choose a menu different that the menu assigned as “mobile menu” in the WordPress Menu configuration page.
Example below, I have two menus :
– 1 menu for classic pages (home / services / contact / informations …)
– 1 menu for specific pages (service 1, service 2, service 3, service 4 …)On DESKTOP center header, I have a menu to show the classic pages => OK
On DESKTOP right header, I want a “mobile menu” button to show specific pages but that’s not possible because this “mobile menu” follows the “mobile menu” assigned in WordPress Menu => NOK
On MOBILE, I have a “mobile menu” that follows the “mobile menu” flag of the WordPress Menus => OK
Therefore, it’s impossible to choose a different menu to display in the “Mobile Menu” widget (we are forced to follow the WordPress “mobile menu” flag in the Menus configuration page).
You should allow us to choose which menu we want.
- This reply was modified 2 years, 1 month ago by Jeriss Cloud Center.
- This reply was modified 2 years, 1 month ago by Jeriss Cloud Center.
- This reply was modified 2 years, 1 month ago by Jeriss Cloud Center.
Attachments:
You must be logged in to view attached files.September 26, 2022 at 7:59 am #408498
MelondaParticipant1. customizing the header icons label position something like attached example.
2. Adding Add to Wishlist custom button
3.Remove Quantity field from the product page (Not sold individually) >> check attached I used css code to hide it, but still not getting style issue
4. a table view, not just grid in the Wishlist page
</div>
</div>
</div>September 26, 2022 at 11:17 am #408551
MikeParticipantHi as i have already write this on the beta test topic i wanted to share it here again one more time as this is the correct topic to it. i want to thank you for adding my future suggest for attribute hints/tooltips to the new beta release!! But i wanted to say that this could be implemented also for the attribute terms! to make it more advanced, on my eshop i have already implement it for attribute terms and i displaying hints for the terms too!
Here is my code so you can test it or make improvements like adding (? question mark) i made my own adding dots
because i have a lot of attribute terms and in some case many terms for same attribute so i donโt wanted to to display a lot of ? also check the screenshots for referencePlugin Code
<?php /** * Plugin Name: Web Expert Product Attribute Tooltips * Version: 1.0.0 */ if ( ! defined( 'WPINC' ) ) { die; } add_action( 'plugins_loaded', 'webexpert_product_attribute_tooltips' ); function webexpert_product_attribute_tooltips() { $attributes = wc_get_attribute_taxonomies(); foreach ($attributes as $attribute) { add_action( 'edited_pa_'.$attribute->attribute_name, 'webexpert_save_term_fields' ); add_action( 'created_pa_'.$attribute->attribute_name, 'webexpert_save_term_fields' ); add_action( 'pa_'.$attribute->attribute_name.'_add_form_fields', 'webexpert_add_attribute_fields', 10, 1 ); add_action( 'pa_'.$attribute->attribute_name.'_edit_form_fields', 'webexpert_edit_attribute_fields', 10, 2 ); } } function webexpert_add_attribute_fields($taxonomy) { ?> <tr class="form-field"> <th valign="top" scope="row"> <label for="display"><?php _e('Tooltip', ''); ?></label> </th> <td> <textarea name="tooltip" id="tag-tooltip" rows="5" cols="40"></textarea> </td> </tr> <?php } function webexpert_edit_attribute_fields($term, $taxonomy) { // get meta data value $tooltip = get_term_meta( $term->term_id, 'tooltip', true ); ?> <tr class="form-field"> <th valign="top" scope="row"> <label for="tooltip"><?php _e('Tooltip', ''); ?></label> </th> <td> <textarea name="tooltip" id="tag-tooltip" rows="5" cols="40"><?php echo esc_attr( $tooltip ); ?></textarea> </td> </tr> <?php } function webexpert_save_term_fields( $term_id ) { update_term_meta( $term_id, 'tooltip', sanitize_text_field( $_POST[ 'tooltip' ] ) ); }
Product attribute template
<?php /** * Product attributes * * Used by list_attributes() in the products class. * * This template can be overridden by copying it to yourtheme/woocommerce/single-product/product-attributes.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://docs.woocommerce.com/document/template-structure/ * @package WooCommerce\Templates * @version 3.6.0 */ defined( 'ABSPATH' ) || exit; if ( ! $product_attributes ) { return; } ?> <style> .wd-tltp .wd-tooltip-label, .tooltip{ z-index: 10000; } .wd-tltp .wd-tooltip-label, .tooltip .tooltip-inner { white-space: normal; height: auto; line-height: 17px; padding: 10px 15px!important; } .woocommerce-product-attributes-item__value .wd-tooltip {border-bottom: 1px dotted;} </style> <table class="woocommerce-product-attributes shop_attributes"> <?php foreach ( $product_attributes as $product_attribute_key => $product_attribute ) : $tooltip=[]; ?> <tr class="woocommerce-product-attributes-item woocommerce-product-attributes-item--<?php echo esc_attr( $product_attribute_key ); ?>"> <th class="woocommerce-product-attributes-item__label"><?php echo wp_kses_post( $product_attribute['label'] ); ?></th> <td class="woocommerce-product-attributes-item__value"> <?php $exploded_terms = explode(",",$product_attribute["value"]); $last_key = end(array_keys($exploded_terms)); foreach ($exploded_terms as $k=>$exploded_term) { $term=get_term_by('name',$exploded_term,str_replace('attribute_','',$product_attribute_key)); if (empty($term)) { echo $exploded_term; continue; } $tooltip=null; if (!is_wp_error($term)) { $tooltip = get_term_meta( $term->term_id, 'tooltip', true ); } ?> <span class='<?php echo (!empty($tooltip) ? "wd-tooltip" : '') ?>' <?php echo (!empty($tooltip) ? "title='$tooltip'" : ''); ?>><?php echo wp_kses_post($term->name); ?></span><?php echo $last_key!=$k ? ", " : ''; } ?> </td> </tr> <?php endforeach; ?> </table>
Attachments:
You must be logged in to view attached files.September 26, 2022 at 1:14 pm #408571 -
AuthorPosts
The topic ‘Features Requests’ is closed to new replies.
- You must be logged in to create new topics. Login / Register