Forum Activity for @dazed

Dazed
@dazed
08/27/15 07:23:03PM
1,022 posts

Meta Module


Using Jamroom

Thanks all. I will take a look at this over the weekend.
Dazed
@dazed
08/25/15 03:17:01PM
1,022 posts

Meta Module


Using Jamroom

Hey Michael! Yeah that is what I already had. I was looking at the meta module and wanted to play around with it. The docs were not very clear, that I saw anyway, of what should be added.
Dazed
@dazed
08/24/15 04:38:10AM
1,022 posts

Annika


Using Jamroom

Thanks Paul. What about #2?
Dazed
@dazed
08/23/15 09:37:06AM
1,022 posts

Annika


Using Jamroom

Hey Paul - I found a few minutes today and started playing around with this module. I have two things I wanted to ask about. I added the "advanced usage" code from here - https://www.jamroom.net/the-jamroom-network/documentation/modules/2703/annika

#1 - There is an onclick link to show members. How do we an another to get it back to default view without refreshing? Ultimately I would just like the link to change on click from members to artists.

#2 - On the news section the page forward is not working for me.

ex. http://www.mixposure.com/dazed/audio

Thanks for the help and nice work on this mod.
updated by @dazed: 09/26/15 05:31:39AM
Dazed
@dazed
08/22/15 02:10:57PM
1,022 posts

Meta Module


Using Jamroom

Is there somewhere that describes the content format for meta tags? I look at the module and you can edit say og:image. What do we add to the meta tag manger?

This is what would be added to the meta.tpl file...
<meta property="og:image" content="http://mysite.com.jpg" />

updated by @dazed: 09/27/15 10:19:42PM
Dazed
@dazed
05/08/15 06:24:51PM
1,022 posts

ProJam Help


Using Jamroom

yeah Paul messaged me and he will look at it next week.
Dazed
@dazed
05/07/15 08:04:27AM
1,022 posts

ProJam Help


Using Jamroom

Thanks Michael. This issue is really from a custom module that Paul built. Recent audio changes broke it. Paul must be on vacation. I sent him an email a few days ago and no reply.
Dazed
@dazed
05/04/15 08:09:33AM
1,022 posts

ProJam Help


Using Jamroom

Yeah I saw that also but I noticed one template in the audio module with "button" in it and that seemed more like css. What template is that coming from?
Dazed
@dazed
05/04/15 06:20:40AM
1,022 posts

Audio not working on iPhone


Using Jamroom

If it helps, this sites audio works on my iPhone 6 Plus.
Dazed
@dazed
05/04/15 04:37:45AM
1,022 posts

ProJam Help


Using Jamroom

Thanks Paul. This is weird. I thought that would be the one also but I do not see a download call in there at all yet it exists on the page. I thought maybe the template was modified in the acp but nothing. I have three templates in the skin overriding the audio templates but not the list template.

jrAudio_item_albums.tpl
jrAudio_item_detail.tpl
jrAudio_item_index.tpl

do you see where a download link is here?

{jrCore_module_url module="jrAudio" assign="murl"}
{if isset($_items)}

    {foreach from=$_items item="item"}

    <div class="item">

        <div class="container">
            <div class="row">
                <div class="col2">
                    <div class="block_image">
                        <a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.audio_title_url}">{jrCore_module_function function="jrImage_display" module="jrAudio" type="audio_image" item_id=$item._item_id size="xlarge" crop="auto" class="iloutline img_scale" alt=$item.audio_title width=false height=false}</a>
                    </div>
                </div>
                <div class="col1">
                    <div class="p5">
                    {if $item.audio_active == 'on' && $item.audio_file_extension == 'mp3'}
                        {jrCore_media_player type="jrAudio_button" module="jrAudio" field="audio_file" item=$item}
                    {else}
                        &nbsp;
                    {/if}
                    </div>
                </div>
                <div class="col4">
                    <div class="p5" style="overflow-wrap:break-word">
                        <h3><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.audio_title_url}">{$item.audio_title}</a></h3><br>
                        <span class="info">{jrCore_lang module="jrAudio" id="31" default="album"}:</span> <span class="info_c"><a href="{$jamroom_url}/{$item.profile_url}/{$murl}/albums/{$item.audio_album_url}">{$item.audio_album}</a></span><br>
                        <span class="info">{jrCore_lang module="jrAudio" id="12" default="genre"}:</span> <span class="info_c">{$item.audio_genre}</span><br>
                        {jrCore_module_function function="jrRating_form" type="star" module="jrAudio" index="1" item_id=$item._item_id current=$item.audio_rating_1_average_count|default:0 votes=$item.audio_rating_1_count|default:0}
                    </div>
                </div>
                <div class="col5 last">
                    <div class="block_config">

                        {jrCore_item_list_buttons module="jrAudio" field="audio_file" item=$item}

                    </div>
                </div>
            </div>

        </div>
    </div>
    {/foreach}
{/if}
  46