Forum Activity for @developer-networks

Developer Networks
@developer-networks
12/05/15 03:07:11AM
566 posts

Hide phpBB from public


myPhpbb - Bridge Jamroom

To my knowledge this functionality is actually already built in to Phpbb. If your wanting the forum viewed only by logged in members in your ACP of PHPBB change settings for that.

Try this page. Hope it helps.
https://www.phpbb.com/community/viewtopic.php?f=46&t=1315605
Developer Networks
@developer-networks
10/10/15 03:37:06AM
566 posts

Flagship Skin


Flagship Skin

Not at this time. I have been remodeling my office for the last few months and everything has been chaos. The server hosting the demo was wiped due to a technical difficulty unrelated to me and this caused me to rebuild quite a few sites. I will be updating a lot here soon as my office is done. Thanks for your interest.
Developer Networks
@developer-networks
08/15/15 08:26:38PM
566 posts

How To Build A Mobile Menu for Slate Skin?


Design and Skin Customization

Looking over the issue your having..

{if jrCore_is_mobile_device()}
    {jrCore_include template="header_menu_mobile.tpl"}
{/if}

<div id="header">
    <div id="header_content">

        {* Logo *}
        {if jrCore_is_mobile_device()}
            <div id="main_logo">
                {jrCore_image id="mmt" skin="jrSlate" image="menu.png" alt="menu"} <a href="{$jamroom_url}">{jrCore_image image="logo.png" width="170" height="40" class="jlogo" alt=$_conf.jrCore_system_name}</a>
            </div>
        {else}
            <div id="main_logo">
                {jrCore_image image="logo.png" width="191" height="44" class="jlogo" alt=$_conf.jrCore_system_name src_only=true assign="logo_src"}
                {$default_logo = "$jamroom_url/skins/jrSlate/img/logo.png"}
                {if $logo_src == $default_logo && jrUser_is_admin()}
                    <a href="{$jamroom_url}/core/skin_admin/images/skin=jrSlate"><img src="{$logo_src}" alt="{$_conf.jrCore_system_name}" title="click here to upload a new logo"></a>
                {else}
                    <a href="{$jamroom_url}"><img src="{$logo_src}" alt="{$_conf.jrCore_system_name}"></a>
                {/if}
            </div>
            {jrCore_include template="header_menu_desktop.tpl"}

        {/if}

    </div>
</div>

{jrMenu_display active=$menu_url}
<div id="jrmenu_content">
    <nav id="jrmenu-wrap">
        <ul id="jrmenu">
            {jrSiteBuilder_menu}
        </ul>
    </nav>
</div>

the first part redirects to header_menu_mobile.tpl if jamroom detect its a mobile device.

however then reading further down the lines the system is using a {jrSiteBuilder_menu}

Im not familuar with those tools yet and havent used them however I would guess this could be where your issues are. with a little coding, you can edit the header_menu_mobile.tpl and fix the issue by adding the links.

<li><a href="{$jamroom_url}">Home</a></li>
<li><a href="{$jamroom_url}/test">test</a></li>
<li><a href="{$jamroom_url}/testing_a_page">testing a page</a></li>
<li><a href="{$jamroom_url}/here_is_another">Heres another</a></li>
<li><a href="{$jamroom_url}/and_another">And Another</a></li>

{* OR ADD *}

            {jrSiteBuilder_menu}
                                        

updated by @developer-networks: 08/15/15 09:11:33PM
Developer Networks
@developer-networks
07/22/15 07:59:18AM
566 posts

Defining h3 in jrUpimg CSS


Using Jamroom

I would suggest cloning the skin your working with if its not custom. Then add your css to your skin for h3. This way it will never be lost when the module updates or changes.

1 -> Clone the skin via developer tools.

2 -> Then add a .css page inside the skin directory. Place this inside the /skins/yourskin/css/custom.css

3 -> Inside your skin edit your include.php file and tell it to include the css file you have added.

    jrCore_register_module_feature('jrCore','css','myCustomSkin','custom.css');


updated by @developer-networks: 07/22/15 08:05:23AM
Developer Networks
@developer-networks
07/22/15 07:52:10AM
566 posts

myBadges customization - Profile Image Overlay


Profile Badges

its not listed in the code you posted. Try looking in the profile_index.tpl. this is the block of code your looking for

{if jrProfile_is_profile_owner($_profile_id)}
                        {jrCore_module_url module="jrProfile" assign="purl"}
                        <div class="profile_image">
                            {jrCore_lang skin=$_conf.jrCore_active_skin id="25" default="Change Image" assign="hover"}
                            <a href="{$_conf.jrCore_base_url}/{$purl}/settings/profile_id={$_profile_id}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$_profile_id size="xlarge" class="img_scale img_shadow" alt=$profile_name title=$hover width=false height=false}</a>

                            <div class="profile_hoverimage">
                                <span class="normal" style="font-weight:bold;color:#FFF;">{$hover}</span>&nbsp;{jrCore_item_update_button module="jrProfile" view="settings/profile_id=`$_profile_id`" profile_id=$_profile_id item_id=$_profile_id title="Update Profile"}
                            </div>
                        </div>
                    {else}
                        {jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$_profile_id size="xxlarge" class="img_scale img_shadow" alt=$profile_name width=false height=false}
                    {/if}

