Forum Activity for @douglas

douglas
@douglas
04/12/16 05:57:56AM
2,812 posts

Menu for Mobile and Different screen sizes


Design and Skin Customization

If your looking at this via a desktop browser and just changing the size of the window, it isn't going to work that same as viewing it from a mobile device. The menus I believe are responsive, but there is a check to see if the device is a mobile device or not.
douglas
@douglas
04/07/16 08:50:16AM
2,812 posts

login page with help buttons


Design and Skin Customization

Okay, I'm not at my dev computer but will check this out and let you know what I find.
douglas
@douglas
04/07/16 06:52:52AM
2,812 posts

login page with help buttons


Design and Skin Customization

Try using just this instead:

<div id="jrUser_login_msg" class="page_notice form_notice error" style="display:none;">
</div>
douglas
@douglas
04/07/16 06:12:31AM
2,812 posts

login page with help buttons


Design and Skin Customization

Can you show me the entire code your using for the login form?
douglas
@douglas
04/04/16 09:22:07AM
2,812 posts

How to limit the number of items a user can create?


Jamroom Developers

If xxSales is a module you've created by using the Aparna module, then there should be a max item field in the quota config tab.
douglas
@douglas
04/03/16 06:24:44AM
2,812 posts

all music says error occured loading media url


Design and Skin Customization

Is this on a custom skin? Can you change to a default skin and see if you get the same message?

Also a link to the page in question would be helpful so we can take a look at it.

Thanks!
douglas
@douglas
04/02/16 04:47:36AM
2,812 posts

Videos Uploaded Problems And Other Problems


Using Jamroom

before i go:
Just been looking for a new host.

https://www.jamroom.net/hosting
douglas
@douglas
04/01/16 09:13:23AM
2,812 posts

Most followed profile


Using Jamroom

This should do it.

{jrCore_list module="jrProfile" order_by="profile_jrFollower_item_count numerical_desc"}

By default, if you don't set a limit or use the pagebreak parameter, Jamroom will only show you I think 25 entries. You can add a limit parameter to show more.

{jrCore_list module="jrProfile" order_by="profile_jrFollower_item_count numerical_desc" limit="50"}
douglas
@douglas
04/01/16 08:19:11AM
2,812 posts

login page with help buttons


Design and Skin Customization

This is the code used for the help buttons.

Email/Username Help button:

<input value="?" class="form_button form_help_button" title="expand help" onclick="$('#h_user_email_or_name').slideToggle(250);" type="button">

Email/Username Help div:

<div id="h_user_email_or_name" class="form_help" style="display:none;">

    <table class="form_help_drop">
        <tbody>
            <tr>
                <td class="form_help_drop_left">
                    please enter a valid email address or user name to log into the system.
                </td>
                <td class="form_help_drop_right">
                </td>
            </tr>
        </tbody>
    </table>

</div>

Password Help button:

<input value="?" class="form_button form_help_button" title="expand help" onclick="$('#h_user_password').slideToggle(250);" type="button">

Password Help div:

<div id="h_user_password" class="form_help" style="">

    <table class="form_help_drop">
        <tbody>
            <tr>
                <td class="form_help_drop_left">
                    please enter your password
                </td>
                <td class="form_help_drop_right">
                </td>
            </tr>
        </tbody>
    </table>

</div>

Remember Login Help button:

<input value="?" class="form_button form_help_button" title="expand help" onclick="$('#h_user_remember').slideToggle(250);" type="button">

Remember Login Help div:

<div id="h_user_remember" class="form_help" style="">

    <table class="form_help_drop">
        <tbody>
            <tr>
                <td class="form_help_drop_left">
                    check this option to remember your login information for next time
                </td>
                <td class="form_help_drop_right">
                </td>
            </tr>
        </tbody>
    </table>

</div>

And if your using the jrOneAll module...

Social Login Help button:

<input value="?" class="form_button form_help_button" title="expand help" onclick="$('#h_').slideToggle(250);" type="button">

Social Login Help div:

<div id="h_" class="form_help" style="">

    <table class="form_help_drop">
        <tbody>
            <tr>
                <td class="form_help_drop_left">
                    Log in or Sign Up using any of the Social Networks listed
                </td>
                <td class="form_help_drop_right">
                </td>
            </tr>
        </tbody>
    </table>

</div>

You'll want to add these to your login template where you want them to show. Note that the Help buttons automatically get floated to the right.

Hope this helps!
  109