Home Forums WoodMart support forum Product additional information table change order

Product additional information table change order

Viewing 24 posts - 1 through 24 (of 24 total)
  • Author
    Posts
  • #596710

    Tessic
    Participant

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

    Hung Pham
    Keymaster

    Hi 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

    #596892

    Tessic
    Participant

    I cant find the Theme File Editor, its missing. I tried thos steps https://nichetwins.com/wordpress-theme-editor-missing/
    But its still missing

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

    Tessic
    Participant

    Nvm, I found the Problem now

    #596899

    Tessic
    Participant

    Hello, how can I remove the first two lines? I dont need them

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

    Tessic
    Participant

    I 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.
    #596935

    Hung Pham
    Keymaster

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

    #596945

    Tessic
    Participant

    There you go

    #597164

    Hung Pham
    Keymaster

    Hi Tessic,

    Please provide URL of the mentioned page, so I can take a closer look.

    Regards,

    #597177

    Tessic
    Participant

    Here you go

    #597345

    Hung Pham
    Keymaster

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

    #597605

    Tessic
    Participant

    Yes, you dont see it cause I deleted the code so far, cause I dont wanna have errors on my site

    #597684

    Hung Pham
    Keymaster

    Hi Tessic,

    Keep us in mind for future questions and concerns, we’re always here to help!

    Regards,

    #601320

    Tessic
    Participant

    Hey, 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. 🙂

    #601500

    Hung Pham
    Keymaster

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

    #601559

    Tessic
    Participant

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

    #601688

    Hung Pham
    Keymaster

    Hi Tessic,

    I re-added above code and didn’t face any issues https://ibb.co/p4BxHpC https://ibb.co/mGtFkNG

    Regards,

    #602929

    Tessic
    Participant

    Hello, 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?

    #602934

    Tessic
    Participant

    I fuxed this Problem for me

    • This reply was modified 4 months, 4 weeks ago by Tessic.
    #602937

    Tessic
    Participant

    But 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.
    #602948

    Tessic
    Participant

    So 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.
    #603247

    Hung Pham
    Keymaster

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

    #603706

    Tessic
    Participant

    Perfect, this worked as I wanted
    Thank you very much

    #603780

    Hung Pham
    Keymaster

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

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