Skip to content

Instantly share code, notes, and snippets.

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 andreiglingeanu/1adbb9c2e2a3361137a5a56e3782da54 to your computer and use it in GitHub Desktop.
Save andreiglingeanu/1adbb9c2e2a3361137a5a56e3782da54 to your computer and use it in GitHub Desktop.
<?php
add_filter('blocksy:woocommerce:product-single:layout', function ($layout) {
// Inspect layout for more info
foreach ($layout as $key => $value) {
if ($value['id'] === 'product_title') {
$layout[$key]['enabled'] = false;
}
}
return $layout;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment