Forum Activity for @douglas

douglas
@douglas
12/27/13 02:28:39AM
2,808 posts

Nova Skin


Suggestions

This should be fixed now, you may need to reload the jrNova skin and the Activity Stream module in your ACP.
douglas
@douglas
12/26/13 02:58:54PM
2,808 posts

Nova Skin


Suggestions

Quote:
If you click on a "link this" in the timeline the resulting pages css isn't right ( text folds over the avatar )

I'm guessing you mean when you click on the "comments" link? I see the title overlapping the avatar image on the left. I'll get that fixed too.

Thanks,
Douglas
douglas
@douglas
12/26/13 02:52:33PM
2,808 posts

Nova Skin


Suggestions

Quote:
The search_drop.png image is missing out of the jrActions img Folder ( tested old and new )

I'll get this fixed for the next jrNova release.

Quote:
If you click on a "link this" in the timeline the resulting pages css isn't right ( text folds over the avatar )

I'm not sure what you mean by "link this", where is that in the timeline?

Quote:
you have two core mobile menus ( @media ) in two files which is confusing. One says max 767 the other 768 ….Reason?

I'll get this fixed for the next release

Thanks,
Douglas
updated by @douglas: 12/26/13 02:52:44PM
douglas
@douglas
12/26/13 06:34:33AM
2,808 posts

Help


Jamroom Developers

You might also try deleting what is in your data/cache/YOURCUSTOMSKIN folder via FTP.
douglas
@douglas
12/26/13 06:33:25AM
2,808 posts

Help


Jamroom Developers

Can you post what the errors are?

You could also go into your database and in the jr_core_setting table change the active_skin to one that you have not been working on.

Hope this helps,
Douglas
douglas
@douglas
12/25/13 06:40:11AM
2,808 posts

New Skin Integrity Check Issue


Design and Skin Customization

You most likely have an error in one of your templates... are you getting any debug or php errors?
douglas
@douglas
12/24/13 06:55:28AM
2,808 posts

Best of the holidays to all..


Off Topic

Happy Holidays and Happy New Year to all! :)
douglas
@douglas
12/23/13 10:38:10AM
2,808 posts

Album Questions


Design and Skin Customization

Glad to hear it. :)
douglas
@douglas
12/23/13 05:26:36AM
2,808 posts

Album Questions


Design and Skin Customization

Did you make the changes to the index.tpl then instead of the music.tpl?
douglas
@douglas
12/23/13 04:23:40AM
2,808 posts

Album Questions


Design and Skin Customization

Okay, in the music.tpl, find this:

                                {if isset($_conf.jrProJam_require_images) && $_conf.jrProJam_require_images == 'on'}
                                    {if isset($_post.search_area) && $_post.search_area == 'audio_genre'}
                                        {jrCore_list module="jrAudio" order_by=$order_by search1="audio_genre like `$_post.search_string`" template="music_row.tpl" require_image="audio_image" pagebreak=$_conf.jrProJam_default_pagebreak page=$_post.p}
                                    {elseif !empty($_post._1)}
                                        {jrCore_list module="jrAudio" order_by=$order_by template="music_row.tpl" require_image="audio_image" search="audio_title like `$_post._1`%" pagebreak=$_conf.jrProJam_default_pagebreak page=$_post.p}
                                    {else}
                                        {jrCore_list module="jrAudio" order_by=$order_by template="music_row.tpl" require_image="audio_image" pagebreak=$_conf.jrProJam_default_pagebreak page=$_post.p}
                                    {/if}
                                {else}
                                    {if isset($_post.search_area) && $_post.search_area == 'audio_genre'}
                                        {jrCore_list module="jrAudio" order_by=$order_by search1="audio_genre like `$_post.search_string`" template="music_row.tpl" pagebreak=$_conf.jrProJam_default_pagebreak page=$_post.p}
                                    {elseif !empty($_post._1)}
                                        {jrCore_list module="jrAudio" order_by=$order_by template="music_row.tpl" search="audio_title like `$_post._1`%" pagebreak=$_conf.jrProJam_default_pagebreak page=$_post.p}
                                    {else}
                                        {jrCore_list module="jrAudio" order_by=$order_by template="music_row.tpl" pagebreak=$_conf.jrProJam_default_pagebreak page=$_post.p}
                                    {/if}
                                {/if}

and change it to this:

                                {if isset($_conf.jrProJam_require_images) && $_conf.jrProJam_require_images == 'on'}
                                    {if isset($_post.search_area) && $_post.search_area == 'audio_genre'}
                                        {jrCore_list module="jrAudio" order_by=$order_by search1="audio_genre like `$_post.search_string`" template="music_row.tpl" require_image="audio_image" pagebreak=$_conf.jrProJam_default_pagebreak page=$_post.p}
                                    {elseif !empty($_post._1)}
                                        {jrCore_list module="jrAudio" order_by=$order_by template="music_row.tpl" require_image="audio_image" search="audio_title like `$_post._1`%" pagebreak=$_conf.jrProJam_default_pagebreak page=$_post.p}
                                    {else}
                                        {jrCore_list module="jrAudio" order_by=$order_by group_by="audio_album" template="music_row.tpl" require_image="audio_image" pagebreak=$_conf.jrProJam_default_pagebreak page=$_post.p}
                                    {/if}
                                {else}
                                    {if isset($_post.search_area) && $_post.search_area == 'audio_genre'}
                                        {jrCore_list module="jrAudio" order_by=$order_by search1="audio_genre like `$_post.search_string`" template="music_row.tpl" pagebreak=$_conf.jrProJam_default_pagebreak page=$_post.p}
                                    {elseif !empty($_post._1)}
                                        {jrCore_list module="jrAudio" order_by=$order_by template="music_row.tpl" search="audio_title like `$_post._1`%" pagebreak=$_conf.jrProJam_default_pagebreak page=$_post.p}
                                    {else}
                                        {jrCore_list module="jrAudio" order_by=$order_by group_by="audio_album" template="music_row.tpl" pagebreak=$_conf.jrProJam_default_pagebreak page=$_post.p}
                                    {/if}
                                {/if}


There are actually only two places to add the group_by parameter.

Hope this helps,
Douglas
updated by @douglas: 12/23/13 04:25:24AM
  260