Home Forums WoodMart support forum Shop -> Bottom button

Shop -> Bottom button

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #700023

    Tuomo
    Participant

    Hi there,
    I am using at the moment your Basel theme but I am trying to upgrade my pages with your woodmart theme.
    I am trying to find if you have the same Shop -> Bottom button as in Tethys theme or am I able to do this somehow with woodmart theme as well or is it only available in Tethys theme?
    And is it possible to have allways these sizes and colors open in woodmart or tethys theme?
    Now in Tethys theme you have to first click the color and then the sizes will be shown.

    I am able to show one Attribute swatch in Basel theme and I haven’t found a way to show two Attribute swatches in Woodmart theme.

    Best Regards,
    Tuomo Nurkkala

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

    Tuomo
    Participant

    And I really like your Basel theme Shop -> Product pages -> Compact.
    Is there a way to have your Tethys theme Shop -> Bottom button & Basel Product pages -> Compact with Woodmart theme?
    For example you can see here Compact page in my website:
    https://www.sukat.com/leopardi-merinovillasukat/
    I have made some changes for this Compact in functions.php:

    // Remove short description
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
    
    // Add short description to a custom product tab
    add_filter( 'woocommerce_product_tabs', 'add_custom_product_tab', 10, 1 );
    function add_custom_product_tab( $tabs ) {
    
        $custom_tab = array(
            'custom_tab' =>  array(
                'title' => __( "Short description", "woocommerce" ),
                'priority' => 12,
                'callback' => 'short_description_tab_content'
            )
        );
        return array_merge( $custom_tab, $tabs );
    }
    
    // Custom product tab content
    function short_description_tab_content() {
        global $post, $product;
    
        $short_description = apply_filters( 'woocommerce_short_description', $post->post_excerpt );
    
        if ( ! $short_description ) {
            return;
        }
    
        echo '<div class="woocommerce-product-details__short-description">' . $short_description . '</div>'; // WPCS: XSS ok.
    }
    
    /**
     * Reorder product data tabs
     */
    add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 );
    function woo_reorder_tabs( $tabs ) {
    
        //$tabs['additional_information']['priority'] = 5;
        //$tabs['tab-description']['priority'] = 15;
    	$tabs['description']['priority'] = 10;
    	//$tabs['additional_tab']['priority'] = 20;
        $tabs['reviews']['priority'] = 135;
    
    	return $tabs;
    }
    #700076

    Artem Temos
    Keymaster

    Hello,

    The three themes have distinct styles and features. Some elements are present in one theme but absent in another. Could you please clarify your specific requirements for the WoodMart theme so we can better understand your intentions?

    Kind Regards

    #700096

    Tuomo
    Participant

    Hi Artem,

    I would like to have the same look: Shop -> Bottom button as in Tethys, look at the photo (Tethys-Bottom-button.jpg).

    And your Tethys wider single product look looks good: Shop -> Single product -> Accordion Tabs, look at the photo (Tethys-Single-product-Accordion-tabs.jpg). *This looks great but it is missing the tabs in the right side of the page which I like from the Basel theme Compact product page (basel-scroll-content).

    I would like to keep all the tabs on the right side as in Basel theme Compact page, look at the photo (Basel-Shop-Product-pages-Compact.jpg). *The tabs should be closed. Only after clicking them they should be opened.

    Now I am using your Basel theme and I have to use other plugins to show sizes in the category/shop page ( https://www.sukat.com/kategoriat/ ). I can show only one Attribute swatches in Basel theme in front end.
    Here is my product page and I like how it is in some sence https://www.sukat.com/leopardi-merinovillasukat/ . The content could be little bit wider as it is in Tehtys theme (Basel div.row 1170×493.750) (Tethys div.row 1420×727.328).

    Best Regards,
    Tuomo Nurkkala

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

    Artem Temos
    Keymaster

    Hello,

    In the WoodMart Theme Settings, you can choose the “Standard button” style for the product grid. This style closely resembles the one used in the Tethys theme. Here’s a link to a screenshot: https://gyazo.com/c311ffa80c52274179f8bf82abe74749

    For the product page, you have complete control over its layout using Elementor. Follow our instructions here: https://xtemos.com/docs-topic/single-product-page-builder/

    With Elementor, you can modify the layout of the single product page to closely resemble the design of other themes.

    Kind Regards

    #700105

    Tuomo
    Participant

    Hi Artem,
    I don’t want to show the cateory text under the image “Furniture”.
    And this is missing the size Attribute swatches.
    I can show color or sizes on the attribute swatches. Same as it is in Basel theme.
    I would like to show 2 attribute swatches under the product image in the shop view.

    Okay, great! This is good news for making changes on the product page!

    Best Regards,
    Tuomo Nurkkala

    #700119

    Artem Temos
    Keymaster

    Could you please send us your admin access so we can check your current configuration and give you proper instructions?

    #700122

    Tuomo
    Participant

    I have live sites and a playground site.
    I am testing woodmart in the playground site.
    The playground site is in the really beginning stage so it doesn’t look good at all at the moment.

    Do you want the live site access or the playground access or both?

    #700130

    Tuomo
    Participant

    Here are access info for both sites.

    #700139

    Artem Temos
    Keymaster

    You can disable the category and other elements to be displayed in Theme Settings -> Product archive -> Products styles.
    Also, configure the quick shop to work on the variation click as shown on the screenshot https://gyazo.com/14961c277c7e93a429a8f5b02febb69a

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