Forum Activity for @douglas

douglas
@douglas
05/20/16 03:50:23PM
2,807 posts

Forum file attachment types


Using Jamroom

There should be a field in your ACP > Profiles > Forum > Quota Config for file types.
douglas
@douglas
05/18/16 06:27:15AM
2,807 posts

Media Url Scanner


Using Jamroom

In your system check, does it show the YouTube V3 API Key as passing?
douglas
@douglas
05/18/16 03:54:22AM
2,807 posts

Media Url Scanner


Using Jamroom

Things could be worse, so I'm not complaining. ;)

Sounds like your on the right track to figuring this one out, let us know if you need help with anything.

Thanks!
douglas
@douglas
05/17/16 10:24:00AM
2,807 posts

Media Url Scanner


Using Jamroom

Hey Steve,

Have you added youtube.com to the iframe modules allowed URL's?

I'm not seeing an issue on my dev site.
douglas
@douglas
05/12/16 07:34:20AM
2,807 posts

Midnight Player Error


Using Jamroom

pch:
Good news: I have run the Integrity check and cleared the cache. The problem was fixed and the error is gone. The Midnight player displays fine now on the profil page.
Thanks

Glad you got it sorted! :)
douglas
@douglas
05/12/16 05:09:26AM
2,807 posts

Social Networks


Using Jamroom

If you are referring to the Social links in the skins footer section, they are controlled by the skin settings and can be found in the skins config.php file.

skins/jrElastic/config.php
    // Social Media
    $num = 20;
    foreach (array('twitter', 'facebook', 'google', 'linkedin', 'youtube', 'pinterest') as $network) {

        // App Store URL
        $_tmp = array(
            'name'     => "{$network}_name",
            'type'     => 'text',
            'default'  => '',
            'validate' => 'printable',
            'label'    => ucfirst($network) . " profile",
            'help'     => "If you have an account for your site on " . ucfirst(str_replace('_', ' ', $network)) . ", enter the profile name and the network icon will show in your footer.  Leave blank to disable.",
            'order'    => $num++,
            'section'  => 'social networks'
        );
        jrCore_register_setting('jrElastic', $_tmp);
    }

You'll want to modify that bit of code to add in your other links in, then look in the footer.tpl for your skins and you'll see how the links are being added...

skins/jrElastic/footer.tpl
                        {* Social Network Linkup *}
                        {if strlen($_conf.jrElastic_twitter_name) > 0}
                            <a href="https://twitter.com/{$_conf.jrElastic_twitter_name}">{jrCore_image image="sn-twitter.png" width="40" height="40" class="social-img" alt="twitter" title="Follow @{$_conf.jrElastic_twitter_name}"}</a>
                        {/if}

                        {if strlen($_conf.jrElastic_facebook_name) > 0}
                            <a href="https://facebook.com/{$_conf.jrElastic_facebook_name}">{jrCore_image image="sn-facebook.png" width="40" height="40" class="social-img" alt="facebook" title="Like {$_conf.jrElastic_facebook_name} on Facebook"}</a>
                        {/if}

                        {if strlen($_conf.jrElastic_linkedin_name) > 0}
                            <a href="https://linkedin.com/{$_conf.jrElastic_linkedin_name}">{jrCore_image image="sn-linkedin.png" width="40" height="40" class="social-img" alt="linkedin" title="Link up with {$_conf.jrElastic_linkedin_name} on LinkedIn"}</a>
                        {/if}

                        {if strlen($_conf.jrElastic_google_name) > 0}
                            <a href="https://plus.google.com/{$_conf.jrElastic_google_name}">{jrCore_image image="sn-google-plus.png" width="40" height="40" class="social-img" alt="google+" title="Follow {$_conf.jrElastic_google_name} on Google+"}</a>
                        {/if}

                        {if strlen($_conf.jrElastic_youtube_name) > 0}
                            <a href="https://www.youtube.com/channel/{$_conf.jrElastic_youtube_name}" target="_blank">{jrCore_image image="sn-youtube.png" width="40" height="40" class="social-img" alt="youtube" title="Subscribe to {$_conf.jrElastic_youtube_name} on YouTube"}</a>
                        {/if}

                        {if strlen($_conf.jrElastic_pinterest_name) > 0}
                            <a href="https://www.pinterest.com/{$_conf.jrElastic_pinterest_name}" target="_blank">{jrCore_image image="sn-pinterest.png" width="40" height="40" class="social-img" alt="pinterest" title="Follow {$_conf.jrElastic_pinterest_name} on Pinterest"}</a>
                        {/if}

You could then use Michael's code above to show the correct language social link according to the sites language setting.

Hope this helps!
douglas
@douglas
05/12/16 05:04:44AM
2,807 posts

Midnight Player Error


Using Jamroom

pch:
Hi Mischael,
Maybe you didn't understand what I was trying to explain. The fact is I am receiving this player error on the audio page (in the profile) after setting the the Midnight Player as the default Skin Player (Player Type). I am using the Elastic skin.
You should probably be able to reproduce this error on your dev site after selecting the Midnight Player as the Player Type of your Skin.

Which skin is this for?

Thanks!
douglas
@douglas
05/09/16 12:36:47PM
2,807 posts

Contact Form Not Displaying On Mobile Device


Using Jamroom

Unless you give the non logged in users a universal login, you would most likely have to create something custom.

Jamroom needs a user/profile account to associate an uploaded file to so it can be viewed/downloaded.
douglas
@douglas
05/09/16 09:25:15AM
2,807 posts

Contact Form Not Displaying On Mobile Device


Using Jamroom

You'll want to modify the fields you want to show to logged out users. Right now, all of your fields "Display Groups" are set to (group)Normal Users, which means logged in users only.

Note that the file field will have to be left to logged in users only since you can't upload a file without it being associated with a user.

Hope this helps!
updated by @douglas: 05/09/16 09:25:35AM
douglas
@douglas
05/09/16 08:51:09AM
2,807 posts

Radio


Installation and Configuration

nduguseliphaz:
Which Player is compatible with facebook

The player used for Facebook is a flash player which I believe works with the jrShareThis module. You can find the code for it in your modules/jrAudio/templates/jrShareThis_facebook_open_graph.tpl file.

nduguseliphaz:
And is there anyway i can customize the radio pop up width?

You can change the popup window width in your skins/jrProJamLight/index_radio.tpl file. 820 is the width and 725 is the height.

<a onclick="popwin('{$jamroom_url}/radio_player/playlist_id={$item._item_id}/title={$item.playlist_title}/autoplay=true','radio_player',820,725,true);">

Hope this helps.
  104