Forum Activity for @douglas

douglas
@douglas
04/07/14 05:46:48AM
2,808 posts

Music Site - functionality


Design and Skin Customization

If the changes are made with an editor and then uploaded with an FTP client, then yes, you will lose those changes.

If you make changes through the module/skins templates or styles tab, then your changes will NOT be lost after an update.

Hope this helps,
Douglas
douglas
@douglas
04/07/14 05:37:51AM
2,808 posts

Some profiles still not showing past updates


Using Jamroom

Give this a try:

{capture name="tpl" assign="tpl"}
    {literal}
        {jrCore_module_url module="jrPrivateNote" assign="murl"}
        {foreach $_items as $i}
        <a href="{$jamroom_url}/{$murl}/new/user_id={$i._user_id}"><div class="profile_menu_entry">Send a Note to {$i.user_name}</div></a>
        {/foreach}
    {/literal}
{/capture}
{jrCore_list module="jrUser" limit="1" profile_id=$_profile_id template=$tpl}

I just removed the "_post." part from the profile_id parameter in your jrCore_list function.

Hope this helps,
Douglas
douglas
@douglas
04/04/14 10:09:01AM
2,808 posts

Music Site - functionality


Design and Skin Customization

After updating, did you run the Integrity Check tool and clear the cache?
douglas
@douglas
04/03/14 01:32:02PM
2,808 posts

Fatal error


Installation and Configuration

This has to do with your custom module I'm guessing...

Quote:
unknown function "xtAjax_get_meta_tags"
douglas
@douglas
04/03/14 01:29:51PM
2,808 posts

Publishing from development server to production server


Installation and Configuration

I would not copy anything from the data folder over to your live site, everything else should be okay.

Hope this helps,
Douglas
douglas
@douglas
04/03/14 09:26:17AM
2,808 posts

JrSeamless will not work


Installation and Configuration

It should look something like this image:
bbcode_code.jpg bbcode_code.jpg - 39KB

updated by @douglas: 04/03/14 09:26:38AM
douglas
@douglas
04/03/14 08:47:54AM
2,808 posts

Playlists Showing On Independent Pages


Design and Skin Customization

You can use the jrCore_list function to get a list of playlists.

Something like this:

    {jrCore_list module="jrPlaylist" order_by="playlist_title asc" limit="10"}

Or if you want a playlist from the site admin, just add the profile_id parameter to your function:

    {jrCore_list module="jrPlaylist" order_by="playlist_title asc" profile_id="1"}

To get a list of available variables, use this jrCore_list function:

    {jrCore_list module="jrPlaylist" order_by="playlist_title asc" profile_id="1" template="playlist_row.tpl"}

and in your playlist_row.tpl add {debug} to it.


Creating a page like the news story for playlists would take way too long to deal with on the forums.

You should really get the hang of using the jrCore_list function and figuring out what all it can do.

https://www.jamroom.net/the-jamroom-network/documentation/development/89/jrcore-list

You can also use the news.tpl and news_story.tpl as examples if you want to setup a playlist page like the news story page.

Hope this helps,
Douglas
douglas
@douglas
04/03/14 04:41:01AM
2,808 posts

Initial Create Account Error 404


Installation and Configuration

To my knowledge, the command window is not a browser feature, at least it isn't for a Windows PC, it is its own window/program. I use Putty for root login, someone else will have to chime in on what to use for Mac.
douglas
@douglas
04/02/14 03:15:14PM
2,808 posts

Meta Tags Not Responding To Variable


Design and Skin Customization

Change this:

{assign var="selected" value="ban"}
{assign var="no_inner_div" value="true"}
{jrCore_lang skin=$_conf.jrCore_active_skin id="9" default="News" assign="page_title1"}
{assign var="page_title" value="`$page_title1` - `$_post._1|replace:"-":" "`"}
{jrCore_page_title title=$page_title}
{jrCore_include template="header.tpl"}

to this:

{assign var="selected" value="ban"}
{assign var="no_inner_div" value="true"}
{jrCore_lang skin=$_conf.jrCore_active_skin id="9" default="News" assign="page_title1"}
{assign var="page_title" value="`$_post._1|replace:"-":" "` - `$page_title1`"}
{jrCore_page_title title=$page_title}
{jrCore_include template="header.tpl"}

and to change the title to be capitalized, you'll need to modify the following templates:

news.tpl
news_list.tpl
news_slider.tpl
side_news.tpl

You'll want to find the following:

<a href="{$jamroom_url}/news_story/{$item._item_id}/{$item.blog_title_url}

and change it to this:

<a href="{$jamroom_url}/news_story/{$item._item_id}/{$item.blog_title}

basically just taking off the _url in the variable $item.blog_title_url

Note that the news.tpl file has 3 different place you need to modify, the news_list.tpl file has 4 place you'll need to modify, the news_slider.tpl has one place and instead of $item.blog_title_url its $row.blog_title_url, and the side_news.tpl has 3 places you'll need to modify.

Hope this helps,
Douglas
updated by @douglas: 04/02/14 03:15:58PM
  228