Hi,
1/ where to change the title “Additional Information”?
Please open to edit sf-woocommerce.php at /dante/swift-framework/. Here you can change this text.
2/ how to make the toggle is open to reload the page?
Please open to edit sf-woocommerce.php at /dante/swift-framework/.
Find this code
<div id="additional-information" class="accordion-body collapse">
Change with
<div id="additional-information" class="accordion-body in">
3/ how to remove “FREE” on the image product?
add_filter( 'woocommerce_variable_free_price_html', 'hide_free_price_notice' );
add_filter( 'woocommerce_free_price_html','hide_free_price_notice' );
add_filter( 'woocommerce_variation_free_price_html', 'hide_free_price_notice' );
function hide_free_price_notice( $price ) {
return '';
}
Thanks