Any e-commerce plugin does not work with wp-property?
-
Hi guys ??
so here I come again, yet another question. Seems that the custom post type used by wp-property does not add the custom fields added by any other plugin.
Say, Plugin X adds a custom field for any other post or page, but not for the Property post type… how do I make the property post type accept these added custom fields too?
In my case, I’m trying the eshop plugin – it creates a product out of every post you set the custom field on for.
I want to allow my customers to purchase a home plan (property) online – but it can’t happen if I can’t make the property a product via the automated custom fields.
I tried adding custom fields in “supports” in the custom post type declaration, but that doesn’t show the custom plugin-added fields.
On the eshop quirrm forum, they gave me this code to add to functions.php:
add_filter( ‘eshop_post_types’,’mycustomtype’ );
function mycustomtype( $array ) {
$array = array(‘property’);
return $array;
}but it doesn’t work
https://quirm.net/forum/topic.php?id=3733&replies=13#post-19597 – here’s the forum thread there, where they refer me here… seems that really it is a theme/plugin issue (wp property plugin issue) as no other plugin would work either in displaying such boxes in the custom post edit screen… are you aware of any other way to sell ‘properties’ or ‘plans’ as I have called them in my case (downloadable file per post)?
- The topic ‘Any e-commerce plugin does not work with wp-property?’ is closed to new replies.