Forum Activity for @michael

michael
@michael
12/08/16 08:11:51PM
7,832 posts

Little Help With Config Settings


Design and Skin Customization

You can also do this if you know the name:
jrCore_delete_setting('jrPoll', 'self_voting');

It will work in the same way that
jrCore_register_setting('MixAP',$_tmp);
worked to ADD the setting, that function by itself will delete the unwanted setting. thats probably easier once you know the name.
michael
@michael
12/08/16 08:08:41PM
7,832 posts

Home Icon/link action


Design and Skin Customization

Not sure how to answer. The thread topic is "Home Icon/link action". Not sure how to solve it.

Yes, templates ( .tpl ) files are the templating system for jamroom. You can use them to build whatever you want. Javascript, HTML and functions all work from within templates.

a set of templates are packaged together into a skin. Only one skin runs at a time. It is possible to copy parts from one skin to another skin but in order for it to work you'd need to copy all the parts. Identifying which parts those are is probably going to be the biggest task.
michael
@michael
12/08/16 08:03:24PM
7,832 posts

Little Help With Config Settings


Design and Skin Customization

Use Firebug to see what the ID's of those fields are. guessing they are differently named. If they are you'll need to go into the DB and remove the one you dont want from the jr_jrcore_setting table.

Modules write settings to the database, once they are written, they are there, so if you change the name of the setting you've registered, it re-registers as a different thing, it doesnt delete the old setting name.
michael
@michael
12/08/16 07:59:21PM
7,832 posts

Small Bug Missing Image Media Pro


Using Jamroom

Looks like its got one in the next version. Thanks very much.

Really appreciate being told of this kind of thing.
michael
@michael
12/08/16 07:42:15PM
7,832 posts

Little Help With Config Settings


Design and Skin Customization

Not understanding the question. You have 2 fields added, 2 fields show up. Whats the problem?

Run the integrity check. ( could be that you changed a name, then deleted the code expecting that would delete the field, it won't. Fields are stored in the database once created. )
michael
@michael
12/08/16 07:37:53PM
7,832 posts

Continued Calendar / Event challenges


Using Jamroom

This is what I needed:
http://lewwwp.com/svetlana/profile_activity/7075

That tells me that the string you're after is found in:
/modules/jrAction/templates/item_action.tpl

And is controlled by language string 143 of the event module.

It can be updated at:
YOUR-SITE.COM/event/admin/language

(unless you've created a skin over-ride for that template)
michael
@michael
12/08/16 06:53:47PM
7,832 posts

Home Icon/link action


Design and Skin Customization

Is this the same question we answered via tickets still? Where the issue was the quota settings or a different question?

Feeling a bit of de-ja-vu on the is topic.
michael
@michael
12/08/16 06:49:11PM
7,832 posts

Continued Calendar / Event challenges


Using Jamroom

You said:
Quote: And that leaves only #4 = where can I/we find the "has posted an" and change it to "has posted a"? [can't find this in language editor]
so I said:
Quote: [i'm] ....Not seeing "has posted an" or "has posted a"......
.....anywhere coming from Jamroom. I don't understand the location to see '.......has posted an......' in the site where you're trying to change.

If you know the location where that can be seen, please post a URL so I can understand the location you mean.

Thanks.
michael
@michael
12/08/16 06:01:55PM
7,832 posts

Little Help With Config Settings


Design and Skin Customization

Then:
    // Favorite Song ID
    $_tmp = array(
        'name'     => 'favorite_song',
        'type'     => 'text',
        'default'  => '',
        'validate' => 'not_empty',
        'label'    => 'Favorite Song',
        'help'     => 'Some Helpful Info.',
        'order'    => 8,
       'section' => 'Hail Mary',
    );
    jrCore_register_setting('NewSkin',$_tmp);
michael
@michael
12/08/16 06:00:02PM
7,832 posts

Little Help With Config Settings


Design and Skin Customization

Depends what you want the tab to be called
    // Favorite Song ID
    $_tmp = array(
        'name'     => 'favorite_song',
        'type'     => 'text',
        'default'  => '',
        'validate' => 'not_empty',
        'label'    => 'Favorite Song',
        'help'     => 'Some Helpful Info.',
        'order'    => 8,
       'section' => 'SOME TAB NAME',
    );
    jrCore_register_setting('NewSkin',$_tmp);
  309