Message Text |
I was trying to fish out an error and figured out finally what the problem was.
I had the following item types:
regular, property,property_feature,vendor,vendor_featured
my sponsorship page uses conditionals to serve up the appropriate payment button to the appropriate type but it kept spitting this back at me (when trying to renew a "property" type listing: <?php "property" =="property"features) {?>
My conditionals were written correctly so I finally figured out it was because "property" was too close in name to "property_featured" so I changed the featured listing to "pfeatured" and it went through just fine.
If that's normal, great, but I couldn't find anything in the manual warning about item type naming issues. |