Forum Activity for @michael

michael
@michael
11/11/13 01:50:57AM
7,832 posts

Pagebreak Documentation


Suggestions

Awesome. I know there is a file you can include instead of writing all the pagingination code yourself. Just not sure of the name right now. (not all setup for dev).

So look for an include file to include. perhaps use 'if $info.total_pages > 1' as a search string to find that file.

if you cant find it, ill find it tomorrow.
michael
@michael
11/11/13 01:32:01AM
7,832 posts

Conditional Statement Help


Design and Skin Customization

Try it with just {if $item.blog_on_air == "on"} then wrap the inside in another one, so you can see what part of the statement its not working at, after you know that, then reduce it to one line.
{if $item.blog_on_air == "on"}
 {if $item.blog_on_air == "7822"} 
 // do nothing
{else}...
michael
@michael
11/10/13 06:42:41PM
7,832 posts

Conditional Statement Help


Design and Skin Customization

What do you think those statements read as? What do you want them to read as?

I read the first one as:
"If the blog is on air or the user who owns the item does not equal 7822, then show this..."

but im not sure what that means. perhaps the && could make a cleaner statement. perhaps:
{if $item.blog_on_air == "on" && $item._user_id == "7822" }
michael
@michael
11/09/13 11:14:38PM
7,832 posts

Pagebreak Documentation


Suggestions

pagebreak=1 page=1}
will show 1 item per page and show page 1
pagebreak=5 page=1}
will show 5 items per page and show page 1
pagebreak=5 page=2}
will show 5 items per page and show page 2
pagebreak=5 page=$_post.p}
will show 5 items per page and show page whatever p= is in the url. if its page/?p=4 it will show page 4

$_conf.mySkin_default_artist_pagebreak
is some config setup by the skin. its probably settable in the skins settings page.
michael
@michael
11/09/13 08:03:27PM
7,832 posts

"Start Your Own Online Community" Course.


Using Jamroom

21 students doing the course right now. :) haven't gotten too many questions yet, not sure if that's good or bad....
michael
@michael
11/09/13 01:25:21AM
7,832 posts

mobile / Ipad Redirect


Jamroom Developers

Right, your trying to by-pass the routing system. don't.

Use the routing system to get what you want.

The routing system is really powerful if you use it.

did you look at the routing diagram? routing diagram

The first way that comes to mind to me is to just make one skin and use different sections, but that doesn't seam to be what you want to do, so the second thing I would think of would be:

using an include in the main section of the index template..... (hold on)

Why your redirect is not working is because that is not a location. When you want to access index.tpl, you dont go to:
yoursite.com/skins/myskin/

you go to
yoursite.com/

so do the same for your mobile.

make a template at:
/skins/myskin/m_index.tpl

Then with your javascript redirect point it to:
http://www.yoursite.com/m_index

That will get m_index displaying.

would that work for you?
updated by @michael: 11/09/13 01:26:48AM
michael
@michael
11/09/13 01:07:15AM
7,832 posts

Form designer field (audio)


Using Jamroom

so the question is: "how do i get the full text editor using the form designer?" right?

If its only showing a small set of the full amount of usual tools, its probably showing the 'basic' instead of the 'advanced' editor. got some steps so i can see what your seeing?

-----
Flag that, I can see it. It is the basic editor, ill see if i can find the settings to make it go to advanced and let you know.
  771