Home Forums WoodMart support forum I cannot instll the woodmart theme it shows the link has expired

I cannot instll the woodmart theme it shows the link has expired

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #560043

    yuda2006jp
    Participant

    I cannot instll the woodmart theme it shows the link has expired, please investigate.

    #560089

    Artem Temos
    Keymaster

    Hello,

    Thank you so much for purchasing our theme and contacting our support center.

    It seems to be a server upload file size limit issue. Luckily there is an easy fix you can find here https://www.wpbeginner.com/wp-tutorials/how-to-fix-the-link-you-followed-has-expired-error-in-wordpress/

    Kind Regards
    XTemos Studio

    #561204

    yuda2006jp
    Participant

    Installed https://woodmart.xtemos.com/megamarket/ prebuilt websit.
    Love it.
    But
    Question:
    1.I am trying to enable short description on product page , it is not displaying.
    2. I am trying to enable the reviews above the price I cannot enable.
    3. on product tab, it shows reviews on the top and then custom tab and then description. How to change the order should be description first and then custom tab the review should be on the bottom.
    4. is there a way to accordion these tabs? review tab, description and custom tab.
    thanks

    #561607

    Luke Nielsen
    Keymaster

    Hello,

    1. Navigate to Layouts -> Single product and define the “Product short description” element – https://prnt.sc/-jtN7GPMmCCQ

    2. Try to define the “Product reviews” element above the price – https://prnt.sc/fuXNRb3887VC or move the “Tabs” about the price in the layouts builder.

    3. Use the code below to reorder the tabs:

    /**
     * Reorder product data tabs
     */
    add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 );
    function woo_reorder_tabs( $tabs ) {
    
    	$tabs['reviews']['priority'] = 5;			// Reviews first
    	$tabs['description']['priority'] = 10;			// Description second
    	$tabs['additional_information']['priority'] = 15;	// Additional information third
    
    	// Custom Tabs are from Product Settings
    	// $tabs['wd_custom_tab']['priority'] = 2; 
    	// $tabs['wd_custom_tab_2']['priority'] = 3;
    
    	// Additional Tabs are from Theme Settings
    	// $tabs['wd_additional_tab']['priority'] = 4;
    	// $tabs['wd_additional_tab_2']['priority'] = 5;
    
    	return $tabs;
    }

    4. Edit the “Product tabs” element in the Layouts builder and enable the Accordion style here – https://prnt.sc/MIdgWGLfvjIt

    Kind Regards

    #561822

    yuda2006jp
    Participant

    Hi,
    Thanks for the response.
    I was able to accordion the product tabs, but for each items contents it didnot display the full height, I actually have to scroll the contents(see the attached picture). How to display the whole contents without scrolling when the item is opened?

    For the custom adding code you mentioned, Where do I have to paste the code for changing tab order?

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

    Luke Nielsen
    Keymaster

    Hello,

    Try to use the code below for help:

    .single-product .wd-single-tabs .wd-scroll-content {
        max-height: 100%;
    }

    Define it in Theme Settings -> Custom CSS.

    Kind Regards

    #562264

    yuda2006jp
    Participant

    OK, it works.
    But I put the reorder tab code in global custom JS, it didnot work.
    The following codes you gave to me is not working.
    /**
    * Reorder product data tabs
    */
    add_filter( ‘woocommerce_product_tabs’, ‘woo_reorder_tabs’, 98 );
    function woo_reorder_tabs( $tabs ) {

    $tabs[‘reviews’][‘priority’] = 5; // Reviews first
    $tabs[‘description’][‘priority’] = 10; // Description second
    $tabs[‘additional_information’][‘priority’] = 15; // Additional information third

    // Custom Tabs are from Product Settings
    // $tabs[‘wd_custom_tab’][‘priority’] = 2;
    // $tabs[‘wd_custom_tab_2’][‘priority’] = 3;

    // Additional Tabs are from Theme Settings
    // $tabs[‘wd_additional_tab’][‘priority’] = 4;
    // $tabs[‘wd_additional_tab_2’][‘priority’] = 5;

    return $tabs;
    }

    #562304

    Luke Nielsen
    Keymaster

    Hello,

    The above code is not a JS code. It’s a PHP which should be pasted in the fucntions.php file of your child theme.

    Thank you for your time.

    Kind Regards

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