Forum Activity for @brian

brian
@brian
01/16/17 01:19:42PM
10,149 posts

Custom Modal Help


Design and Skin Customization

Dazed:
Douglas moved comments to not use the editor and it is working but what bothers me is that all comments no longer have access to tinymce. So I can leave it as is but would like the quote option to at least work.

Yeah something would have to be done custom to support that. This is likely too complex for the forum here - contact us and we can see if someone can help out with it.

My 2 cents: Don't use the editor anywhere - not in comments, not in timeline, etc.
brian
@brian
01/16/17 01:09:44PM
10,149 posts

Custom Modal Help


Design and Skin Customization

Dazed:
Hey Brian - Yeah this was done a few years ago with help from you guys. I just wanted an easy way to do song reviews from the new music page without going to the artist audio page each time. It was a lot of clicks getting back and forth. So adding this was an easy solution.

That should be doable. You're not going to get the editor working in it very easily though. Is that required?
brian
@brian
01/16/17 01:03:50PM
10,149 posts

Custom Modal Help


Design and Skin Customization

Dazed:
I am open for an alternative way to do this :) The modal was easier before because you could view previous comments.

I'm assuming that was something custom? I'm not aware that we've ever had comments in a modal, but I could be wrong. Getting the editor working in a modal is another story however - not so easy.

What is it you're trying to accomplish?
brian
@brian
01/16/17 12:46:25PM
10,149 posts

Custom Modal Help


Design and Skin Customization

Dazed:
I think Michael hit it on the head in his reply. What bothers me about this is that the quote option does not work in the comment mode.

Quotes work in comments. I'm not sure how it would work in a modal though?
brian
@brian
01/16/17 12:41:02PM
10,149 posts

Private Notes Default Change?


Using Jamroom

Zachary Moonshine:
will it deliver the emails that had been sent already like i followed a profile i created but never got a message about it so its stuck in pending do i just need to delete the profile and start over now that i have the mailgun turned on?

No - any email sent before you were configured correctly were rejected.

There's no need to delete anything - you should be good now.
brian
@brian
01/16/17 12:32:50PM
10,149 posts

Private Notes Default Change?


Using Jamroom

Zachary Moonshine:
i had forgotten to set my mailgun key till just a few minutes ago now that i have that set i assume everyone will start getting emails after they sign up with notifications?

Correct - if you had not entered your Mailgun key in your server settings then no email was being delivered.

You can also watch your delivery log here:

https://www.jamroom.net/zachary-moonshine/hosting/domain_email_log/308/id=1045

Let me know if that helps.
brian
@brian
01/16/17 12:30:30PM
10,149 posts

Chat issues


Using Jamroom

lornawebber:
I'm not seeing it. Roy says he will look tomorrow. I don't have the same privileges as Roy so that could be why.

I still have your login and have just tested this on your site and do not see any issues. What browser/OS are you using?

Thanks!
brian
@brian
01/16/17 12:27:49PM
10,149 posts

Private Notes Default Change?


Using Jamroom

I would recommend not doing this - Private Notes is not designed as a replacement for email.
brian
@brian
01/16/17 12:25:44PM
10,149 posts

Simple Chat Pushes The Menu Off Screen


Design and Skin Customization

lornawebber:
My screen is 1280 x 1024.

Yeah at 1280 width, if your site is 1140px wide (which yours is) it is going to get pushed off. I think the best solution here is an easy to click "popup" button to bring the chat out into it's own window - we'll check that out.
brian
@brian
01/16/17 10:51:49AM
10,149 posts

Custom Modal Help


Design and Skin Customization

Dazed:
Thanks Brian. Was there in change in JR6? This was working in JR5.

No - this is not related to anything in the core - this is ALL template and javascript. The problem here is you are trying to CREATE a modal window via the "MixAP_modal()" javascript function, and it looks like you are passing a BAD DOM id to that function - all DOM ids must NOT begin with a number.

Change it to this:
<a onclick="MixAP_modal('#review-{$item._item_id}')" title="Reviews For {$item.audio_title}">{jrCore_icon icon="pen"}</a>
					  
<div class="modal" id="review-{$item._item_id}" style="display: none">
<div style="padding: 1em 1em 0">
    <h2>Reviews For {$item.audio_title}</h2>
    <div style="float: right;">
        {jrCore_icon icon="close" size="22" class='simplemodal-close'}
    </div>
</div>
<div class="wrap">
    <div style="max-height: 400px; overflow: auto">
        {jrComment_form module="jrAudio" profile_id=$item._profile_id item_id=$item._item_id}
    </div>
</div>
</div>

This also assumes that MixAP_modal() is correct as well. If that does not work you may need to style the inner div - you've got no classes on it.
  164