Forum Activity for @paul

paul
@paul
09/27/16 06:57:29AM
4,335 posts

Group Import - Should it Bring the Group Members Over?


Ning To Jamroom

Run an Integrity Check then clear caches and your members should show up.
Since developing the NingImport module the way Group Members are stored on the database has changed. The Integrity Check will detect that members have been stored in 'the old way' and fix things up.
hth
updated by @paul: 09/27/16 06:57:59AM
paul
@paul
09/26/16 08:46:08AM
4,335 posts

signup controls (age restriction for new members)


Ning To Jamroom

The reason this module was never released is that it isn't effective and is not really needed.
As you say, there's nothing to stop anyone who is signing up from lying so all you need to do is add a custom form notice to the signup form saying that you must be over XX, then maybe also add a birthdate field, and you have then been as diligent as you can be.
paul
@paul
09/26/16 08:26:10AM
4,335 posts

signup controls (age restriction for new members)


Ning To Jamroom

Michael developed a module to do this some time back, but it was never released by the look of it.
Let me blow the dust off of it and see if its compatible with the latest JR.
paul
@paul
09/26/16 07:50:04AM
4,335 posts

New forum has no button for posting topic


Using Jamroom

What skin are you using? I'm seeing a '+' button in forum categories with no topics. Its on the right of the top breadcrumbs bar alongside the notification, mark as read and search buttons.
paul
@paul
09/25/16 10:00:15AM
4,335 posts

Module Updates: where are the release notes?


Using Jamroom

Elise:
If I used the template editor (not FTP), my module changes are safe and I just need to use the Compare tool with every update to see if I want the changes?
Thanks!

Correct.
paul
@paul
09/22/16 09:13:07AM
4,335 posts

Replicating Lucid Banner to New Pages


Design and Skin Customization

To see how this works in the Lucid skin, let's first take a look at the skin's index.tpl template. On line 1 we have -
{jrCore_include template="header.tpl" show_bg=1}
This is including the header.tpl template and passing the variable $show_bg to it, so let's now look at the header.tpl template. Starting line 28 we have -
{if $show_bg == 1}
    <div class="banner"></div>{else}
    <div class="spacer"></div>{/if}
See that this code is testing for the $show_bg variable and if set, shows the banner (its part of the class statement), if not, if just sticks a spacer in.

So, if you where developing your site by editing the templates directly you could just include this variable in the 'include header' call for the template pages where you want it to show.
But you are using SiteBuilder which uses a common header.tpl (and footer.tpl) throughout, so in this case I'd suggest replacing the header template code with this -
{if $_post.module_url == 'page1' || $_post.module_url == 'page2' || $_post.module_url == 'page3'}
    <div class="banner"></div>{else}
    <div class="spacer"></div>{/if}
where page1, page2 and page3 are the page urls, so this will show the banner on those pages.
hth
Pa
paul
@paul
09/20/16 12:23:36PM
4,335 posts

Automated tool to reset user password and send an email notification.


Using Jamroom

Is this a Ning import? If so the NingImport module has such a tool.
paul
@paul
09/20/16 12:20:15PM
4,335 posts

Working on "look & feel" & eager for suggestions.


Ning To Jamroom

Quote: Hi Tat. Cloning the NingJa skin before making changes... ah! I should have thought of that! Smart!
Its not too late to do that. When you clone skins any template changes you have already made are carried through to the clone skin. You can then revert the original skin to default.
Actually, this is a good way to back up locally your skin development. Every day clone the working skin to jrNingja20160920 or whatever the date is then if your development goes drastically wrong one day you can quickly revert to where you left off yesterday.
Be sure to delete any cloned skins more than a few days old so as not to fill your server with un-needed skins though.

NOTE - This will not work with SiteBuilder, which has its own import/export tools. Do this if you are developing by modding templates.
updated by @paul: 09/20/16 12:21:51PM
paul
@paul
09/20/16 11:51:18AM
4,335 posts

Is it possible to exclude modules from the jrCore_list jrAction


Jamroom Developers

Add this search parameter to the jrCore_list call -

{jrCore_list module="jrAction" search="action_module != jrComment" . . . }

If you want to exclude more than just jrComment do it this way =

{jrCore_list module="jrAction" search="action_module NOT IN jrComment,jrAudio,jrVideo" . . . }

hth
paul
@paul
09/20/16 10:11:45AM
4,335 posts

Using jamroom as events & concerts portal


Using Jamroom

Hi Eddy
It depends on what the site needs to do. Basically, whichever skin you choose as a starting point http://yoursite.com/event will list all uploaded events, so you start from there ;-)
hth
Pa
  191