Snippets

Visser Labs Disable Product Attributes support within Store Exporter Deluxe

Updated by Michael Visser

File functions.php Modified

  • Ignore whitespace
  • Hide word diff
 <?php
 function custom_woo_ce_enable_product_attributes() {
+
     // Disable Product Attributes support within Store Exporter Deluxe
     return false;
+
 }
 add_filter( 'woo_ce_enable_product_attributes', 'custom_woo_ce_enable_product_attributes' );
 ?>
Created by Michael Visser

File functions.php Added

  • Ignore whitespace
  • Hide word diff
+<?php
+function custom_woo_ce_enable_product_attributes() {
+    // Disable Product Attributes support within Store Exporter Deluxe
+    return false;
+}
+add_filter( 'woo_ce_enable_product_attributes', 'custom_woo_ce_enable_product_attributes' );
+?>
HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.