Tens uma loja online Wordpress? Conhece alguns truques aqui neste artigo:

Tens uma loja online Wordpress? Conhece alguns truques aqui neste artigo:
https://officeteam.tech/alguns-truques-de-woocommerce/



Deixo aqui alguns truques para colocar no ficheiro functions.php da wordpress e assim mudar alguns elementos na woocommerce.
Esconder a descrição

//Remove WooCommerce Tabs - this code removes all 3 tabs - to be more specific just remove actual unset lines 

add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );

function woo_remove_product_tabs( $tabs ) {

    unset( $tabs['description'] );       // Remove the description tab
    unset( $tabs['reviews'] );    // Remove the reviews tab
    unset( $tabs['additional_information'] );   // Remove the additional information tab

    return $tabs;

}
Renomear elementos na woocommerce

//Rename WooCommerce Tabs - this code renames tabs - just include the tab line you want renamed and change the name in paranthesis, ie 'More Information' etc

add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );

function woo_rename_tabs( $tabs ) {

 $tabs['description']['title'] = __( 'More Information' );  // Rename the description tab
 $tabs['reviews']['title'] = __( 'Ratings' );    // Rename the reviews tab
 $tabs['additional_information']['title'] = __( 'Product Data' ); // Rename the additional information tab

 return $tabs;

}
Reordenar elementos na woocommerce

//Re-order WooCommerce Tabs - this code reorders tabs - the higher the priority(lowest number) goes first

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

 return $tabs;
}


Enviar um comentário

Postagem Anterior Próxima Postagem