search by genre and/or mood
Design and Skin Customization
Sure you can do that.
You'll need to setup a structure that submits the settings available, so you'll need a list of all possible moods and all possible genres in 2 dropdown lists inside a form. When the form is submitted put the values into the URL so it comes out like
site.com/genre=rock/mood=mellow
Then in your jrCore_list call, check for each of those:
{if isset($_post.mood) && isset($_post.genre)}
{jrCore_list module="jrAudio" search1="audio_mood = `$_post.mood`" search2="audio_genre = `$_post.genre`"}
{/if}
Docs: "jrCore_list"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/89/jrcore-list