Forum Activity for @michael

michael
@michael
04/15/14 12:36:34AM
7,832 posts

Downloading media after purchase


Using Jamroom

The user should be able to download them after, purchasing them, from their "My Items" section:

YOUR-SITE.com/foxycart/items

There should be a 'Download' next to the items they have purchased.
michael
@michael
04/12/14 02:16:29AM
7,832 posts

Foxycart add to cart button


Jamroom Developers

Great to hear you have got "Foxycart add to cart button". It would have been good to know that you were trying to develop a custom module and it was for that that the price wasn't showing. I thought you were talking about the FoxyCart module.

Start a new thread for new questions to make it easier for searching for solutions later.

Yes ther will be an even to modify the item_price. There will probably be many events points that you could listen for.
michael
@michael
04/12/14 02:06:21AM
7,832 posts

categories in custom module


Jamroom Developers

perfectgamestudios:
but don't jrblog categories set on post based on text input as wondering if there was a way only admin can create the categories for the user to select maybe drop box

Thats what I just described above.
* use the Form Designer
* input the categories in the format above to stop allowing user input.

I think the default is "select and text" change it to just select.
updated by @michael: 04/12/14 02:07:15AM
michael
@michael
04/12/14 01:39:08AM
7,832 posts

Bulk upload files


Using Jamroom

andrusito:
I'll try it. What I don't understand is why you removed this option for us using JR as a music site. This was possible on JR4 without much trouble.

Because it can be added in if wanted and not every site is a music site.
michael
@michael
04/12/14 12:58:14AM
7,832 posts

Login Error


Installation and Configuration

Usually the anything related to form validation happens when there are more than a couple of tabs open and you've got the same site open in a few.

Can usually be fixed by refreshing the page your on then filling the form again.

If thats not the case in your situation, then do like Doug suggests and FTP into the system and see if either of these files exist:

/data/logs/error_log
/data/logs/degbug_log

If they do, open them with a text editor and copy+paste the error here.
michael
@michael
04/11/14 08:51:32PM
7,832 posts

you may need to update this documentation..its not working


Design and Skin Customization

That's not documentation. Its discussion in the forums.
michael
@michael
04/11/14 04:04:21AM
7,832 posts

Calendar in Jamroom


Using Jamroom

There is an events module in the marketplace
michael
@michael
04/11/14 01:35:53AM
7,832 posts

Custom form field attributes in form designer


Jamroom Developers

Ah, I see what your saying. You only want to display help text for "ujcustom_color_picker" on the OPTIONS box, when "ujcustom_color_picker" is selected in the TYPE box of the Form Designer.

If thats right, then your right, its not designed to work that way. But you might be able to force it to by adding in an onchange or onfocus event into the TYPE field. The if the TYPE is "ujcustom_color_picker" do some javascript stuff to change the help text.

not perfect, but might be possible.
michael
@michael
04/11/14 12:50:19AM
7,832 posts

Foxycart add to cart button


Jamroom Developers

make sure you don't have the 'bundle only' checkbox checked.
michael
@michael
04/11/14 12:39:46AM
7,832 posts

Custom form field attributes in form designer


Jamroom Developers

got it.

There is a event fired on form field create:
$_field = jrCore_trigger_event('jrCore', 'form_field_create', $_field, $_args);

add a listener to your module that listens for that event.

check for the 'If this field is a' on the $_field['help'] and if you find it, replace it with what you want it to say.
  710