Albums on Profiles - Audio Pro

MetalScene
MetalScene
@themetalscene
4 years ago
66 posts
How to show the ALBUMS / Discography of an artists on their profile.
updated by @themetalscene: 08/06/20 09:58:48AM
nate
@nate
4 years ago
911 posts
1. Create an album name during audio upload.
2. Click the album name on the user's audio index page.
3. Once you get there you should see a bread crumb titled "albums"

updated by @nate: 05/06/20 07:35:37AM
MetalScene
MetalScene
@themetalscene
4 years ago
66 posts
Thanks, i am assuming this is all added in the template and cannot be done with site builder , the adding of the link to the profiles.and making it the audio landing page ?
MetalScene
MetalScene
@themetalscene
4 years ago
66 posts
nate:
1. Create an album name during audio upload.
2. Click the album name on the user's audio index page.
3. Once you get there you should see a bread crumb titled "albums"

thanks, i have made the albums, but i want them to be the profile landing page if a band has them and have a tab that says discography or albums on the profile.
nate
@nate
4 years ago
911 posts
You can edit the profile menu and/or edit the profile_index.tpl. You probably should edit the audio upload form designer to require and album name.

profile_menu.tpl
{if profile_jrAudio_item_count > 0}
     <li><a href="{$jamroom_url}/{$profile_url}/{jrCore_module_url module="jrAudio"}/albums">Albums</a></li>
{/if}

profile_index.tpl
{if jrCore_module_is_active('jrAudio')}
            {jrCore_list module="jrAudio" profile_id=$_profile_id group_by="audio_album" order_by='created numerical_desc' limit="10" assign="audio_list"}
{/if}

Tags