Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save andreiglingeanu/27bb2b9d7596927f5dc6549045ea7085 to your computer and use it in GitHub Desktop.
Save andreiglingeanu/27bb2b9d7596927f5dc6549045ea7085 to your computer and use it in GitHub Desktop.
<?php
add_filter(
'blocksy:ext:woocommerce-extra:wish-list:enabled',
function ($has_wishlist, $place) {
if ($place === 'archive') {
// My logic here...
// true | false
return true;
}
return $has_wishlist;
},
10, 2
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment