Foxy Cart Site Integration - Page Code
Installation and Configuration
You're not going to be able to put smarty code into one of the pages created on a profile, it will need to go into a template.
The code you want to add looks like this:
<a href="{jrFoxyCart_subscribe_url quota_id=3}">Monthly Subscription @ $29</a>
Where that quota_id=3 should be replaced with whichever quota you want them to signup to, so for you it will probably be something like:
<a href="{jrFoxyCart_subscribe_url quota_id=2}">Fan Clipz 1-Year Subscription @ $29</a>
<a href="{jrFoxyCart_subscribe_url quota_id=3}">Fan Clipz 6-Month Subscription @ $29</a>
<a href="{jrFoxyCart_subscribe_url quota_id=4}">Fan Clipz 3- Month Subscription @ $29</a>
<a href="{jrFoxyCart_subscribe_url quota_id=5}">Fan Clipz Monthly Subscription @ $29</a>
Depending on the order in which you created the different quotas. Just get the number of the quota aligned with the quota its for.
If you wanted a loop to do all the quotas, then this one from the docs works:
{jrFoxyCart_subscribable_quotas assign="quotas_that_allow_subscriptions"}
{foreach $quotas_that_allow_subscriptions as $quota_id => $_q}
<a href="{jrFoxyCart_subscribe_url quota_id=$quota_id}">Subscribe Now ({$_q.quota_jrProfile_name})</a> <br>
{/foreach}
Its the same thing, just lists all the possible quotas.
That needs to go into a template file, so either via Site Builder if you have that enabled:
Docs: "Site Builder"
https://www.jamroom.net/the-jamroom-network/documentation/site-builder
Or you can edit an existing skin template:
ACP -> SKINS -> FLASHBACK -> TEMPLATES -> (choose a location for it) -> MODIFY (the index.tpl is the front page.)
Docs: "Using the Template Editor"
https://www.jamroom.net/the-jamroom-network/documentation/development/3183/using-the-template-editor
Quote: One note: I installed the Site Builder and tried it with that module but it totally took away all of the HEADER Listings on top, i.e.…Home – Community – Lists – etc.. Going to need to practice with Site Builder to become proficient but can’t spend the time right now with it.
Yes it will do that, but the pages are still there, so you can use the MENU EDITOR to add those url's back in to the new menu if you want to keep using the pages.