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
-
November 23, 2019 at 10:13 am #158517
sourovParticipanthello,
Could you guys add a little feature, please?want the category menu to just an icon like this: https://prnt.sc/q0xy4o
I mean: https://prnt.sc/q0xzwc
November 23, 2019 at 1:29 pm #158542
horny_fungusParticipantPlease find a way to overcome “PHP Notice: wp_woocommerce_session_xxxxx cookie cannot be set” in debug log. Even if it’s completely safe as you say it’s making debugging harder because debug quickly becomes crowded with these notices making searching for real errors more difficult.
November 25, 2019 at 3:16 pm #158908
jaybeeParticipantHi
For me most important things to sale more is stress marketing options :
Free shipping Bar and cross sales in the popup basket (cf image)And in the product single page options like :
4 users are looking this product
Only 2 products left
… same thing than in the hotel websites like BookingAttachments:
You must be logged in to view attached files.November 26, 2019 at 7:07 pm #159200
horny_fungusParticipantPlease consider adding shop layout with mixed number of product per row, e.g. 3-4-3 and working with all product layouts. Like here – https://newnorth.fuelthemes.net/north-jewellery/shop/?shop_product_listing=style1
November 29, 2019 at 8:37 am #159835
horny_fungusParticipantdel
December 4, 2019 at 9:03 pm #161157
GebrHParticipantHello,
Is it possible to add product “data sources” on Woodmart?
Thanks in advance
December 5, 2019 at 3:45 pm #161359
Jeriss Cloud CenterParticipantI suggest to improve the new feature “Hide to price” in another way. Showing only the minimum price of a variable product is not fair towards the customers. Therefore, we can keep showing this minimum price and add a label “From…” thanks to the below custom code.
add_filter( 'woocommerce_variable_sale_price_html', 'wpm_variation_price_format', 10, 2 ); add_filter( 'woocommerce_variable_price_html', 'wpm_variation_price_format', 10, 2 ); function wpm_variation_price_format( $price, $product ) { // We retrieve the minimum and maximum price of the product $min_price = $product->get_variation_price( 'min', true ); $max_price = $product->get_variation_price( 'max', true ); // If prices are different, we show the custom label if ($min_price != $max_price){ $price = sprintf( __( 'From %1$s', 'woocommerce' ), wc_price( $min_price ) ); return $price.' '.get_option( 'woocommerce_price_display_suffix' ); // Else, we simply display the price } else { $price = sprintf( __( '%1$s', 'woocommerce' ), wc_price( $min_price ) ); return $price.' '.get_option( 'woocommerce_price_display_suffix' ); } }
However, this code has one issue which would then need to be fixed. If a suffix is set-up in WooCommerce settings, this code properly calls and displays it but it doesn’t show it with its default style. See the attachments.
On simple products (not impacted by this code), the suffix is in black and small size. On variable products (impacted by this code), the suffix is not respecting this style but actually should. Can you replace and integrate this code in the theme settings & fix this downside?
Thanks
Attachments:
You must be logged in to view attached files.December 6, 2019 at 9:17 pm #161657
epicsmParticipantHello
Could a user who has an account be able to create different wishlists? rather than only the one
December 8, 2019 at 8:51 am #161860
Jeriss Cloud CenterParticipantAdd a theme feature to enable/disable the image zoom on shop page, instead of having a custom css code.
/* REMOVE ZOOM ON SHOP PAGE */ body .product-grid-item .product-element-top:hover .hover-img { transform: none; -webkit-transform: none; }
December 8, 2019 at 8:53 am #161861
Jeriss Cloud CenterParticipantAdd a theme feature to remove the shadow around the brands logo on product page instead of a custom css code.
/* REMOVE SHADOW AROUND BRANDS ON PRODUCT PAGE */ .product-image-summary .woodmart-product-brands a { box-shadow: 0 0 0px rgba(0,0,0,.12); }
December 8, 2019 at 8:55 am #161862
Jeriss Cloud CenterParticipantAdd a theme setting to make the background white (or different color) when opening a product image on the product page, instead of a custom css code.
/* MAKE THE BACKGROUND WHITE WHEN ZOOMING ON PICTURES ON PRODUCT PAGE */ body .pswp__bg, body .pswp__img--placeholder--blank { background-color: white; }
December 8, 2019 at 12:59 pm #161919
Jeriss Cloud CenterParticipantAdd a theme feature to adjust easily adjust the spacing between rows on the shop page with types of devices responsiveness. Example below for grid/mobile.
/* ADD PADDING BETWEEN ROWS ON SHOP PAGE MOBILE */ body .product-grid-item { margin-bottom:50px; }
December 8, 2019 at 1:26 pm #161924
Jeriss Cloud CenterParticipantIn WooCommerce > Attributes > Modify
add the theme options available for the attributes in the “quick edit”
December 8, 2019 at 1:27 pm #161925
Jeriss Cloud CenterParticipantAdd space after the new button “attach images” on the product page, because the button is too much connected to the button “submit” and makes it not clear to users
/* ADD SPACE BELOW BUTTON ADD IMAGES ON REVIEWS */ .wd-add-img-btn-wrapper { margin-bottom: 15px }
December 9, 2019 at 6:15 pm #162190
Jeriss Cloud CenterParticipantProvide (read-only?) admin view on users’ favorites list
December 10, 2019 at 3:55 pm #162474
Jeriss Cloud CenterParticipantIn the change log, I noticed that layout changes are always merged under a single line as “CSS change” or “CSS issues”
Would be good to kee a track at least of the major change because some people may have customized CSS so it may impact us, or maybe some css may be added by default so no need for us to keep the custom css…
Thanks
December 11, 2019 at 5:24 am #162561
topmosthParticipantPlease add “Marketplace Update” like having a beautiful Dokan Vendor Page user interface, adding “Search bar” on the vendor’s page just like what saw Electro theme did on their Multivendor stores.
December 12, 2019 at 12:48 pm #162919
Jeriss Cloud CenterParticipantI’d like to re-suggest again the same proposition I made earlier because I still find not good that, by default in the theme, we have 2x the same icon for 2 totally different menus.
– 1 burger icon for menu sidebar
– 1 burger icon for widgets sidebarThis is totally misleading for users, it was already misleading for myself at the beginning! You should really consider changing the icon of the widgets sidebar by a “filter” icon because its main characteristics is not to be a “menu” but to be a “filter”. Therefore, you should frankly think about changing this icon by this one : \f0b0
Currently, as this is the only icon which I use from Font Awesome (outside of the theme default elements), I am forced to keep loading the full set of Font Awesome instead of the light version => very bad for optimization.
https://xtemos.com/forums/topic/change-filter-icon-on-mobile-shop-page/
December 12, 2019 at 3:29 pm #162977
FreeRiderNSKParticipantHello friends!
I ask you to add the function of sequential selection in the goods wilt to your wonderful design theme.
Example at the link:https://codecanyon.net/item/woocommerce-carparts-filter-plugin/6556524
What sayDecember 15, 2019 at 4:26 pm #163467
JoeParticipantI would love to see you incorporate some options in the gallery of each product similar to this: https://iconicwp.com/products/woothumbs/
In particular, the video as a part of the gallery instead of being a separate button.
December 16, 2019 at 7:45 am #163527
Jeriss Cloud CenterParticipantPlease provide the possibility to launch the lazyload asynchroniously instead of deferred.
Being fully defered is having consequence as I reported in the following ticket : https://xtemos.com/forums/topic/issue-with-the-lazzy-load-from-the-theme/
December 16, 2019 at 2:19 pm #163597
loferParticipantThere are some simple improvements that I would like to see in your theme, for example:
– on the product page, when I press the color swatch, then change the images to the images of that variation.
– in the product list by changing the color and the link to the product page having selected that color. Do you think it’s possible soon?Thank you.
December 16, 2019 at 7:13 pm #163654
Jeriss Cloud CenterParticipantIn Header Builder, add a feature to adjust the height of the search.
Example : /* HEADER - REDUCE THE HEIGHT OF SEARCH DROPDOWN ON ALL DEVICES */ .searchform input[type=text] { height: 40px } .whb-column .woodmart-mobile-search-form input[type=text] { height: 40px }
December 21, 2019 at 10:12 pm #164428
Jeriss Cloud CenterParticipantUpdate to Improvement #161359
I’ve amended the suffix in the shortcode provided. Here is the new version of the code.
/** * SHOW A CUSTOM LABEL "FROM" FOR ALL VARIABLE PRODUCTS */ add_filter( 'woocommerce_variable_sale_price_html', 'wpm_variation_price_format', 10, 2 ); add_filter( 'woocommerce_variable_price_html', 'wpm_variation_price_format', 10, 2 ); function wpm_variation_price_format( $price, $product ) { // We retrieve the minimum and maximum price of the product $min_price = $product->get_variation_price( 'min', true ); $max_price = $product->get_variation_price( 'max', true ); // If prices are different, we show the custom label if ($min_price != $max_price){ $price = sprintf( __( 'From %1$s', 'woocommerce' ), wc_price( $min_price ) ); return $price.' <small class="woocommerce-price-suffix">'.get_option( 'woocommerce_price_display_suffix' ).'</small>'; // Else, we simply display the price } else { $price = sprintf( __( '%1$s', 'woocommerce' ), wc_price( $min_price ) ); //return $price.' '.get_option( 'woocommerce_price_display_suffix' ); return $price.' <small class="woocommerce-price-suffix">'.get_option( 'woocommerce_price_display_suffix' ).'</small>'; } }
December 24, 2019 at 3:57 pm #164869
sourovParticipantif there is an option to update the premium plugins automatically it will better for us.
December 28, 2019 at 8:42 pm #165314
Jeriss Cloud CenterParticipantImplement a built-in setting to automatically update the WooCommerce cart upon changing any cart product quantity.
/** * UPDATE WOOCOMMERCE CART AUTOMATICALLY UPON QUANTITY CHANGE */ add_action( 'wp_footer', 'bbloomer_cart_refresh_update_qty' ); function bbloomer_cart_refresh_update_qty() { if (is_cart()) { ?> <script type="text/javascript"> jQuery('div.woocommerce').on('change', 'input.qty', function(){ setTimeout(function() { jQuery('[name="update_cart"]').trigger('click'); }, 100 ); }); </script> <?php } }
December 30, 2019 at 5:22 pm #165628
Jeriss Cloud CenterParticipantI have an improvement related to the lazyload system, which I documented in the video (in private section).
January 6, 2020 at 1:55 pm #166519
Jeriss Cloud CenterParticipantIf color swatch variations are available, allow displaying the variation images simply upon hover. See example : https://gevcen.tinytake.com/tt/Mzk3OTExNl8xMjIzNTY1NA
January 8, 2020 at 10:24 pm #167034
Jeriss Cloud CenterParticipantAdd “HTML Blocks” and “Slides” shortcuts in the theme dropdown on the top navigation bar.
Attachments:
You must be logged in to view attached files.January 9, 2020 at 9:05 am #167105
waynep16ParticipantSome amazing ideas and code shared here in this topic. I really hope the team are implementing these and not just ignoring them ^^^^
1. We need the ability to edit this text without adding a new plug in to translate. It should be a text field setting in the header editor
-
AuthorPosts
The topic ‘Features Requests’ is closed to new replies.
- You must be logged in to create new topics. Login / Register