JoeHana
8/8/2013 - 12:28 AM

Replace price with custom field

Replace price with custom field

<?php

/**
 * Replace price with custom field
 */

add_filter( 'ts_currency_price', 'custom_property_price' );

function custom_property_price( $price ) {

	$post_id = get_the_ID();

	// Get text before price
	$price_label = get_post_meta( $post_id, 'price_label', true );
	
	if( $price_label )
		return $price_label;

	return $price;

}