Forum Activity for @paul

paul
@paul
09/29/18 05:24:33AM
4,335 posts

the gender feature


Using Jamroom

Yes, this can be done. The first thing would be to add a gender field to the profile account. Do this with the Form Designer.
You can then modify templates to test for this field and show appropriate text -

{if $profile_gender == 'f'}
    she's shared a post
{else}
    he's shared a post
{/if}

A lot of the default templates use embedded module and skin language strings which are by default gender unspecific, so you might meed to edit those and add more for male/female text strings as appropriate.

Hope that makes sense.
updated by @paul: 09/29/18 05:24:52AM
paul
@paul
09/29/18 02:38:33AM
4,335 posts

New Module Releases


Announcements

This week's new module release has come early as I'm out of town on Monday :-)

Background Creator

A free module that provides an admin tool to upload and select global site background images.

https://www.jamroom.net/the-jamroom-network/networkmarket/613/background-creator
paul
@paul
09/28/18 10:34:37AM
4,335 posts

when click a profile how can i see its timeline not mainpage


Using Jamroom

Quote: not.. i want show on wall only user own entries

That is how it works by default (Are we going round in circles here?)

Reset that Timeline module template then :-)

But above you say -
Quote: anyway i understand that i should add this code to
{jrCore_list module="jrAction" search="action_mode = signup" order_by="_created DESC" limit=10}

Sorry but I'm very confused now as to what you are wanting.
paul
@paul
09/28/18 09:49:47AM
4,335 posts

when click a profile how can i see its timeline not mainpage


Using Jamroom

Quote: You'll need to put the custom {jrCore_list...} call in the Timeline module's item_index.tpl template. Lines 75, 77 and 97. I think we've told you how to do this in another thread.

So you have done this, in the Timeline module's item_index.tpl template? - YourSite.com/timeline/template_modify/template=item_index.tpl
paul
@paul
09/28/18 08:19:21AM
4,335 posts

Some language strings


Installation and Configuration

You also need to check and translate the module language strings. For instance, "has signed up" is in the User module.
Hope that helps
paul
@paul
09/27/18 09:27:39AM
4,335 posts

when click a profile how can i see its timeline not mainpage


Using Jamroom

resif:
ok i will buy soon all with jamroom express
but why i lost new signups and others when i add this code.. try with both see result

{jrCore_list module="jrAction" search="action_mode = signup" order_by="_created DESC" limit=10}
{jrCore_location("`$jamroom_url`/`$profile_url`/timeline")}

That's because you are redirecting to a new page. You'll need to put the custom {jrCore_list...} call in the Timeline module's item_index.tpl template. Lines 75, 77 and 97. I think we've told you how to do this in another thread.
paul
@paul
09/27/18 08:23:15AM
4,335 posts

when click a profile how can i see its timeline not mainpage


Using Jamroom

Yes, you could also do it with the Profile Tweaks module (forgot about that module), but that would also also give your users the option to to select other profile landing pages for themselves, which you may or may not want.
paul
@paul
09/27/18 04:14:36AM
4,335 posts

when click a profile how can i see its timeline not mainpage


Using Jamroom

Simplest way then is to replace the content of the Elastic2 skin template profile_index.tpl with this one line of code -

{jrCore_location("`$jamroom_url`/`$profile_url`/timeline")}

That will redirect it to the timeline view.

hth
paul
@paul
09/26/18 01:22:13PM
4,335 posts

when click a profile how can i see its timeline not mainpage


Using Jamroom

Is this still the Elastic2 skin? If so, when you go to a profile you do see the timeline on the main profile page.
If not Elastic2, what skin are you using?
  83