Forum Activity for @michael

michael
@michael
01/14/25 08:17:15PM
7,769 posts

html audio player


Design and Skin Customization

How did you add the player? It's going to be something to do with the code you used either direct linking to the wrong URL or a counter call that exists in the default players thats missing from your new player.
michael
@michael
01/09/25 04:29:57PM
7,769 posts

Profile Tweaks


Design and Skin Customization

From either of those two locations the fields will be saved to the users 'profile' datastore so can be used in any location where the other profile stuff is found, so if in the template you see {$_profile['profile_name']} then you can use {$_profile['profile_tweaks_css3']} to get its value back out.

If in the templates you see {$profile_name} then you can use {$profile_tweaks_css3} to get its value.

if you put {debug} then you can see what values are available to you in templates.
michael
@michael
01/09/25 04:27:21PM
7,769 posts

Profile Tweaks


Design and Skin Customization

In that module above in the include file under the other form fields if you want to add an image upload, add this form field code
        $_tmp = array(
            'name'     => 'profile_tweaks_css3',
            'label'    => "Custom CSS 3",
            'help'     => "Some other desctiption about what this field does",
            'type'    => 'file',
            'extensions' => 'jpg,png',
        );
        jrCore_form_field_create($_tmp);
That will allow for upload of .jpg or .png files.

If you want those fields to change from the profile tweaks module's form to the PROFILE form instead change the top line from
    if (!empty($_data) && $_data['form_view'] == 'jrProfileTweaks/customize') {
to
    if (!empty($_data) && $_data['form_view'] == 'jrProfile/settings') {

this.jpg this.jpg - 559KB
michael
@michael
01/09/25 04:17:50PM
7,769 posts

Profile Tweaks


Design and Skin Customization

Here's a cut down module that just has a listener for that form. It has a couple of examples of form fields being added to the page.

Hopefully this gives you a good idea of how to start.
xxTweaks.zip - 1KB
michael
@michael
01/09/25 02:40:30PM
7,769 posts

Profile Tweaks


Design and Skin Customization

Right, gotcha. Then: currently there is no Form Designer button for that form. Any extra fields would need to be added via a module.

You do have the option of allowing them to change skins, but making one for everybody would be a bigger task than just making a module that allowed them to input .css directly.
on.jpg on.jpg - 835KB
michael
@michael
01/08/25 08:31:40PM
7,769 posts

Cloud Hosting


Installation and Configuration

Whats the problem with the email based domains. Yeah email is not great on jamroom hosting, there is no included mail server.

There's ways around it but its not as simple as some hosting companies.
michael
@michael
01/08/25 04:22:55PM
7,769 posts

Profile Tweaks


Design and Skin Customization

maybe, not sure.... What the Form Designer is is a way to tap into the functionality that modules have but without having to look at code. If you're comfortable looking at code then you have the most amount of flexibility.

Jamroom at its core is for developers then stuff to allow non-developer access has been layered on top so the most access you have is at the code level. Through systems like the "events and listeners" system pretty much anything is adjustable.

Maybe if I understood the goal I can better understand the question.

--edit--
an example: Pretty much all of my sites have a 'tweaks' type module that in-itself doesn't do anything specific but I'll put listeners into it for any adjustments I want to make.
updated by @michael: 01/08/25 04:26:27PM
michael
@michael
01/08/25 04:19:39PM
7,769 posts

searching user name


Using Jamroom

Yeah that's more custom. Probably customizing the search template for profiles would be the closest I could suggest, but even that's not going to be great, like if you search for 'elvis' and the artist name is 'elvis' then the profile would show and maybe you put a list of x number of his songs but its still not going to work the other way. By searching "always on my mind" its going to find the song, not the profile.
michael
@michael
01/08/25 04:15:25PM
7,769 posts

JrTags


Design and Skin Customization

Then you don't want that code. Probably {jrCore_search.... is the code you're after. If you tag an audio file with 'avacardo' and 'bannana' then on the audio item it will have those tags shaped like this
audio_tags
,avacardo,strawberry,

A simple call would be
{jrCore_list module="jrAudio" search1="audio_tags like %avacardo%"}
michael
@michael
01/08/25 04:09:35PM
7,769 posts

multiple search filters


Design and Skin Customization

Sure you can see that sort of being done in that link where it adds the genre filter to the link. Checkboxes could be one way to do it. Another way could be to have A B C D E F .... to filter by ??? category maybe... nah a bunch of checkboxes is a good idea.
1