Skip to content

Instantly share code, notes, and snippets.

@digamber89
Created November 19, 2020 11:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save digamber89/af73c5aa23043c83fc072bcab06e180c to your computer and use it in GitHub Desktop.
Save digamber89/af73c5aa23043c83fc072bcab06e180c to your computer and use it in GitHub Desktop.
Show Zoom product in shop pages
<?php
add_action('vczapi_before_zoom_product_saved','change_zoom_product_on_create');
/**
* @param WC_Product $product
*/
function change_zoom_product_on_create($product){
$product->set_catalog_visibility('visible');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment