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
- This topic has 7 replies, 3 voices, and was last updated 7 months, 2 weeks ago by Luke Nielsen.
-
AuthorPosts
-
April 24, 2024 at 12:36 am #560043
yuda2006jpParticipantI cannot instll the woodmart theme it shows the link has expired, please investigate.
April 24, 2024 at 9:09 am #560089
Artem TemosKeymasterHello,
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 StudioApril 27, 2024 at 1:01 am #561204
yuda2006jpParticipantInstalled 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.
thanksApril 29, 2024 at 11:42 am #561607
Luke NielsenKeymasterHello,
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
April 29, 2024 at 9:34 pm #561822
yuda2006jpParticipantHi,
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.April 30, 2024 at 11:53 am #561944
Luke NielsenKeymasterHello,
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
April 30, 2024 at 10:46 pm #562264
yuda2006jpParticipantOK, 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;
}May 1, 2024 at 10:03 am #562304
Luke NielsenKeymasterHello,
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
-
AuthorPosts
- You must be logged in to create new topics. Login / Register