Forum Activity for @douglas

douglas
@douglas
12/18/13 08:13:54AM
2,808 posts

ShareThis problem


Using Jamroom

In your ShareThis module quota config section, do you have the allow facebook player box checked?
douglas
@douglas
12/13/13 10:21:24AM
2,808 posts

(Fixed) - Foxycart help


Installation and Configuration

When you first login into FoxyCart, there is a section on the right hand side, "Required Store Configuration", make sure you have all those setup and the State under the Currently Selected Store says OK.

Hope this helps,
Douglas
douglas
@douglas
12/13/13 05:18:04AM
2,808 posts

(Fixed) - Foxycart help


Installation and Configuration

Did you setup a default category in your FoxyCart account?
douglas
@douglas
12/11/13 07:09:02AM
2,808 posts

Featured artists and Top members issue


Installation and Configuration

Glad to hear it. And you are welcome! ;)
douglas
@douglas
12/11/13 07:00:01AM
2,808 posts

Featured artists and Top members issue


Installation and Configuration

I can tell by the error log that you are not using the latest Nova templates, or at least not the latest index_artists.tpl, which should have this code in it.

{if isset($_conf.jrNova_featured_artist_ids) && strlen($_conf.jrNova_featured_artist_ids) > 0}
    {jrCore_list module="jrProfile" order_by="_profile_id asc" quota_id=$_conf.jrNova_artist_quota limit="4" search1="_profile_id in `$_conf.jrNova_featured_artist_ids`" search2="profile_active = 1" template="index_artists_row.tpl"}
{elseif isset($_conf.jrNova_require_images) && $_conf.jrNova_require_images == 'on'}
    {jrCore_list module="jrProfile" order_by="_profile_id random" limit="4" quota_id=$_conf.jrNova_artist_quota search1="profile_active = 1" template="index_artists_row.tpl" require_image="profile_image"}
{else}
    {jrCore_list module="jrProfile" order_by="_profile_id random" limit="4" quota_id=$_conf.jrNova_artist_quota search1="profile_active = 1" template="index_artists_row.tpl"}
{/if}

Hope this helps,
Douglas
douglas
@douglas
12/11/13 06:56:37AM
2,808 posts

Featured artists and Top members issue


Installation and Configuration

Can you show us what you have in the index_artists_row.tpl
douglas
@douglas
12/11/13 06:08:41AM
2,808 posts

CSS Override


Design and Skin Customization

I believe those code changes were made before we added in the changelog, which is why you don't see them.
douglas
@douglas
12/11/13 05:45:08AM
2,808 posts

SOLVED - Spotlight - Random Artists


Installation and Configuration

Oops, sorry about that... got ahead of myself on that, but you understand what I was getting at. ;)
douglas
@douglas
12/11/13 05:33:25AM
2,808 posts

SOLVED - Spotlight - Random Artists


Installation and Configuration

I would change that to this:

	{if isset($spotlight) && $spotlight == 'yes'}
        <div class="outer mb8">
            <div class="pbpinner" style="padding-left:0;">
				<h3 class="pbp12">Random Artists</h3>
                {if isset($_conf.PunkBP_spotlight_ids) && strlen($_conf.PunkBP_spotlight_ids) > 0}
                   {jrCore_list module="jrProfile" order_by="_profile_id asc" limit="4" search1="_profile_id in `$_conf.PunkBP_spotlight_ids`" search2="profile_active = 1" search3="profile_quota_id in `$_conf.PunkBP_artist_quota`" template="index_spotlight_artist.tpl"}
                {elseif isset($_conf.PunkBP_require_images) && $_conf.PunkBP_require_images == 'on'}
                    {jrCore_list module="jrProfile" order_by="_profile_id numerical_desc random" limit="4" quota_id=$_conf.PunkBP_artist_quota template="index_spotlight_artist.tpl" require_image="profile_image"}
                {else}
                    {jrCore_list module="jrProfile" order_by="_profile_id numerical_desc random" quota_id=$_conf.PunkBP_artist_quota limit="4" template="index_spotlight_artist.tpl"}
                 {/if}
            </div>
        </div>
    {/if}

There is no need for all of that code, that looks like the code from the beginning of the creation of the Nova skin.

Hope this helps,
Douglas
  262