Forum Activity for @michael

michael
@michael
03/31/15 03:00:40AM
7,832 posts

FoxyCart - Add to Cart "This product could not be added because it does not contain an expires property"


Using Jamroom

good stuff. You shouldn't need to setup any categories or products on foxycart.com categories for stuff is all in your jamroom. Just need foxycart to handle the payment gateway to tell Jamroom that the product is sold.
michael
@michael
03/31/15 02:52:35AM
7,832 posts

Google WMT thinks the sitemap is html


Using Jamroom

sitemap url is:
your-site.com/sitemap.xml

--edit--
Try clicking on that link in WMT and see if you get an XML page.

Its working for jamroom.net
http://www.jamroom.net/sitemap/sitemap1.xml
updated by @michael: 03/31/15 02:54:37AM
michael
@michael
03/31/15 02:47:49AM
7,832 posts

Adding a menu the main menu of Projam5 Light


Design and Skin Customization

davej56:....What is the ID for forum?...

Not exactly sure what your after there, if your meaning the module url for the forum module, you can get that with:
{jrCore_module_url module="jrAction" assign="murl"}
then use it in the url by {$murl}
eg:
{$jamroom_url}/{$murl}

Or you might be after the ID of a specific forum on your site, in which case you'd go to the location your after and look in the address bar to see what number it is.
michael
@michael
03/31/15 02:10:32AM
7,832 posts

Forum Mising


Using Jamroom

Its not normal to have one of your main site navigation links linking to another site completely. Thats the reason your getting matzofun.com/http://bestsingletravel.com.

You need to wrap your code in [ code ] [ /code ] blocks to paste it into the forum, otherwise the HTML code will be stripped out. It has been stripped out of the post you made above. Don't copy+paste that back to your site or you will have problems.

The code to make a link to http://bestsingletravel.com is
<li>
   <a href="http://bestsingletravel.com">Best Single Travel</a>
</li>
and you would put that after any /li but before a /ul .

--edit--
Using full URL's has been allowed in jrMenu ver 1.0.11 and updated in jrNingja ver 1.1.1
updated by @michael: 03/31/15 02:44:42AM
michael
@michael
03/30/15 11:29:39PM
7,832 posts

New Transfer - Basic Question on How JR Functions


Ning To Jamroom

Absolutely. I made that course and its a great place to get started to understand Jamroom.

Let me know if there is anything in the course you get stuck on or want explained further.

If watching videos isn't your thing, then the docs from here:
https://www.jamroom.net/the-jamroom-network/documentation/contents

With special attention paid to these ones:

* "Concepts the Admin user needs to know"
* "How to install a module"
* "The Jamroom quota system"
and perhaps the Glossary
--edit--
With regard to 'widgets', the system that deals with that is the Site Builder system. It will allow you to add different widgets including code to your pages. Site Builder has its own project page here:
https://www.jamroom.net/site-builder/

and forum here:
https://www.jamroom.net/the-jamroom-network/forum/site-builder

updated by @michael: 03/30/15 11:32:20PM
michael
@michael
03/28/15 12:19:55AM
7,832 posts

hello :) Quick question and wanted to say hi


Jamroom Help

Hi coverlogic,

Good to see you back again :)

Think we've got your issues sorted out via the support ticket you sent. Thanks for that.
michael
@michael
03/28/15 12:11:18AM
7,832 posts

What exactly is the Timeline and how can it be used?


Using Jamroom

https://www.jamroom.net/the-jamroom-network/documentation/getting-started/2568/glossary
Quote: Timeline refers to feed provided by the jrActivity module. It is similar in operation to a blog or twitter ( twitter.com ) in that it chronologically lists messages that pertain to the users profile.

This can include messages left directly on the timeline by the profile owner, or items added to the profile that have be included in the timeline.

When an owner of a profile looks at their own timeline page they will see the events that have been included in the timelines of the profiles they follow.

If your wanting to get a list of something related to the forums, my first thought is that you're wanting
{jrCore_list module="jrForum"......}
with some search parameters. You'll probably want to use the template="some_custom_layout.tpl" to layout the structure your wanting the retrieved data to be formatted in.

"{jrCore_list}"
http://www.jamroom.net/the-jamroom-network/documentation/development/89/jrcore-list
michael
@michael
03/28/15 12:02:40AM
7,832 posts

How to write an IF/ELSE Conditional Statement?


Design and Skin Customization

Actually, a better way, is, if you want that transparent for all of the profile pages, then set it in the profile_header.tpl file.

So in elastic,
/skins/jrElastic/profile_header.tpl
looks like this:
{jrCore_include template="header.tpl"}

<div class="container">

    <div class="row">
        <div class="col12 last">
            <div class="profile_name_box">
.....

What you can do is set a value before the header is included, so that value is available in header.tpl, like this:
{$transparent = "on"}
{jrCore_include template="header.tpl"}

<div class="container">

    <div class="row">
        <div class="col12 last">
            <div class="profile_name_box">
....

Since $transparent is set before header.tpl is included, it will be available inside header.tpl.

From there, you can use it like this:
<div id="{if $transparent == "on"}transparentcontent{else}content{/if}">

and transparent will be on for all things that use the profile_header.
michael
@michael
03/27/15 11:54:46PM
7,832 posts

How to write an IF/ELSE Conditional Statement?


Design and Skin Customization

Ok, so
* in header.tpl where you want to use that IF statement put in {debug}
* clear the caches and visit the profile index page
* look for things in the popup window provided by debug for something that indicates that the page is the index for the profile.

Then use that variable in your IF
<div id="{if $profile_index == "profile index value"}transparentcontent{else}content{/if}">

updated by @michael: 03/27/15 11:55:06PM
  562