Can't Find Template For Station

alt=
Ekwe
@ekwe
10 years ago
212 posts
I can see the main stations page, but which template controls this page where if you click to play a station, it brings up

- (jamroom_url)/stations/playlist-2/autoplay=true

Need to edit how that page appears
updated by @ekwe: 10/02/14 07:34:47PM
douglas
@douglas
10 years ago
2,790 posts
I believe your looking for the station_playlist.tpl.

Hope this helps,
Douglas


--

Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos
alt=
Ekwe
@ekwe
10 years ago
212 posts
douglas:
I believe your looking for the station_playlist.tpl.

Hope this helps,
Douglas

Yeah, I got that part. But the bottom part of the page. Station_playlist is at the top of this hidden template. I need the full page that includes it
douglas
@douglas
10 years ago
2,790 posts
If your referring to the top stations and new stations sections, those are the top_stations_row.tpl and stations_row.tpl.

Here is a list of templates used on the stations page.

stations.tpl
stations_list.tpl
stations_row.tpl
top_stations_list.tpl
top_stations_row.tpl
station_playlist.tpl

Hope this helps,
Douglas


--

Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos
alt=
Ekwe
@ekwe
10 years ago
212 posts
nope, none of these are it

What template is controlling this page - http://demo.jamroom.net/jrProJamLight/stations/site-station/autoplay=true
douglas
@douglas
10 years ago
2,790 posts
Ekwe:
nope, none of these are it

What template is controlling this page - http://demo.jamroom.net/jrProJamLight/stations/site-station/autoplay=true

Those are the templates for that page, what is it your trying to do?

Thanks!


--

Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos
alt=
Ekwe
@ekwe
10 years ago
212 posts
I can't seem to customize the whole page. Like the title headers and padding of the page as well as change the sidebar
douglas
@douglas
10 years ago
2,790 posts
Have you tried modifying the css files? Or are you just wanting to change the station page itself?

If you can tell me which elements your trying to change I can help you pinpoint what you'll need to modify.


--

Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos
alt=
Ekwe
@ekwe
10 years ago
212 posts
yes, the title headers saying top stations, newest stations and I need to modify the row number display to another figure
douglas
@douglas
10 years ago
2,790 posts
The titles are in the stations.tpl

<h2>{jrCore_lang skin=$_conf.jrCore_active_skin id="58" default="top"}&nbsp;{jrCore_lang skin=$_conf.jrCore_active_skin id="138" default="Stations"}</h2>

and

<h2>{jrCore_lang skin=$_conf.jrCore_active_skin id="11" default="newest"}&nbsp;{jrCore_lang skin=$_conf.jrCore_active_skin id="138" default="Stations"}</h2>

And if your referring to the page break, how many rows show, that is also found in the stations.tpl in the jrCore_list functions.

Quote:
{jrCore_list module="jrPlaylist" order_by="playlist_rating_1_average_count desc" search1="playlist_list like %jrAudio%" template="top_stations_row.tpl" pagebreak="7" page=$_post.p}

and

Quote:
{if jrCore_module_is_active('jrRating')}
{jrCore_list module="jrPlaylist" order_by="_created desc" search1="playlist_list like %jrAudio%" template="stations_row.tpl" pagebreak="7" page=$_post.p}
{else}
{jrCore_list module="jrPlaylist" order_by="_created desc" search1="playlist_list like %jrAudio%" template="stations_row.tpl" pagebreak="15" page=$_post.p}
{/if}

Hope this helps :)


--

Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos
alt=
Ekwe
@ekwe
10 years ago
212 posts
not working at all
alt=
Ekwe
@ekwe
10 years ago
212 posts
i renamed my stations.tpl to radios.tpl will that affect the templates? because on the radios.tpl it's perfect
michael
@michael
10 years ago
7,714 posts
renaming the templates will change their url.

/skins/(active skin name)/stations.tpl
will show up on the url
YOUR-SITE.com/stations

whereas
/skins/(active skin name)/radios.tpl
will show up on the url
YOUR-SITE.com/radios

Tags