Home Forums WoodMart support forum WoodMart 7.0 beta test

WoodMart 7.0 beta test

Viewing 22 posts - 1 through 22 (of 22 total)
  • Author
    Posts
  • #407407

    Artem Temos
    Keymaster

    Dear 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

    #407412

    mohaxs
    Participant

    I hope in this version can more simplify the setting menu and more faster

    #407425

    loolootrel
    Participant

    Hello.
    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.

    #407435

    McQueen
    Participant

    Hello,

    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.

    #407440

    egemenkalecik
    Participant

    I will try

    #407742

    iamfahrig
    Participant

    CREATE WİSHLİST PROBLEM

    size 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/CocXXW6mhU

    or watch it live

    • This reply was modified 1 year, 7 months ago by Artem Temos.
    Attachments:
    You must be logged in to view attached files.
    #407910

    Fernando
    Participant

    Hello,
    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.
    #407942

    Artem Temos
    Keymaster

    Hello,

    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

    #407986

    Fernando
    Participant

    Follow the steps to simulate:

    Attachments:
    You must be logged in to view attached files.
    #408145

    Artem Temos
    Keymaster

    Hello,

    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!

    #408174

    modemradio
    Participant

    Hi

    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

    #408179

    modemradio
    Participant

    iamfahrig

    how did you manage to make such a beautiful product page with selection?

    • This reply was modified 1 year, 7 months ago by Artem Temos.
    #408180

    modemradio
    Participant

    link theme test version 7

    #408205

    WASIPLtd_Website
    Participant

    @iamfahrig

    How did you create that product page layout? It’s beautiful.

    Would love if you could share how you created it.

    Thanks

    #408212

    egemenkalecik
    Participant

    how to import beta

    #408275

    Mike
    Participant

    Hi 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 reference

    Plugin 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.
    #408494

    Melonda
    Participant

    It look nice and has many improvements.
    <p>I was asking in my tickets for features

    1. 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&#8221;

      <p>if that possible to have a table view, not just grid in the Wishlist page</p>

    • This reply was modified 1 year, 7 months ago by Melonda.
    #409784

    julian.connett
    Participant

    Hi there,
    I just noticed that the header builder is broken for my version? https://www.loom.com/share/f66d3bf5763c4572898de7c464eb1071
    Cheers
    Julian

    #409853

    Artem Temos
    Keymaster

    Hello,

    Could you please send us your admin access so we can check what is wrong there?

    Kind Regards

    #409896

    julian.connett
    Participant

    For sure. Please see attached. Look forward to hearing from you.

    #409897

    Artem Temos
    Keymaster

    It works well for us https://gyazo.com/ec2848f38167320bd25f8e5b64a62342
    Try to clear your browser cache and check again.

    #409927

    iamfahrig
    Participant

    Suggestion

    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.

    3. Hamburger Menu Examples

    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 bar

    Best Regards

    Attachments:
    You must be logged in to view attached files.

Tagged: 

Viewing 22 posts - 1 through 22 (of 22 total)

The topic ‘WoodMart 7.0 beta test’ is closed to new replies.