Hi,
I would like my URL structure to be mysite.com/{artist}-{album}
I have an artist slug and an album slug but the issue appears if I have duplicate albums with the same name. How can I prepend the artist slug to the album slug?
e.g. in the module something like...
Album
-----
Slug: artistslug-[ ]
Thanks
Comments
public function _common_query($display_unpublished_if_logged_in = NULL) { $this->db->select('CONCAT(artist, "-", slug) AS artistslug' FALSE); }