Forum Activity for @michael

michael
@michael
06/17/14 06:39:48PM
7,832 posts

jrCore_db_search_items and return_count


Suggestions

Cheers @stevex, glad you could understand.

If your just wanting a count, then I'd also add in the 'skip triggers' so you dont make all the other modules add in all the other stuff.
function view_jrBlog_test($_post, $_user, $_conf)
{ $_sp = array( 'return_count' => true, 'skip_triggers' => true, 'limit' => 999999 ); $_rt = jrCore_db_search_items('jrBlog',$_sp); return $_rt; }
michael
@michael
06/17/14 03:16:11AM
7,832 posts

jrCore_db_search_items and return_count


Suggestions

The return count will show the total number of items in the query you request.

So I suggested to make a query using page and pagebreak instead.

Check out these docs:
"{jrCore_list}"
http://www.jamroom.net/the-jamroom-network/documentation/development/89/jrcore-list

jrCore_list is just a wrapper for the search functionality that is available in the templates, so the same rules apply.

If you limit it to 10, you get 10.

If you pagebreak it at 10 then on page 2 you will get 11~20 etc. so if you dont include a pager to move to the next page, then you have all the results but only show 10 of them.

Its just one idea, im sure there are other ways to get there too.
michael
@michael
06/17/14 02:54:34AM
7,832 posts

jrCore_db_search_items and return_count


Suggestions

so dont set the limit to 10.

Set the paginate to 10 and only show the first page.
michael
@michael
06/17/14 01:45:41AM
7,832 posts

create video error


Jamroom Developers

Do you have a way to consistently reproduce the error so that I can try it out here? I've not run into that error yet.
michael
@michael
06/14/14 03:07:55AM
7,832 posts

Google analytics problem


Installation and Configuration

Thats the problem then. It should. Try a different skin.
michael
@michael
06/14/14 01:17:11AM
7,832 posts

Google analytics problem


Installation and Configuration

open the page. See if the code is in there.

Should look something like this:
<script type="text/javascript">
        (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create','UA-123456-11', { 'clientId': 'bBBBBBB-BBBBB-BBBB-BBB-fBBBBBBBBBBc' });
ga('send','pageview');
    </script>
michael
@michael
06/13/14 10:29:16PM
7,832 posts

Google analytics problem


Installation and Configuration

Fresh install of the module looks like this for me:
screenshot_google_analytics_config.jpg screenshot_google_analytics_config.jpg - 48KB

updated by @michael: 06/13/14 10:29:31PM
michael
@michael
06/13/14 02:40:26AM
7,832 posts

Oneall and custom signup forms


Jamroom Developers

andersda:
How would I let someone sign up as a member with social login and then collect additinal information later in order to move them to another quota?

Without presuming to design your module for you, one way could be to get them to fill in a form and then change their quota programatically if its filled in as needed.

andersda:
If I don't use the social login, can I still allow users to manage their social accounts, and share their updates?
The networks the user is connected to are decided by that user in their NETWORKS tab under "Account Settings".

andersda:
How can they control which items in their feed get shared? I ask because we have some custom actions and want to make sure we can control what gets shared.

All items in their feed get shared.

They can disable sharing by unchecking the checkbox on NETWORKS tab.
michael
@michael
06/12/14 08:49:29PM
7,832 posts

add the user login form to any page is causing an error


Design and Skin Customization

Try wrapping your code in [ code ]the code in here [ /code ] blocks.

remove the spaces between the bracket and the word 'code'
michael
@michael
06/12/14 07:00:00PM
7,832 posts

Assigning another User to main profile


Jamroom Help

Only module enabled for that quota will appear on the users profile.

If the profile is allowed to upload xxxxxxxxxxx then the tab will be there.
updated by @michael: 06/12/14 07:00:54PM
  688