solved you may need to update this documentation..its not working

michael
@michael
10 years ago
7,720 posts
That's not documentation. Its discussion in the forums.
boplive
@boplive
10 years ago
345 posts
ahhhh...ok...koool

Any chance when you guys have a moment, pls add to your list of many things to do :)

Its a good action to add to the site..

keep up the good work guys :)
michael
@michael
10 years ago
7,720 posts
Whats the question? What are you trying to do, and what is not working in your situation? are there any error messages or other info?
boplive
@boplive
10 years ago
345 posts
hi michael,

the code below is bringing up a blank page...but I got mines to work anyway with a different call...

{jrCore_list module="jrAction" profile_id=$_profile_id include_followed=true order_by="_item_id numerical_desc"}
brian
@brian
10 years ago
10,148 posts
boplive:
hi michael,

the code below is bringing up a blank page...but I got mines to work anyway with a different call...

{jrCore_list module="jrAction" profile_id=$_profile_id include_followed=true order_by="_item_id numerical_desc"}

This will bring up a blank page if used anywhere outside of a profile, since $_profile_id is only defined in profile templates.


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
boplive
@boplive
10 years ago
345 posts
boplive:
hi michael,

the code below is bringing up a blank page...but I got mines to work anyway with a different call...you may want to change it for others to use :)

{jrCore_list module="jrAction" profile_id=$_profile_id include_followed=true order_by="_item_id numerical_desc"}

it's from this documentation
https://www.jamroom.net/the-jamroom-network/documentation/howto/1053/howto-create-a-list-of-all-user-actions-site-wide
boplive
@boplive
10 years ago
345 posts
boplive:
boplive:
hi michael,

the code below is bringing up a blank page...but I got mines to work anyway with a different call...you may want to change it for others to use :)

{jrCore_list module="jrAction" profile_id=$_profile_id include_followed=true order_by="_item_id numerical_desc"}

it's from this documentation
https://www.jamroom.net/the-jamroom-network/documentation/howto/1053/howto-create-a-list-of-all-user-actions-site-wide

AAAAAAAAAAAAHHH..ok....got it...:)

now I understand...due to the > > _profile_id is only defined in profile templates.
michael
@michael
10 years ago
7,720 posts
Whenever something isn't working, I find a good way of working out what is going on is to reduce it to as simple as possible, then build back in one step at a time.

So if:
{jrCore_list module="jrAction" profile_id=$_profile_id include_followed=true order_by="_item_id numerical_desc"} 

Isn't working, start with the simplest form of that same statement
{jrCore_list module="jrAction"} 
see if that works and go from there.

Tags