Forum Activity for @garymoncrieff

gary.moncrieff
@garymoncrieff
12/29/16 01:04:32PM
865 posts

Subscription Cancellation Notification


Using Jamroom

Yes but what payment gateways have you enabled in FoxyCart? essentially Foxycart is just the shopping cart, the CC info will be stored with the payment gateway.
gary.moncrieff
@garymoncrieff
12/29/16 09:24:39AM
865 posts

Subscription Cancellation Notification


Using Jamroom

Are CC details stored on your site? I assume they paid through PayPal? if so, then the CC info needs to be updated there.
gary.moncrieff
@garymoncrieff
12/21/16 12:58:41PM
865 posts

Adding CSS Page


Design and Skin Customization

Look in the skins include.php file, you will see the skin_init function, this is the area where all the css files are registered, add yours in here, remember to run an integrity check to let the skin know it has a new css file to reference.
updated by @garymoncrieff: 12/21/16 12:59:11PM
gary.moncrieff
@garymoncrieff
12/21/16 05:17:36AM
865 posts

Happy Holiday!


Off Topic

Same to everyone
gary.moncrieff
@garymoncrieff
12/16/16 02:30:05PM
865 posts

Question about Cometchat and PHP7


Using Jamroom

I believe strumelia has updated to php7 and is running , but don't know what version, I assume she has kept things up to date as she normally appears to. Just bear in mind if there is an issue it will be very unlikely but not impossible, they will fix it for an older version.

Maybe she can provide more insight.
gary.moncrieff
@garymoncrieff
12/16/16 08:39:24AM
865 posts

Polls


Suggestions

Hey Guys

This is just something I noticed today while fooling around with something else, in the Your Votes section under Voted for, it currently shows the item id, just thinking it would be better to pull in the actual option text rather than showing a number?

I haven't looked deep into this but I didn't see a template for that page so I assume it's being created on the fly by the module.

Only a very minor thing mind.
updated by @garymoncrieff: 03/23/17 12:11:27PM
gary.moncrieff
@garymoncrieff
12/16/16 07:44:28AM
865 posts

Podcast Hosting


Using Jamroom

No problem, just one tip, it looks like you're currently not creating albums for your shows and just uploading the audio files as singles. Nothing wrong with this but as your library grows it will become more tedious to put them all in albums later, so I would advise you start using albums from the get go. You don't have to categorise by album at this stage but it will leave it easier down the line.
gary.moncrieff
@garymoncrieff
12/16/16 06:30:06AM
865 posts

Podcast Hosting


Using Jamroom

Nice looking site, yeah if you only have 5 shows weekly then this is a bit premature at this stage.

Good luck with your site.
gary.moncrieff
@garymoncrieff
12/16/16 02:01:04AM
865 posts

Podcast Hosting


Using Jamroom

Easiest way for you at this stage of your learning would be to use site builder, and using a template code widget just paste this in

{capture name="row_template" assign="shows"}
	{literal}
    {if isset($_items)}
        {jrCore_module_url module="jrAudio" assign="murl"}
        <ul>{foreach from=$_items item="item"}
                <li><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.audio_album_url}">{$item.audio_album}</a></li>
            {/foreach}
        </ul>
    {/if}
    {/literal}
{/capture}

{jrCore_list module="jrAudio" group_by="audio_album" template=$shows}

And then build the rest of your page around this the way you'd like
updated by @garymoncrieff: 12/16/16 02:02:47AM
gary.moncrieff
@garymoncrieff
12/15/16 01:31:07PM
865 posts

Podcast Hosting


Using Jamroom

No it's not in any of Nate's skins, afaik.

Something like this will get you the list of albums with direct links to the album page on the profile.

{if isset($_items)}
    {jrCore_module_url module="jrAudio" assign="murl"}
    <ul>{foreach from=$_items item="item"}
            <li><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.audio_album_url}">{$item.audio_album}</a></li>
        {/foreach}
    </ul>
{/if}

you will need to decide how you want to build your Shows page now, ie via site builder or by adding new templates to the skin. (Should always clone skin before making any changes and then apply changes to the cloned version).

I would advise you make a front end template to show all the podcast shows in one place and then link to the individual profiles from there. Will make discovery a lot easier.
updated by @garymoncrieff: 12/15/16 01:33:42PM
  13