Forum Activity for @michael

michael
@michael
08/09/17 08:56:00PM
7,832 posts

search by genre and/or mood


Design and Skin Customization

not totally clear on the question. Are you wanting to create a list of items that contain a certain genre (not sure what a mood is).

Whats the goal?
michael
@michael
08/09/17 08:52:32PM
7,832 posts

A few questions re: the "follow me" skin


Design and Skin Customization

@tig, better to ask you're own questions in their own thread with the main question as the title.

The docs your after are here:

Docs: "Creating your own skin ( Clone from an Existing Skin)"
https://www.jamroom.net/the-jamroom-network/documentation/skin-design-guide/839/creating-your-own-skin-clone-from-an-existing-skin

If your goal is a few minor tweaks to the way things work, you don't need to clone the skin, just use the Template Editor to tweak the existing templates:

Docs: "Using the Template Editor"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/3183/using-the-template-editor

But if you want to change more things, then clone the skin. That will replicate the current skin in the file system and you can make whatever changes you like from there.

The default skin will continue to get updates from the marketplace, but after cloning your skin is entirely yours. If you see an update come in that you want to port to your cloned skin, use:

Docs: "Using the Compare tool to keep cloned skins up to date"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/2394/using-the-compare-tool-to-keep-cloned-skins-up-to-date

Or if you're using GIT ( or other version control software ) then you can compare from there.
michael
@michael
08/08/17 05:49:00PM
7,832 posts

Facebook flash player not playing


Design and Skin Customization

Your site needs to be running on HTTPS for the player to work on facebook, its a facebook requirement.
michael
@michael
08/07/17 05:18:33PM
7,832 posts

Ninja Skin: Video template misconfigures in Site Builder


Ning To Jamroom

I'm also seeing this, the icons there do not link to videos that exist, we'll get it fixed up.
videos.jpg videos.jpg - 269KB
michael
@michael
08/07/17 04:38:42PM
7,832 posts

Widgets on SB Index page falling outside page layout


Using Jamroom

for me both open
http://www.ourtownstory.co.uk/kent
http://www.ourtownstory.co.uk/dorset

When you say crashing, what happens? That php error is saying the limit of 256M of memory has been reached.

This:
https://stackoverflow.com/questions/3903363/allowed-memory-size-of-268435456-bytes-exhausted

suggests that the issue is either server resources set in php.ini for the server or this in the script
ini_set('memory_limit', '256M')
. That is not set in the code in anywhere other than the image resize function.

might be that you have a HUGE image that needs resizing on that page, but if not, server is best guess.
michael
@michael
08/06/17 03:58:29AM
7,832 posts

How to turn off the e-commerce Cart icon in my site menu?


Using Jamroom

#2 I'm, nervous in the other direction. Someone is selling a service from MY site, that they collect the cash for directly, then they don't do what they said they would. If you have the cash still, you can return it. If you don't.......

For Donations you dont even need any module, just get the button code from paypal for donate and drop it in a template.
michael
@michael
08/06/17 03:21:36AM
7,832 posts

How to turn off the e-commerce Cart icon in my site menu?


Using Jamroom

researchcooperative:...The module for "PayPal Buy it Now" is still enabled, and the system did not ask me to uncheck that, so it must work independently from Foxycart....
Yes, independent.


Key questions:

1. Can the individual profile owner set up a shop for services or things that utilizes Foxycart, independently from the site owner (Admin) - regardless of whether or not the site owner requires a percentage of sales?

Yes. If that profile is in a quota that has access to the service module, then they will be able to sell services. The percentage that admin keeps will be the same for all profiles in that quota.

2. How does the profile owner with a service shop or selling merchandise build a relationship with Foxycart?

They don't. All money goes into the admins account, then admin sends the money out to them at regular intervals.

3. I would like to change the Service Shop and Merchandise module settings so that they are located under E-commerce rather than under Profiles in ACP. Will this affect the function of these modules in any way?

No, change away. The category is set on the modules INFO tab, changing it will only change its location in the ACP.


The Paypal module is different than the foxycart one, Paypal is simpler and payments go direct to the profile owner, the admin cant keep any percentage.

The paypal module was never planned to be built, it only got built because there was much dissatisfaction with the need to pay foxycart for their service. You cant sell subscriptions with the Paypal module.
michael
@michael
08/05/17 12:03:19AM
7,832 posts

FAQ module produces just one universal FAQ


Using Jamroom

I see it.

In this file
ACP -> MODULES -> PROFILES -> FAQ -> TEMPLATES -> item_list.tpl

Change around line 35 ish that reads:
 {jrCore_list module="jrFAQ" profile_id=$_profile_id order_by="faq_display_order numerical_asc" search1="faq_category.........
to
 {jrCore_list module="jrFAQ" profile_id=$item._profile_id order_by="faq_display_order numerical_asc" search1="faq_category.........

from $_profile_id to $item._profile_id.

To fix it now and that change will be included in jrFAQ ver 1.0.7 which will come out when the JR6.1 Beta is released.

Docs: "Using the Template Editor"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/3183/using-the-template-editor
michael
@michael
08/04/17 11:38:18PM
7,832 posts

FAQ module produces just one universal FAQ


Using Jamroom

researchcooperative:.....
In my installation of JR, which is the latest version with all updates, the FAQ module is producing a single FAQ that is shown by all profiles in all quotas for which the FAQ module is enabled.....
yes that does sound weird, will take a look.
michael
@michael
08/03/17 09:12:52PM
7,832 posts

jrVideo not working in Chrome and Microsoft Edge


Design and Skin Customization

What this upgrade does is sets the mp4 version of the videos as the default version and leaves the flash version as the fall back version.

If you have over-ridden the default item_detail.tpl of the jrVideo file, then you've probably got this in your template:
{elseif $item.video_file_extension == 'flv'}
Change it to 'm4v'
{elseif $item.video_file_extension == 'm4v'}
To match the default modules version.

Not sure about audio files, they should play.
  200