Forum Activity for @michael

michael
@michael
07/13/18 10:02:47PM
7,816 posts

For sharing with OneAll Social, how to link another network account to a JR network account?


Using Jamroom

researchcooperative:....."Select the external social networks you would like to link to your account - note that you must already have an account on the linked social network, and have linked it to your account in order to link your activity stream."....
its saying: "If you want to share to twitter, you need to have a twitter account."

So the user goes to their
YOUR SITE -> ACCOUNT SETTINGS -> NOTIFICATIONS -> CLICK TWITTER

Then twitter will open and ask "since you are currently logged in at twitter as SOMBODY, would you like to let this jamroom site post to your sombody twitter account?" you say YES, then the account is linked and when you share things, you'll have the option to share to twitter.
michael
@michael
07/11/18 06:33:34PM
7,816 posts

How do I add a check box in a module ?


Using Jamroom

What you're asking for is too broad. You're asking for the someone to build the module you want for you, then to write detailed instructions that you can copy so that you can have the module.

Docs: "Sponsor a module"
https://www.jamroom.net/the-jamroom-network/documentation/jamroomnet/4931/sponsor-a-module
michael
@michael
07/10/18 08:13:29AM
7,816 posts

Item list display options - can comments be truncated with a "read more..." at end?


Using Jamroom

Yes, you can use
|truncate:200
to truncate the output to the first 200 characters. May not be a good idea if you allow HTML in your comments thought as sometimes tags can get cut-off. But if you dont then choose the amount of characters you want to show and adjust.

In Site Builder you can use a custom template (down the bottom of the form.) Find the variable you want to shorten, it may be something like
{$item.comment_text}
and add the above to it
{$item.comment_text|truncate:200}
michael
@michael
07/08/18 09:23:13PM
7,816 posts

Reset Caches


Using Jamroom

Its always on. There's no reason to uncheck it. If you reset the caches, you reset the memory cache.
michael
@michael
07/08/18 07:09:28PM
7,816 posts

How do I add a check box in a module ?


Using Jamroom

In your code you have this:
// radio Title
$_tmp = array(
'name' => 'radio_title',
'label' => 3,
'help' => 4,
'type' => 'text',
'validate' => 'printable',
'required' => true,
'onkeypress' => "if (event && event.keyCode == 13) return false;"
);
jrCore_form_field_create($_tmp);

That is a form field for a 'text' field, to add a checkbox, just use the checkbox type

    $_tmp = array(
        'name'     => 'radio_checkbox',
        'default'  => 'off',
        'type'     => 'checkbox',
        'validate' => 'onoff',
        'required' => 'off',
        'label'    => "The Checkbox",
        'help'     => "You can add your explanation of what its for here"
    );
    jrCore_form_field_create($_tmp);
michael
@michael
07/07/18 05:17:40AM
7,816 posts

Signature of a hacking attempt?


Using Jamroom

no.

Its someone looking to see if you have a GIT repository on your server.

Anyone can type in any address they like to your site to see if it exists, its not hacking, its just asking a question
yoursite.com/do-you-like-avacardos
yoursite.com/my-favorite-color-is-green

It does nothing to your server, your server just replies: 404 page not found. and thats the end of it.

--edit--
a common one you will see is something like
yoursite.com/wp-admin/

they are testing to see if your site is wordpress. if it is then they will start checking all the recorded wordpress vulnerabilities
updated by @michael: 07/07/18 05:19:03AM
michael
@michael
07/03/18 09:41:28PM
7,816 posts

How do I add a check box in a module ?


Using Jamroom

izhmel:...How do I add a check box in a module ?....
Depends on where you want to add it. If you mean to a Form, you can use the Form Designer

Docs: "Using the Form Designer"
https://www.jamroom.net/the-jamroom-network/documentation/getting-started/1275/using-the-form-designer

Video Learning: "Admin Handbook: The Form Designer"
https://www.jamroom.net/video-training/85/the-admin-handbook-the-form-designer
michael
@michael
07/01/18 10:15:08PM
7,816 posts

Send Me a Private Note Button


Design and Skin Customization

This part goes in the template:
{if jrCore_module_is_active("jrPrivateNote") && $quota_jrPrivateNote_allowed == "on"}
    <div id="profile_contact">
        {jrCore_module_url module="jrPrivateNote" assign="nurl"}
        <a href="{$jamroom_url}/{$nurl}/new/user_id={$_user_id}" title="Message This Profile">{jrCore_icon icon="envelope2" size="35" class="email"}</a>
    </div>{/if}
and this part goes into a .css file somewhere
#profile_contact {
text-align: center;
}
#profile_contact .sprite_con {
display: inline;
border: none;
padding: 10px;
box-shadow:none;
}
michael
@michael
06/30/18 11:42:58PM
7,816 posts

Marketplace Issue


Genosis

Great. If you have that control option, can you upgrade it to php7? you will notice a speed increase if you can.
  120