Thread Starter
Nico
(@nicobabot)
Thanks a lot Michel. Great advice.
Nico
Thread Starter
Nico
(@nicobabot)
Thanks a lot Michel, that’s helpful indeed.
So if I use wppfm_feed_item_value filter this way, I should be able to get a prefix and suffix added to my title:
function alter_feed_item( $attributes, $feed_id, $product_id ) {
$attributes['title'] = echo "The prefix I want".$attributes['title']."The Suffix I want";
return $attributes;
}
Cheers,
Nico