• Resolved ejhgeih87

    (@ejhgeih87)


    Hi all,

    is it somehow possible to change the product title in the export file?
    So for every product, I would like to define a different title, which will be used in the exported file. Is that possible?

    Thanks in advance!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author algol.plus

    (@algolplus)

    hi

    You should edit products and add custom field “export_title”.

    use following code to replace title during export with this custom field

    // replace title with custom field "export_title"
    add_filter('woe_get_order_product_value_name', function ($value, $order, $item, $product) {
    	$custom_field = get_post_meta($product->get_id(), "export_title", true);
    	if( $custom_field )
    		$value = $custom_field;
    	return $value;
    }, 10, 4);

    thanks, Alex

    Thread Starter ejhgeih87

    (@ejhgeih87)

    That worked!
    Thanks a lot man!

    Plugin Author algol.plus

    (@algolplus)

    you’re welcome

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change Product Title for the Export’ is closed to new replies.