fbpx
Want To Add Extra Images Per Product Variation For Free? Download Now

variation appear in ADDITIONAL INFORMATION area and they shouldn’t

khalil barhoumi

Hi

As you see on the screenshot the variations appears on the ADDITIONAL INFORMATION area and they shouldn’t, can you please help?

Screenshot 2023-10-12 084552.png

 

Please take note that I already have this code on my CSS:
.related.products ul.variations {
display: none !important;
}

 

Thanks

Khalil Barhoumi

Golam Kibria

Hi Khalil,

We are sorry for the inconvenience.

You must have the visible on the product page option checked for those attributes.

Unchecking the checkbox will remove them from the additional information section.

Let me know if you are able to fix the issue.

Note: this is actually controlled by WooCommerce itself, we don’t have any control over them.

Thank You

khalil barhoumi

Hi Golma

this is works fine but it disabled another functionally on the website, can you please find me another solution?

Thanks

Khalil Barhoumi

Hi Golam

why this ticket closed ? I said it worked but it disabled another functionality in the website, so could you please find another solution that can help an additional script or something ?

your help will be really appreciated

Thanks

Khalil

Golam Kibria

Hi Khalil,

We are sorry for the inconvenience.

Our system automatically closes a ticket after two months.

The option you are referring to is controlled by WooCommerce itself, we don’t have any control over it.

We can help you remove the Additional Information section.

Will you be interested in that?

Thank You

Golam Kibria

Hi Khalil,

Please add the following snippet to your child theme’s functions.php file:

// Remove the additional information tab from WooCommerce Product Pages
add_filter( 'woocommerce_product_tabs', function($tabs){
unset( $tabs['additional_information'] );
return $tabs;
}, 98 );

Let me know if this helps.

Thank You