Home › Forums › WoodMart support forum › WoodMart 7.0 beta test
WoodMart 7.0 beta test
- This topic has 21 replies, 12 voices, and was last updated 2 years, 3 months ago by iamfahrig.
-
AuthorPosts
-
September 20, 2022 at 5:17 pm #407407
Artem TemosKeymasterDear community,
This thread is dedicated to our new WoodMart 7 update which is almost complete. This new version has a new UI for all backend pages, improved Theme Settings interface, and new eCommerce features like linked variations, frequently bought together, and a lot more.
We would highly appreciate it if you install our new update and share your feedback. But we don’t recommend you to do this on your live website. You better create a staging environment for this.Here is a link where you can find a new version zip file and a full changelog document https://bit.ly/3xEkKUy
Kind Regards
September 20, 2022 at 5:41 pm #407412
mohaxsParticipantI hope in this version can more simplify the setting menu and more faster
September 20, 2022 at 7:01 pm #407425
loolootrelParticipantHello.
What you did in version 7 is awesome and truly appreciated, however there is a dedicated topic for FEATURE REQUEST pinned in forum which seems totally forgotten and ignored. You only read the feature requests if they are being posted as a NEW TOPIC.
I know you value your customers and our reviews, so please go ahead, check and pick customers feature requests for future implementation. Some of those ideas are remarkably awesome.
Regards.September 20, 2022 at 8:00 pm #407435
McQueenParticipantHello,
It looks like a major release…
I am interested in testing it, is it possible to upgrade from version 6.7 to version 7? Any special instructions?
I look forward to hearing from you. Thank you.
September 20, 2022 at 8:50 pm #407440
egemenkalecikParticipantI will try
September 21, 2022 at 5:36 pm #407742
iamfahrigParticipantsize list format not available in single product screen
Suggestion
On the edit page, I suggest adding an option to edit the account page.
The option to register with social media can be added to the registration screen.
Best watch the video:
https://video.hizliresim.com/watch/CocXXW6mhUor watch it live
- This reply was modified 2 years, 3 months ago by Artem Temos.
Attachments:
You must be logged in to view attached files.September 22, 2022 at 1:51 pm #407910
FernandoParticipantHello,
There is an error showing the multiple wishlists popup when we are logged in and the multiple wishlists is on active and more than one. The popup content appears below the footer on multiple pages.
See image.Attachments:
You must be logged in to view attached files.September 22, 2022 at 3:19 pm #407942
Artem TemosKeymasterHello,
Thank you for your feedback!
@loolootrel
Don’t worry, we take into account all feature requests posted by our customers no matter if they write them in comments, emails, feature requests thread, or separate topics.@McQueen
Just install it as a regular update. You don’t need to do any special steps.@iamfahrig
Thank you for your recommendations.
@Fernando
Could you please send us a link to your website? We can’t reproduce it on our website.Kind Regards
September 22, 2022 at 10:03 pm #407986
FernandoParticipantFollow the steps to simulate:
Attachments:
You must be logged in to view attached files.September 23, 2022 at 3:52 pm #408145
Artem TemosKeymasterHello,
Thank you. We have fixed the wishlist issue.
Dear customers, we would highly appreciate it if you can share your staging website URLs here (using Private content field) so we can take a look from our end and see if the update works well.
Thank you in advance!
September 23, 2022 at 5:22 pm #408174
modemradioParticipantHi
it would be good to add this function to woodmart (this would be the first theme to offer it)
Deleting images when deleting a woocommerce product
here is the relevant thread
https://wordpress.org/support/topic/image-product-delect-for-server/thank you
September 23, 2022 at 5:34 pm #408179
modemradioParticipantiamfahrig
how did you manage to make such a beautiful product page with selection?
- This reply was modified 2 years, 3 months ago by Artem Temos.
September 23, 2022 at 5:37 pm #408180
modemradioParticipantlink theme test version 7
September 23, 2022 at 10:45 pm #408205
WASIPLtd_WebsiteParticipant@iamfahrig
How did you create that product page layout? It’s beautiful.
Would love if you could share how you created it.
Thanks
September 24, 2022 at 12:02 am #408212
egemenkalecikParticipanthow to import beta
September 24, 2022 at 11:54 am #408275
MikeParticipantHi i have installed the beta version and i want to say that im pretty impressed, also i want to thank you for adding my future suggest for the attributes hints!! 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 7:11 am #408494
MelondaParticipantIt look nice and has many improvements.
<p>I was asking in my tickets for features- 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
-
<img class=”wp-image-13853″ src=”https://woocommerce-813894-2819537.cloudwaysapps.com/wp-content/uploads/2022/09/Screenshot_361-1.png”
<p>if that possible to have a table view, not just grid in the Wishlist page</p>
- This reply was modified 2 years, 3 months ago by Melonda.
October 2, 2022 at 12:20 pm #409784
julian.connettParticipantHi there,
I just noticed that the header builder is broken for my version? https://www.loom.com/share/f66d3bf5763c4572898de7c464eb1071
Cheers
JulianOctober 3, 2022 at 9:15 am #409853
Artem TemosKeymasterHello,
Could you please send us your admin access so we can check what is wrong there?
Kind Regards
October 3, 2022 at 11:37 am #409896
julian.connettParticipantFor sure. Please see attached. Look forward to hearing from you.
October 3, 2022 at 11:41 am #409897
Artem TemosKeymasterIt works well for us https://gyazo.com/ec2848f38167320bd25f8e5b64a62342
Try to clear your browser cache and check again.October 3, 2022 at 1:28 pm #409927
iamfahrigParticipantSuggestion
1. Sweet Alert
2. An option that can use both at the same time can be added to the action of clicking on the main image, which is available on most public sites.
4. The style on this website would be really nice to have a non youtube video player
4. There are some bugs including PageSpeed zero installation. I recommend minimizing these bugs in the v.7.0.0 update. Note: Values are not displayed on PageSpeed screen in v.7.0.0 beta update, error is encountered.
5. Another variant can be added to the cookie law infobox, on mobile it closes the menus, it doesn’t look good.
6. Double slider Sign in/up Form – Desktop Only
7. Buttons can be added in this style
8. Mobile bottom navigation barBest Regards
Attachments:
You must be logged in to view attached files. -
AuthorPosts
Tagged: suggestion
The topic ‘WoodMart 7.0 beta test’ is closed to new replies.
- You must be logged in to create new topics. Login / Register