Forum Activity for @michael

michael
@michael
09/10/14 11:24:18PM
7,832 posts

send the user back to that location once logged in?


Jamroom Developers

The login is done from the login screen:

YOUR-SITE.com/user/login

So the user would be on that screen when they logged in. There would be no point in returning to the same screen after they have logged in.

There is no option to set where to go, you'd have to do something custom.
michael
@michael
09/10/14 08:31:44PM
7,832 posts

How To Move jrLike and jrTags Up Above jrComments


Design and Skin Customization

make sure your system is all up to date because I tested it here and R&B came out as R&B.
michael
@michael
09/10/14 07:59:41PM
7,832 posts

How To Move jrLike and jrTags Up Above jrComments


Design and Skin Customization

Here's the docs for that:

"HowTo: Re-order Item Detail Features"
https://www.jamroom.net/the-jamroom-network/documentation/howto/2009/howto-re-order-item-detail-features

-- update --

The lowercase is probably done in your CSS file as im not seeing that here.
updated by @michael: 09/10/14 08:01:17PM
michael
@michael
09/10/14 07:47:42PM
7,832 posts

Revisiting blogs...


Using Jamroom

Take a look at the datastore for one of the posts that should show up and make sure that it doesn't match the exclusion criteria you have.

If its what you've asked for it should show up.

If should show up but doesn't then we need to locate why it doesn't show up.
michael
@michael
09/10/14 07:17:09PM
7,832 posts

Revisiting blogs...


Using Jamroom

check the results against what you've asked for to figure out what you've got.

Asked for (from the query above):
* get me blog posts
* only 1 per profile_id
* order them by newest at the top
* make sure the profile_quota_id is one of these 4,5,7,8,9,16,18,19,21,22,23,24,25,26
* make sure the blog category is NOT about,news,welcome,latest,featured,exclusive
* I only want a total of 4 posts.
michael
@michael
09/10/14 06:39:19PM
7,832 posts

Insert extra fields in the search form..?


Using Jamroom

Its hard to explain without building it all first then showing you, but I'll try.

/skins/YOUR-SKIN/search_form.tpl (The url for that is 'yoursite.com/search_form'.)
You first need to create the form. It will have the fields you want:
* search_xxxxxx
* search_location

You then wrap that in a form and submit it either to itself of to another location:
/skins/YOUR-SKIN/search_results.tpl

The url for that is 'yoursite.com/search_results'.

Into search_results.tpl you put a list call:
{jrCore_list module="jrProfile" search1="profile_xxxxxxx like `$_post.search_xxxxxx`" search2="profile_location like `$_post.search_location`"}

That will get you a list of what your after. the things you need to decide are where are you searching for 'drummer' and put in the correct location to search.

There's other ways to do it too like using a module to build the form and retrieve the data but that ways a bit harder to explain.

If your interested in the module way of doing things perhaps start with:

"Developers Guide to Customizing Jamroom"
https://www.udemy.com/developers-guide-to-customizing-jamroom

(its free for backstage members here https://www.jamroom.net/backstage/forum/resources/3112/100-off-coupon-for-developers-guide-to-customizing-jamroom-udemycom-course )
michael
@michael
09/10/14 06:27:06PM
7,832 posts

www. causing page loading issues


Using Jamroom

Stevex's got a great write up on how to fix it here:

"htaccess Tips"
https://www.jamroom.net/ultrajam/documentation/code/1433/htaccess-tips

If you force it to the one that works, then you've fixed it.
michael
@michael
09/10/14 06:19:56PM
7,832 posts

Search Button On Action, Jumping To Top


Design and Skin Customization

I don't understand what you are trying to communicate.
michael
@michael
09/10/14 03:59:07PM
7,832 posts

How can i pass multiple parameter in module search?


Jamroom Developers

There are many examples of it in the code datastore queries.

Here is one from the action module:
        //actions
        $_sp = array(
            'search'        => array(
                "_profile_id = {$params['profile_id']}"
            ),
            'skip_triggers' => true,
            'limit'         => 1000000
        );
        $_rt = jrCore_db_search_items('jrAction', $_sp);

If you could say what your trying to retrieve that would help answering the question.

From you query it looks like your trying to get a specific set of profile names.

        //profiles
        $_sp = array(
            'search'        => array(
                "profile_name = 'something'"
            ),
            'limit'         => 500
        );
        $_rt = jrCore_db_search_items('jrProfile', $_sp);

If you need multiple search strings then add to the array

        //profiles
        $_sp = array(
            'search'        => array(
                "profile_name = 'something'",
                "profile_xxxx = 'xxxxxxxxx'"
            ),
            'limit'         => 500
        );
        $_rt = jrCore_db_search_items('jrProfile', $_sp);
michael
@michael
09/09/14 11:12:52PM
7,832 posts

Does Jamroom 5 have Vault Item Manager?


Using Jamroom

Currently there isn't a way to give away items. I'll add it to the tracker for future releases.
  663