Forum Activity for @claygordon

Clay Gordon
@claygordon
01/30/15 01:08:30PM
733 posts

missing an item key?


Ning To Jamroom

There is the database admin, but that's a very different beast at a very different URL.
Clay Gordon
@claygordon
01/30/15 01:06:46PM
733 posts

File uploads ... free file downloads


Ning To Jamroom

Douglas -

My confusion reading the Marketplace description of the module.

:: Clay
Clay Gordon
@claygordon
01/30/15 10:55:26AM
733 posts

File uploads ... free file downloads


Ning To Jamroom

Sorry - I wasn't being completely clear

... I don't want to set up a FoxyCart account yet or install that plugin.
Clay Gordon
@claygordon
01/30/15 10:10:01AM
733 posts

ning to jamroom and sitebuilder video (posted on creators)


Ning To Jamroom

SE -

I think it might be a good idea to let the JR people upload the video to someplace on the Ning-to-Jamroom forum in case Ning takes offense!
Clay Gordon
@claygordon
01/30/15 10:08:13AM
733 posts

File uploads ... free file downloads


Ning To Jamroom

At this point, I don't want to sell digital downloads.

However, I do want to offer the ability to upload PDFs in one of my quotas so that members can embed them in posts and comments.

Possible?
updated by @claygordon: 03/03/15 03:21:09AM
Clay Gordon
@claygordon
01/30/15 10:04:16AM
733 posts

Ning sign up questions


Ning To Jamroom

Dave -

I just did this a couple of nights ago and had no problems with it, remembering to update both user/account and user/signup.

Have you run an integrity check recently? Repairing and optimizing the databases? I had been resetting caches and doing the module and skin integrity checks. When I did the database repair and optimize it fixed a bunch of content display issues.
Clay Gordon
@claygordon
01/30/15 10:00:11AM
733 posts

Quoting text and Editing comments in forum posts


Ning To Jamroom

Brian -

Starting at line 70 of the file. No extra characters or spaces here:

[quote="{$_itm.user_name}"]
Clay Gordon
@claygordon
01/29/15 01:15:28PM
733 posts

Quoting text and Editing comments in forum posts


Ning To Jamroom

1) Which template so I can look?
2) No urgency on fixing this for me - I just didn't know if it was me or if you already knew about it.

NN2R.
Clay Gordon
@claygordon
01/29/15 12:25:39PM
733 posts

Quoting text and Editing comments in forum posts


Ning To Jamroom

Brian -

1) I am not sure how this could happen as the  is being inserted in the body of the quoted comment at the end of sentences with two or more spaces. That regularity makes me thing it's a scanner issue, not something I might have done in comment_form.tpl. I searched for an  in that form and it's not there.

2) There's no redirect to the last page of comments - or did I misunderstand what you meant by redirect?
Clay Gordon
@claygordon
01/29/15 06:58:08AM
733 posts

Feature Request: Two New Stats Needed on Profile Page


Ning To Jamroom

With Michael's help I modified the Stats block inside profile_sidebar.tpl to add the "all" to the end of the jrGallery module call inside the foreach to modify the URL to show all images, not duplicate the functionality of the Galleries menu item.

{foreach $_stats as $title => $_stat}
{jrCore_module_url module=$_stat.module assign="murl"}
<div class="stat_entry_box"{if $_stat.module == "jrGallery"}
     onclick="window.location='{$jamroom_url}/{$profile_url}/{$murl}/all'"><span class="stat_entry_title">{$title}:</span> <span class="stat_entry_count">{$_stat.count|default:0}</span></a>
{else}
     onclick="window.location='{$jamroom_url}/{$profile_url}/{$murl}'"><span class="stat_entry_title">{$title}:</span> <span class="stat_entry_count">{$_stat.count|default:0}</span></a>
{/if}   
</div>
{/foreach}

Inside the if statement inside the div "stat_entry_box" I can test e.g., {if $_stat.module == "jrForum"}, and get the number of posts/comments there and format them using the same structure as the on.click handler?

I can use the same for jrGroupDiscuss?
  22