Forum Activity for @michael

michael
@michael
07/18/18 04:30:12PM
7,820 posts

How to change the default settings for Notifications?


Using Jamroom

only admin gets notified when new members join the network
michael
@michael
07/16/18 04:37:17AM
7,820 posts

How do we put alt tags in images ?


Using Jamroom

Really depends on where you're talking about.
<img src="(some url)" alt="description of the image">

or if its in the tempates via jrCore_image, then
{jrCore_image skin="jrYourSkinHere" image="menu.png" alt="menu"}
michael
@michael
07/16/18 04:34:45AM
7,820 posts

France - FIFA World Cup winners!


Off Topic

Congratulations :) :thumbs-up:
michael
@michael
07/16/18 04:33:36AM
7,820 posts

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


Using Jamroom

Yes, you're right, it should be NETWORKS.

That looks like there is a setting at twitter that needs checking.

Try the steps found here:
https://stackoverflow.com/questions/10567305/why-does-my-twitter-application-access-level-is-read-only-and-how-can-i-change

Quote:
1. Go to dev.twitter.com/apps
2. Select your app
3. Go to the Settings tab
4. Look for 'Application Type'
5. Change it to Read and Write

networks.jpg networks.jpg - 71KB
michael
@michael
07/13/18 10:02:47PM
7,820 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,820 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,820 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,820 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,820 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,820 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
  120