Forum Activity for @michael

michael
@michael
09/18/16 11:14:48PM
7,826 posts

Latest Comments - HTML Markup Displayed


Using Jamroom

Not enough info to setup to see it happening. I'm reading "I have some custom templates. The templates have a quote option button. HTML markup is appearing when the button is used. How do I fix it?"

Need more info.
updated by @michael: 09/18/16 11:15:00PM
michael
@michael
09/18/16 11:12:38PM
7,826 posts

OneAll System Feed


Design and Skin Customization

Please include setup instructions along with your question. Its unclear what the subject is. Im sure if I went searching I could probably locate something to fit the description, but to save me time and incorrect guesses.........

Thanks :)
michael
@michael
09/18/16 11:08:44PM
7,826 posts

Recurring errors in Activity Log related to JrGallery


Using Jamroom

The issue is this url:
http://stitchingbuddhas.com/testlisa

On that page the activity timeline is showing an entry that reads "5 days ago TestLisa" gallery was created, but it didn't have a gallery_title_url, so now when that activity action is show, it tries to get some of the images from that gallery to show on the timeline.

It fails because there is no gallery_title_url. When it searches for and fails to find any images because there was no gallery_title_url the system thinks you this is something you want to know about, so logs it to the activity log.

Its not a system stopping issue, but if you wanted to get rid of it delete that timeline entry.
michael
@michael
09/18/16 09:17:37PM
7,826 posts

Recurring errors in Activity Log related to JrGallery


Using Jamroom

The errors seam to be as a result of a datastore request to get something, then the gallery_title_url not provided.

I will go try to recreate it here. Once I understand how its being triggered I can tell you what needs to be done or fix it if its a bug.

What the error is saying is "You've told me to go get something from the datastore, but forgotten to tell me what to get".

Suspect its probably related to the "Group by Gallery" setting, but will confirm once I know more.

Thanks for the detailed report of the issue, makes things easier for me :)
michael
@michael
09/18/16 09:12:44PM
7,826 posts

PayPal Buy It Now


Installation and Configuration

:) glad you got it sorted. When you have many quotas comparing what they are set to can be difficult, which is why the "Quota Compare" tool was created:

You can find that "Quota Compare" tool at:
ACP -> MODULES -> PROFILES -> PROFILES -> TOOLS -> QUOTA COMPARE
your-site.com/profile/quota_compare
michael
@michael
09/18/16 09:06:31PM
7,826 posts

Can I modify multiple data records at once, in this case image data that I messed up while trying to modify a form?


Using Jamroom

LesRinchen:....For example, I wasn't sure if it would be okay for images to go into a gallery called "Gallery Images" while the existing images brought over from Ning are in galleries named with the profile name.....

True, this isn't the ideal situation. Usually the "Group By Gallery" would be set to be off, then profiles would start adding stuff to their galleries and there would be no point where multiple galleries would be created.

If that was the setup I was after I would change all the users galleries in that quota to be "Gallery Images" so there was only 1 gallery. Probably use the "Batch Item Editor" and update the gallery_title field.

I see you have a different thread for the activity log issue, I'll reply to that.
michael
@michael
09/16/16 11:34:02PM
7,826 posts

Can I modify multiple data records at once, in this case image data that I messed up while trying to modify a form?


Using Jamroom

Looks like someone's thought about this before me, in the changelog.txt im seeing:
Version 1.4.0:
 - New: "Group by Gallery" Quota Config to change profile index page layout for gallery images
 - Change: Gallery Title is now optional and can be hidden in Form Designer

The gallery title is allowed to be turned off exactly for the purpose you are thinking about.

The + button adds new images to the gallery. Even thought the TITLE is not visible, a title is assigned, all the images go into a gallery called "Gallery Images"

So Im now wondering why it didn't work as expected for you.
* uncheck "Group by Gallery" from the QUOTA CONFIG
* use the Form Designer to hide the Gallery Title.

Should have been all that was necessary.
updated by @michael: 09/16/16 11:34:29PM
michael
@michael
09/16/16 10:33:40PM
7,826 posts

Tag cloud widget is only displaying 9 tags even though the limit is 30


Using Jamroom

The construction script that builds the cloud is this one:
https://github.com/lucaong/jQCloud

If it doesn't have enough space to fit all the words in the space provided its solution is to only fit in what will fit, so if you have "an exceptionally long tag that would extend passed the borders of the box" it won't show up in the cloud.
michael
@michael
09/16/16 08:41:59PM
7,826 posts

Can I modify multiple data records at once, in this case image data that I messed up while trying to modify a form?


Using Jamroom

Since there is only one gallery when "Group by Gallery" is unchecked, all the images go into that single gallery. There are no individual galleries.

What I will look into is hiding the "Gallery Title" field when that is unchecked. Its not needed.
michael
@michael
09/16/16 08:35:31PM
7,826 posts

List of blog posts


Design and Skin Customization

Hi Joanna, no question is silly, ask away.

Sure it is possible, there is very little that isn't possible, but there are often many ways to do the same thing which can be quite confusing at first.

You're wanting a list of something, so you're probably interested in either a template function to do that: {jrCore_list}

Docs: "{jrCore_list}"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/89/jrcore-list

OR an interface way to access that, which is the "Site Builder" "Item List" widget.

Docs: Site Builder -> Table of Contents
https://www.jamroom.net/the-jamroom-network/documentation/site-builder

Docs: " Site Builder ยป Adding a new Widget : Widget: Item List"
https://www.jamroom.net/the-jamroom-network/documentation/site-builder/2647/adding-a-new-widget#widget-item-list

Either of those will give you a list of blog posts. Since you're wanting to adjust the structure of what gets output by the results of the list, then you're wanting a custom template.

You can add a custom template to either of the methods above, by adding a template="some-template.tpl" addition to the request.

Here's the easiest way to do it for you I'm guessing:

WIDGET: Item list
LIST MODULE: blog
TEMPLATE: custom

Click the "click to load default template" link beneath "Custom Template". That will load the default version of the list template. Then scroll down until you find line 41 which reads:
 {$item.blog_text|jrBlog_readmore|jrCore_format_string:$item.profile_quota_id}
delete that and click SAVE CHANGES.

Deleting that line will only effect this specific widget. All you're doing is deleting the body of the blog from being displayed in this list and keeping everything else the same.

You can open up that widget again and fiddle with the layout until you get it exactly as you like it.
  348