Forum Activity for @michael

michael
@michael
01/17/17 08:17:23PM
7,837 posts

A bit odd


Using Jamroom

only thing I can see that could trigger that warning "...jrCore_create_page_element...." in the audio module is this function:

jrAudio_form_field_audio_display()

Which is fired when an audio form field has been added via the Form Designer. Have you added any audio type Form Designer fields to anywhere?

if yes, my guess is its related to the settings in that form.
michael
@michael
01/17/17 08:11:16PM
7,837 posts

Followers page not showing


Using Jamroom

I went here

http://metaldevastationradio.com/thebeast/timeline

clicked on MORE -> FOLLOWERS and was taken to http://metaldevastationradio.com/thebeast/follow

Is that not whats happening for you?
michael
@michael
01/17/17 05:09:28PM
7,837 posts

Problem with search conditions


Design and Skin Customization

If you can provide steps for me to check out what you believe to be an issue, I can follow those steps on my dev site and see if I can reproduce the issue.

There will be no profile_id 0 so adding search="profile_id != 0" has no purpose, might as well not put it there at all.
michael
@michael
01/17/17 05:05:55PM
7,837 posts

How do i add a login box to my index page.


Design and Skin Customization

Well done.

Maybe this will help with your next step. Open a new thread for each new issue. Marking this one SOLVED.

Docs: "{if jrCore_is_tablet_device()}{/if}"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/3256/if-jrcore-is-tablet-device-if
michael
@michael
01/17/17 05:03:04PM
7,837 posts

Editing the Profile form with Form Designer.


Design and Skin Customization

When you display them in the templates you can structure them however you would like. but in the form when the user is inputting them, you need to structure them in the way they are so the form designer can understand what they are set to when the form is submitted.
michael
@michael
01/17/17 02:14:05PM
7,837 posts

Problem with search conditions


Design and Skin Customization

That sounds like its working as expected. What is the issue. What does "the last two videos are missed!!!" mean?
michael
@michael
01/17/17 01:26:16PM
7,837 posts

Problem with search conditions


Design and Skin Customization

Yeah that wont work for sure. There is no datastore with the prefix 'admin_' and even if there was, the modules datastore that you are searching on is the jrYouTube module, so its datastore is prefixed with 'youtube_'.

your search="...... must line up with a field on the datastore. maybe you called it 'youtube_admin_tv' perhaps if you added that field to the youtube modules form via the Form Designer.
michael
@michael
01/17/17 01:13:39PM
7,837 posts

Problem with search conditions


Design and Skin Customization

left hand column
{jrCore_list
module="jrYouTube"
order_by="_created desc"
search="profile_id != 1"
pagebreak="25"
page=$_post.page
} 
Right hand column
{jrCore_list
module="jrYouTube"
order_by="_created desc"
search="profile_id = 1"
pagebreak="25"
page=$_post.page
} 

Try taking out your row template and see what it returns when using the default. Could be an issue with your row template.

Also the admin user viewing the list WILL see any items from private profiles, whereas normal users will not, so that could be the difference you see in the lists.
Screen Shot 2017-01-18 at 10.11.02.png Screen Shot 2017-01-18 at 10.11.02.png - 1.1MB
michael
@michael
01/17/17 01:06:11PM
7,837 posts

Problem with search conditions


Design and Skin Customization

Your jrCore_list call looks like it should be working fine to me.
michael
@michael
01/17/17 01:01:25PM
7,837 posts

Problem with search conditions


Design and Skin Customization

not clear on the goal. You want all Youtube videos except if the video is from profile_id 1 correct?
  288