Arcápolási tippek - Blog
Helló Világ!
Üdvözlet a WordPress-ben! Ez az első bejegyzés, amelyet lehet akár módosítani, akár törölni, aztán kezdődhet az írás, a tartalommal történő feltöltés.
.woocommerce div.product span.price del { display: inline !important; text-decoration: line-through !important; } function remove_woocommerce_price_display( $price, $product ) { // Check if the product is simple and on sale if ( $product->is_on_sale() && !$product->is_type('variable') ) { return ''; // Returns an empty string to remove the default price } return $price; } add_filter( 'woocommerce_get_price_html', 'remove_woocommerce_price_display', 10, 2 );
Üdvözlet a WordPress-ben! Ez az első bejegyzés, amelyet lehet akár módosítani, akár törölni, aztán kezdődhet az írás, a tartalommal történő feltöltés.