Forum Activity for @michael

michael
@michael
05/13/14 01:49:35AM
7,832 posts

can i add a page to a module?


Using Jamroom

if you use "/task/invoiced/month=March" then $_post['month'] will equal 'March' but if you want to keep it clean

/task/invoiced/March


$_post['option']
$_post['_1']
$_post['_2']
$_post['_3']

one of those above will also equal march. not sure which, so you'd need to check.

--edit--
as for the file export, look in the jrChainedSelect module it has a way to export and import a .csv file
function view_jrChainedSelect_export()
//.... get the data ready

    header("Content-type: text/csv");
    header("Content-Disposition: attachment; filename=\"ChainedSelect_{$_rt['set_name']}.csv\"");
    asort($_r1);
    $out = implode("\n", $_r1);
    echo $out;

updated by @michael: 05/13/14 01:53:16AM
michael
@michael
05/13/14 01:45:29AM
7,832 posts

Setting up website, got new solo package,couple queries about editing the home page


Installation and Configuration

photo wall paper could be done in a couple of ways.

One way might be the jrProfileTweaks module:
https://www.jamroom.net/the-jamroom-network/networkmarket/2/profile-tweaks

Another way would be by chaning the CSS file for the skin to use a different image for the background.

the "Overlay photos in opaque-transparent" sounds like the way the jrGallery module works to display images in a lightbox.

"Image Galleries"
https://www.jamroom.net/the-jamroom-network/networkmarket/28/image-galleries

demo of the gallery on the solo skin. (click the main image)
http://demo.jamroom.net/jrSoloArtist/elvis-fontenot/gallery/1/jrGallery_698_gallery_image.jpg
michael
@michael
05/13/14 01:39:15AM
7,832 posts

Is it possible to auto hide/show header in jr5


Design and Skin Customization

Where to use the code @paul pointed out will depend on the skin your using.

That code is template code, so it will go somewhere in a a .tpl file.

Since that header is the site header, your probably going to be looking in the header.tpl file for that section.

after that is just play around and figure out what you want to happen.
michael
@michael
05/10/14 12:54:51AM
7,832 posts

Tiny MCE Smileys and a dark template


Installation and Configuration

if you use the "Smiley support" module you can update the images at:
yoursite.com/smiley/create

They will persist over updates.
michael
@michael
05/09/14 03:41:04AM
7,832 posts

In no mans land


Installation and Configuration

The first user you create after uploading and installing it is the admin user.

There is no login needed for that first time. You click the "continue" and it takes you to the "Server Status" page to see if you have any red spots that need attention.

You say you got it installed, so that means it was working but stopped after you got through the 'install' setup pages?

One thing to check is that the .htaccess (which is normally a hidden file) has been uploaded.

Servers sometimes add their own. Its a real important file to jamroom, so make sure you uploaded jamrooms version of that .htaccess file.
michael
@michael
05/09/14 01:00:54AM
7,832 posts

rebase - resulted in Blank pages across site


Using Jamroom

Good News! well done. :)

Wouldn't think that developer mode should effect it, but something didn't work smoothly, so maybe.
michael
@michael
05/08/14 11:59:14PM
7,832 posts

New Chained Select - important upgrade instructions


Announcements

All seams to be working. I updated the documentation here:

"Using the jrChainedSelect module by example"
https://www.jamroom.net/the-jamroom-network/documentation/howto/1753/using-the-jrchainedselect-module-by-example


With a video I made out of your example:
howto use the chained select module

It all seams to be working right.
michael
@michael
05/08/14 11:34:30PM
7,832 posts

New Chained Select - important upgrade instructions


Announcements

seamed to save ok, how are you outputting it? via the Form Designer?
michael
@michael
05/08/14 11:30:18PM
7,832 posts

New Chained Select - important upgrade instructions


Announcements

cheers, ill give that a go here, let you know what i see.
  697