where this line
{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$_profile_id size="xxlarge" class="img_scale img_shadow" alt=$profile_name width=false height=false}

displays the profile image
Developer Networks
@developer-networks
07/22/15 07:41:46AM
566 posts

Customizing my badges & application questions


Profile Badges

The first step is to locate the location of the image you are trying to lay a badge over.

It sounds like you are trying to place one over the profile picture.

That template is located usually at profile_header.tpl


Lets locate now the line of code that displays the picture.

{if jrProfile_is_profile_owner($_profile_id)}
                        {jrCore_module_url module="jrProfile" assign="purl"}
                        <div class="profile_image">
                            {jrCore_lang skin=$_conf.jrCore_active_skin id="25" default="Change Image" assign="hover"}
                            <a href="{$_conf.jrCore_base_url}/{$purl}/settings/profile_id={$_profile_id}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$_profile_id size="xlarge" class="img_scale img_shadow" alt=$profile_name title=$hover width=false height=false}</a>

                            <div class="profile_hoverimage">
                                <span class="normal" style="font-weight:bold;color:#FFF;">{$hover}</span> {jrCore_item_update_button module="jrProfile" view="settings/profile_id=`$_profile_id`" profile_id=$_profile_id item_id=$_profile_id title="Update Profile"}
                            </div>
                        </div>
                    {else}
                        {jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$_profile_id size="xxlarge" class="img_scale img_shadow" alt=$profile_name width=false height=false}
                    {/if}
{* Paste Badge Installation Here *}

now you will want to add your own code and to work with your custom needs. There is a few ways to achieve this. here is a javascript tutorial that might help.

http://stackoverflow.com/questions/6084305/position-badge-over-corner-of-image-automatically


updated by @developer-networks: 07/22/15 07:48:07AM
Developer Networks
@developer-networks
07/08/15 09:37:50PM
566 posts

SoundCloud - deletet Songs Bug


Using Jamroom

If they were removed from the module and you cleared the cache they should be gone. Check the profile that uploaded them see if there deleted.

Just a shot in the dark here because i don't know your set up. If there deleted from your module and the cache is cleared then integrity check.

last thing id suggest is, figure out if your hosting has cache on your website for "faster page loading" which might have the page your having issues with "cached" on the server.
updated by @developer-networks: 07/08/15 09:46:19PM
Developer Networks
@developer-networks
07/07/15 03:52:56PM
566 posts

Where is the Installation Documentation?


Profile Badges

Strumelia:
Ok I'm going to get the badge module and start trying to figure out how to do my custom badges... good to know you are there b360 ! Thanks :)

No problem, glad to help!
Developer Networks
@developer-networks
07/07/15 02:39:05PM
566 posts

Customizing my badges & application questions


Profile Badges

Strumelia:
aside from question #1...

2) Would this "badges.tpl" template work if added to my skin root directory?...assuming I ftp-upload these new badge images i make to my mybadges/images folder, and these are the correct names of my quotas? (I do NOT want any badge for regular members)
Here is the template code I have...does it look ok? Have not tested yet:

<style>
.overlay_badge {
    position:absolute;
    right:0;
  	bottom:0;
    z-index:5;
}
</style>

<div class="overlay_badge">{if $quota_myBadges_badge_type == "Patron member 2015"}
{jrCore_image module="myBadges" image="patron_badge.png"}
{elseif $quota_myBadges_badge_type == "Sponsor Quota"}
{jrCore_image module="myBadges" image="sponsor_badge.png"}
{elseif $quota_myBadges_badge_type == "Moderator Quota"}
{jrCore_image module="myBadges" image="moderator_badge.png"}
{elseif $quota_myBadges_badge_type == "Master Admin Quota"}
{jrCore_image module="myBadges" image="moderator_badge.png"}
{/if} 
</div>

No you would want to put this code in a template that is checked by a list function. That way it can apply the proper badge to the data when it returns it to the template you are trying to work with.
Developer Networks
@developer-networks
07/07/15 02:13:41PM
566 posts

Customizing my badges & application questions


Profile Badges

Strumelia:
Ok first basic question-

1) Can I make these badges visible on a person's avatar everywhere on the site, or ONLY on their profile page?

This functionality already exists. All you have to do is include the badge code in the template you would like and it will display the badge.

The first step would be creating a template in your skin that overwrites the modules version with in your own skin templates.. Since your wanting to add the badge overlay to a module you will need to create a custom template in your skin that overwrites the modules version. so you would need to locate the template responsible for the jrForum. I don't personally have that module but i assume its content would be in its item_detail.tpl page. So if that is the page with the content you would like to overwrite you would copy all of its content. Then inside your skin create a template called jrForum_item_detail.tpl and paste the code inside. Now you will edit it and add the badge code. So now when you view the jrForum item detail page it will display the custom template that you have made inside of your skin.
  17