Forum Activity for @michael

michael
@michael
08/14/15 08:26:51PM
7,832 posts

Forums in groups not like profile forum


Design and Skin Customization

not understanding the question sorry andy, got a screenshot?

We're talking about forums and group stuff here if is related at all:
https://www.jamroom.net/the-jamroom-network/forum/new_posts/32300/notification-problem
michael
@michael
08/14/15 05:39:39PM
7,832 posts

Shifted profile from one quota to another and it disappeared


Using Jamroom

looking now. You've got something in there that's causing your 'profile_url' to be cleared somehow.

Let you know when I have more.

--edit--
You've got something in there thats causing the profile_url to be cleared whenever the profile info is saved. Not sure why yet.
updated by @michael: 08/14/15 09:29:23PM
michael
@michael
08/14/15 05:34:43PM
7,832 posts

Notification problem


Using Jamroom

CLARIFICATION, the way its working now:
---------------------------------
* when a user is watching the group discussion they will be notified when a new post is added to the discussion. They will only be sent one notification.

This notification message will include this text:
Quote: There may also be other replies, but you will not receive any more notifications until you visit the discussion again.

So if there is a hot discussion that tom is watching
* tom writes a post on the discussion, then closes the browser
* bill writes a reply
* greg writes a reply
* sally writes a reply
* dave writes a reply

tom will only get ONE email saying there are more replies to the post until he visits the group discussion again (page refresh) or posts a new comment. Either a page refresh or posting a new comment will set him up to receive a new notification of posts.
---------------------------------

Need to ask the others about changing it to a mail every response. You want an option for that at the system level?
michael
@michael
08/14/15 05:03:24PM
7,832 posts

Unable to copy xxxxxxx.tpl to template cache directory error


Using Jamroom

That's a very common error during development.

The usual cause of it is requesting a template file that doesn't exist.

Any of these would set it off:
{jrCore_include template="a-file-that-doesnt-exist.tpl"}
{jrCore_list module="jrAudio" template="a-file-that-doesnt-exist.tpl"}

or in the jrCore_parse_template() function.

It usually happens to me when I get one of the parameters wrong
jrCore_parse_template('some-template.tpl', $_rep, 'jrVideo')
when I'm actually working in the jrAudio module. the 'some-template.tpl' gets looked for in the jrVideo's /templates directory, its not found, so you see that error.

The solution is to either upload the file so it can be found or point the call to the correct location where the file actually is.
michael
@michael
08/14/15 01:57:56AM
7,832 posts

Editing a page layout with Sitebuilder


Using Jamroom

Great explanation, thanks. :)

This profile is suffering from the same issue we've seen before. I'm not sure if its something that's got a way to trigger, or is a left over thing.

You haven't seen any of the other profiles we fixed up earlier revert at all have you?

anyhow, I've got indexing's profile_url set agian. for some reason it was blank.

http://publishsciencenet.jamroomhosting.com/indexing

My first guess is we just missed fixing it up last time. I hope thats all it is. Other case-scenario is doing some updating of something causes the profile_url to be written as empty. If thats the case, we need to figure out the steps to make that happen, then I can find a way to stop it happening.
michael
@michael
08/14/15 01:42:34AM
7,832 posts

Option to hide site builder in mobile


Using Jamroom

There is the option to turn off the buttons when your not using it:
ACP -> SITE BUILDER -> GLOBAL CONFIG -> show site builder button

Its not mobile specific, but once your done Site Building it could be an option.
michael
@michael
08/13/15 11:50:24PM
7,832 posts

Profile URL problem


Using Jamroom

1: shouldn't be able to happen. (except maybe via an import process, not sure there). When you signup the email needs to be unique or you will get prompted with "that username is already taken". adding a dot to the username "five" and "five." makes no difference, the error will still be "That User Name is already being used - did you already create an account previously?"

2: the unique identifier is the the profile_id which is a number. You can change the users profile name after the account has been created and no harm will be done. They will keep their same profile_id number so all the content will be still on their profile after their name has been changed.
michael
@michael
08/13/15 11:42:45PM
7,832 posts

Add To Cart Button Appearing For All Items On List


Design and Skin Customization

Thats an easy one, check there is a price for the item before making a button for it. ;)

{foreach $_items as $item}
                          
{if isset($item.audio_file_item_price) && $item.audio_file_item_price > 0}      
    {jrFoxyCart_add_url module="jrAudio" item=$item field="audio_file" assign="cart_url"}

<a href="{$cart_url}">                                
<div class="aaddicon" alt="Buy" title="Buy {$item.audio_title} by {$item.profile_name}"><i class="fa fa-shopping-cart"></i></div>
</a>
{/if}
{/foreach}
michael
@michael
08/13/15 11:29:18PM
7,832 posts

Getting Complaints About Mobile Use ?


Using Jamroom

The editor shouldn't be showing up on mobile at all.
michael
@michael
08/13/15 10:13:10PM
7,832 posts

Notification problem


Using Jamroom

This should be sorted out in jrGroupDiscuss ver 1.1.4 which is in the marketplace now.
  499