Snippets

Visser Labs Use the Variation Name instead of Slug within the Product Name detail of Product exports

Created by Michael Visser

File functions.php Added

  • Ignore whitespace
  • Hide word diff
+<?php 
+function custom_woo_ce_get_product_title_attribute_formatting( $format = 'slug', $post_id ) { 
+
+    // Set the format to Attribute Title 
+    $format = 'title'; 
+    return $format; 
+
+}
+add_filter( 'woo_ce_get_product_title_attribute_formatting', 'custom_woo_ce_get_product_title_attribute_formatting', 10, 2 ); 
+?>
HTTPS SSH

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