Forum Activity for @douglas

douglas
@douglas
11/17/14 07:25:07AM
2,812 posts

How to remove *asterisks* from Images Tab ?


Ning To Jamroom

If you want to add a home link to the menu, you would modify your header_menu_desktop.tpl file and add this:

<li><a href="{$jamroom_url}">{jrCore_lang skin=$_conf.jrCore_active_skin id="1" default="home"}</a></li>

where you want the link to show...

it would go after this if you want it before the Images link:

{if jrCore_module_is_active('jrGallery')}
li><a href="{$jamroom_url}/{jrCore_module_url module="jrGallery"}">{jrCore_lang skin=$_conf.jrCore_active_skin id="36" default="Images"}</a></li>
{/if}

updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
11/17/14 06:54:24AM
2,812 posts

How to remove *asterisks* from Images Tab ?


Ning To Jamroom

This is most likely due to not having a language string setup for the tab... if your using the jrCore_lang function, you must have a corresponding language string in your skins/YOURSKIN/lang/en-US.php file. If you don't want to use the jrCore_lang function, just remove it and add your text only. For example:

Change this:
{jrCore_lang skin=$_conf.jrCore_active_skin id="1" default="home"}


To this:
home


If you add a line for your new language, you want to run the Integrity Check tool so the new language gets added to the database.

Hope this helps! :)
updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
11/17/14 06:47:27AM
2,812 posts

commenting vanished/


Ning To Jamroom

soaringeagle:
i dont see any profile commenting options any more
i wasnt really a fan of how they worked tho in the past so maybe its being reworked?


They were removed because it was causing issues. Not sure we need a profile comment when there is a timeline for the profile that anyone can comment on.

Hope this helps! :)
updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
11/16/14 06:34:11AM
2,812 posts

bug report


Ning To Jamroom

I've looked at the code in the templates and there isn't anything there that would cause this, the code is fine.

Something else is causing this issue. It may have something to do with the Ning archive or the importer or both, I don't know.
updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
11/15/14 01:18:21PM
2,812 posts

my list of things ning migrators will mkiss


Ning To Jamroom

I guess I should have asked how big the Ad is?

It may not fit in the header if its too big.
updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
11/15/14 01:14:33PM
2,812 posts

my list of things ning migrators will mkiss


Ning To Jamroom

The above code has two places for your Ad code, one for mobile and one for PC's.

Send your info to douglas[at]jamroom[dot]net and I'll take a look for you.

Thanks!
updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
11/15/14 12:38:47PM
2,812 posts

my list of things ning migrators will mkiss


Ning To Jamroom

soaringeagle:
oh douglass i think it was brian might have been micheal..actualy..yea think ir was micheal was trying to help me figure out an odd issue inm having
the name list under my profile pic
every link links to my profile and cant find why

theres nothingin the files that control that

Without having access to your templates, and admin login, I'm not sure how much help I can be here.

I'm not seeing any issues on my dev site.
updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
11/15/14 12:36:36PM
2,812 posts

my list of things ning migrators will mkiss


Ning To Jamroom

If it were me and that was the case, I wouldn't use the ad code at all.

My suggestion would be to put the ad above the menu in the header section...

Change this:
<div id="header">
    <div id="header_content">

        {* Logo *}
        {if jrCore_is_mobile_device()}
            <div id="main_logo">
                {jrCore_image id="mmt" skin="jrNingja" 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 custom="logo"}</a>
            </div>
        {else}
            <div id="main_logo">
                <a href="{$jamroom_url}">{jrCore_image image="logo.png" width=180 height=50 alt=$_conf.jrCore_system_name custom="logo"}</a>
            </div>
            {jrCore_include template="header_menu_desktop.tpl"}
        {/if}

    </div>
</div>

to this:

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

        {* Logo *}
        {if jrCore_is_mobile_device()}
            <div id="main_logo">
                {jrCore_image id="mmt" skin="jrNingja" 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 custom="logo"}</a><br>
                Ad Code Here... Note that I just used a line break after the logo image so the ad show below the logo on mobile devices.
            </div>
        {else}
            <div id="main_logo">
            	<div class="container">
            		<div class="row">
            			<div class="col4">
			                <a href="{$jamroom_url}">{jrCore_image image="logo.png" width=180 height=50 alt=$_conf.jrCore_system_name custom="logo"}</a>
			            </div>
			            <div class="col8 last">
			            	Ad Code Here... will show to the right of the logo image.
			            </div>
			        </div>
			    </div>
            </div>
            {jrCore_include template="header_menu_desktop.tpl"}
        {/if}

    </div>
</div>

updated by @douglas: 12/29/14 09:23:54AM
douglas
@douglas
11/15/14 12:27:22PM
2,812 posts

my list of things ning migrators will mkiss


Ning To Jamroom

Can you change the z-index on the ad? does it have to always be on top?
updated by @douglas: 12/29/14 09:23:54AM
  195