Home › Forums › WoodMart support forum › Product additional information table change order
Product additional information table change order
- This topic has 23 replies, 2 voices, and was last updated 4 months, 3 weeks ago by
Hung Pham.
-
AuthorPosts
-
September 11, 2024 at 1:20 pm #596710
TessicParticipantHello, is it possible to change the order of Product additional information table?
If I want to Include or Exclude its doenst change anything.Attachments:
You must be logged in to view attached files.September 12, 2024 at 7:58 am #596843
Hung PhamKeymasterHi Tessic,
Thanks for reaching to us.
The code below will help you to reorder the tabs. Please try to add the code below in the functions.php file in your child theme.
/** * Reorder product data tabs */ add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 ); function woo_reorder_tabs( $tabs ) { $tabs['reviews']['priority'] = 33; // Reviews first $tabs['description']['priority'] = 4; // Description second $tabs['additional_information']['priority'] = 5; // Additional information third // Additional Tabs are from Theme Settings $tabs['wd_additional_tab']['priority'] = 1; $tabs['wd_additional_tab_2']['priority'] = 2; return $tabs; }
Kind Regards
September 12, 2024 at 9:50 am #596892
TessicParticipantI cant find the Theme File Editor, its missing. I tried thos steps https://nichetwins.com/wordpress-theme-editor-missing/
But its still missingAttachments:
You must be logged in to view attached files.September 12, 2024 at 9:53 am #596894
TessicParticipantNvm, I found the Problem now
September 12, 2024 at 10:01 am #596899
TessicParticipantHello, how can I remove the first two lines? I dont need them
Attachments:
You must be logged in to view attached files.September 12, 2024 at 11:02 am #596919
TessicParticipantI just saw if I use the code I get this error or the Product tabs…
Attachments:
You must be logged in to view attached files.September 12, 2024 at 11:41 am #596935
Hung PhamKeymasterHi Tessic,
To assist you in the best possible manner, I kindly ask that you please provide me temporary wp-admin info (wp-admin URL, username, password) to the Private Content area, this will allow me to thoroughly investigate and address your concerns more efficiently.
Regards,
September 12, 2024 at 11:53 am #596945
TessicParticipantThere you go
September 13, 2024 at 9:18 am #597164
Hung PhamKeymasterHi Tessic,
Please provide URL of the mentioned page, so I can take a closer look.
Regards,
September 13, 2024 at 9:45 am #597177
TessicParticipantHere you go
September 13, 2024 at 5:57 pm #597345
Hung PhamKeymasterHi Tessic,
I mean the specific url, so I can take a closer look. I tried to go through products but didn’t see above issues.
Regards,
September 16, 2024 at 9:22 am #597605
TessicParticipantYes, you dont see it cause I deleted the code so far, cause I dont wanna have errors on my site
September 16, 2024 at 12:37 pm #597684
Hung PhamKeymasterHi Tessic,
Keep us in mind for future questions and concerns, we’re always here to help!
Regards,
September 30, 2024 at 1:13 pm #601320
TessicParticipantHey, is it possible to set a date / time to look into this? Because the website is live and I cant wait long for the response, cause I dont wanna have errors on my website for to long. 🙂
October 1, 2024 at 8:10 am #601500
Hung PhamKeymasterHi Tessic,
In the last replies, I tried to go through products but didn’t see above issues.
We were unable to replicate this issue on our end. Could you kindly provide us with the specific URL or additional screenshots where this notice appears? This will help us in diagnosing and addressing the issue more effectively.
Regards,
October 1, 2024 at 11:10 am #601559
TessicParticipantHello,
as I already wrote, its not active since I got those errors and I cant keep this on the Website with errors, so even if I provide you with the data you need to to it manually and add it and then add the code.October 1, 2024 at 2:56 pm #601688
Hung PhamKeymasterHi Tessic,
I re-added above code and didn’t face any issues https://ibb.co/p4BxHpC https://ibb.co/mGtFkNG
Regards,
October 7, 2024 at 9:56 am #602929
TessicParticipantHello, where did you insert the Code? cause we got someproblems that the text is missing now, this is not what I wanted
Could you reread my question please?
October 7, 2024 at 10:02 am #602934
TessicParticipantI fuxed this Problem for me
-
This reply was modified 4 months, 4 weeks ago by
Tessic.
October 7, 2024 at 10:15 am #602937
TessicParticipantBut my Problem still remains the same, I want to delete 2 Tabs (red) from the Product additional information table
How is it possible with this code to remove them?Attachments:
You must be logged in to view attached files.October 7, 2024 at 10:25 am #602948
TessicParticipantSo I put the Product additional information table on one of the Site now to see exactly what Imformations will be shown, so I added the website, you you cann see it, I just disabled it on all platform, you just need to activate it again.
I want the thing I marked with red to be removed, and not shown on the website. is that Possible?Attachments:
You must be logged in to view attached files.October 8, 2024 at 8:10 am #603247
Hung PhamKeymasterHello Tessic,
Please add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:
.shop_attributes tr.woocommerce-product-attributes-item--attribute_vorbestellung, .shop_attributes tr.woocommerce-product-attributes-item--attribute_ausgabeformat, .shop_attributes tr.woocommerce-product-attributes-item--attribute_mabe-lbh, .shop_attributes tr.woocommerce-product-attributes-item--attribute_beigabe-produkt{ display: none; }
Regards,
October 9, 2024 at 1:20 pm #603706
TessicParticipantPerfect, this worked as I wanted
Thank you very muchOctober 9, 2024 at 4:58 pm #603780
Hung PhamKeymasterHi Tessic,
Glad to hear your issue has been resolved. Keep us in mind for future questions and concerns, we’re always here to help!
If you have a quick minute we always appreciate a 5-star rating on our theme!
https://themeforest.net/item/woodmart-woocommerce-wordpress-theme/reviews/20264492
Your feedback is the motivation to improve our work and services.
Regards,
-
This reply was modified 4 months, 4 weeks ago by
-
AuthorPosts
- You must be logged in to create new topics. Login / Register