This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying my Blockstack ID is secured with the address 1MK7NHe5i2AhTxDUm4dCs7GiopdSfZ1b7C https://explorer.blockstack.org/address/1MK7NHe5i2AhTxDUm4dCs7GiopdSfZ1b7C |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function before_no_image_product() { | |
if( !has_post_thumbnail( get_the_id() ) ){ | |
remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); | |
echo '<div class="no-image">'; | |
} | |
} | |
function after_no_image_product() { | |
if( !has_post_thumbnail( get_the_id() ) ){ |