Forum Activity for @soaringeagle

soaringeagle
@soaringeagle
12/04/16 01:26:21PM
3,304 posts

profile questions not showing since update


Design and Skin Customization

can you look over my template code see if you see anyting wrong..why isnt the playlist even showing
i added a questions class to the div just to find it and it was empty completely
added debug looking for anything that may have changed that would prevent my code from working but found nothing
soaringeagle
@soaringeagle
12/04/16 12:17:01PM
3,304 posts

profile questions not showing since update


Design and Skin Customization

many of the qyuestions do indeed have corolating form designer questions but why is it not getting to the code for the featured playlist either..its like it stops reading the code 4 the questions
soaringeagle
@soaringeagle
12/04/16 12:01:30PM
3,304 posts

profile questions not showing since update


Design and Skin Customization

not sure i understand what you mean paul
soaringeagle
@soaringeagle
12/04/16 11:27:28AM
3,304 posts

profile questions not showing since update


Design and Skin Customization

wait i bet its a nested if thats not escaping right?
soaringeagle
@soaringeagle
12/04/16 09:49:07AM
3,304 posts

profile questions not showing since update


Design and Skin Customization

also not seeing the featured playlist either
do i have a misplaced ending /div or something
soaringeagle
@soaringeagle
12/04/16 09:47:50AM
3,304 posts

profile questions not showing since update


Design and Skin Customization

i see the code in there why am i not seeing it on my page
soaringeagle
@soaringeagle
12/04/16 09:46:09AM
3,304 posts

profile questions not showing since update


Design and Skin Customization

shouldnt it be in the sidebar
<div class="col3">
    <div>

        <div class="block">
            <div class="profile_image {$profile_photo_radius}">
                {if jrProfile_is_profile_owner($_profile_id)}
                    {jrCore_module_url module="jrProfile" assign="purl"}
                    {jrCore_lang skin=$_conf.jrCore_active_skin id="7" default="Change Image" assign="hover"}
                    <a href="{$_conf.jrCore_base_url}/{$purl}/settings/profile_id={$_profile_id}">{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$_profile_id size="xlarge" class="img_scale img_shadow" alt=$profile_name title=$hover width=false height=false}</a>
                    <div class="profile_hoverimage">
                        <span class="normal" style="font-weight:bold;color:#FFF;">{$hover}</span>&nbsp;{jrCore_item_update_button module="jrProfile" view="settings/profile_id=`$_profile_id`" profile_id=$_profile_id item_id=$_profile_id title="Update Profile"}
                    </div>
                {else}
                    {jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$_profile_id size="xxlarge" class="img_scale img_shadow" alt=$profile_name width=false height=false}
                {/if}
            </div>
        </div>

        {if $_conf.sedreadsiteskin4_profile_location_box == 'on'}
        {if (isset($profile_location) && strlen($profile_location) > 0) || (isset($profile_country) && strlen($profile_country) > 0) || (isset($profile_zip) && strlen($profile_zip) > 0)}
        <div class="block">
            <h3>{jrCore_lang skin=$_conf.jrCore_active_skin id="17" default="Location"}:</h3>
            <div class="block_content mt10">
                <div style="padding-top:8px">
                    {jrCore_lang skin=$_conf.jrCore_active_skin id="17" default="Location"}: {$profile_location}<br>
                    {jrCore_lang skin=$_conf.jrCore_active_skin id="43" default="Zipcode"}: {$profile_zip}<br>
                    {jrCore_lang skin=$_conf.jrCore_active_skin id="44" default="Country"}: {$profile_country}
                </div>
            </div>
        </div>
        {/if}
        {/if}


        {if !jrCore_is_mobile_device() && isset($profile_influences) && strlen($profile_influences) > 0}
            <div class="block">
                <h3>{jrCore_lang skin=$_conf.jrCore_active_skin id="49" default="Influences"}</h3>
                <div class="block_content mt10">
                    <div style="padding-top:8px;">
                        <span class="highlight-txt bold">{$profile_influences}</span><br>
                    </div>
                </div>
            </div>
        {/if}


        {if jrUser_is_logged_in() && $_conf.sedreadsiteskin4_profile_questions == 'on'}
            {jrNingImport_signup_questions user_id=$_user_id assign="ning_questions"}
            {if isset($ning_questions)}
                <div class="block">
                    <div class="block_content mt10">
                        {$ning_questions}
                    </div>
                </div>
            {/if}
        {/if}


        {if !jrCore_is_mobile_device()}
        <div class="block">
            <div class="block_content mt10">
                <div style="padding-top:8px;min-height:48px;max-height:288px;overflow:auto;">
                    {jrUser_online_status profile_id=$_profile_id}
                </div>
            </div>
        </div>
        {/if}


        {if !jrCore_is_mobile_device() && jrCore_module_is_active('jrFollower')}
        {jrCore_list module="jrFollower" search1="follow_profile_id = `$_profile_id`" search2="follow_active = 1" order_by="_created desc" limit="25" assign="followers"}
        {if strlen($followers) > 0}
        <div class="block">
            <h3>{jrCore_lang skin=$_conf.jrCore_active_skin id="9" default="Latest Followers"}:</h3>
            <div class="block_content mt10">
                    <div style="padding-top:8px">
                        {$followers}
                    </div>
            </div>
        </div>
        {/if}
        {/if}


        {if !jrCore_is_mobile_device()}
        {jrCore_list module="jrRating" profile_id=$_profile_id search1="rating_image_size > 0" order_by="_updated desc" limit="14" assign="rated"}
        {if strlen($rated) > 0}
        <div class="block">
            <h3>{jrCore_lang skin=$_conf.jrCore_active_skin id="10" default="Recently Rated"}:</h3>
            <div class="block_content mt10">
                    <div style="padding-top:8px">
                        {$rated}
                    </div>
            </div>
        </div>
        {/if}
        {/if}

        {if isset($_conf.sedreadsiteskin4_profile_stats) && $_conf.sedreadsiteskin4_profile_stats == 'on'}
        <div class="block">
            <h3>{jrCore_lang skin=$_conf.jrCore_active_skin id="39" default="stats"}</h3>
            <div class="block_content mt10">
                <div style="padding-top:8px">

                    {capture name="template" assign="stats_tpl"}
                    {literal}
                        {foreach $_stats as $title => $_stat}
                        {jrCore_module_url module=$_stat.module assign="murl"}
                        <div class="stat_entry_box" onclick="jrCore_window_location('{$jamroom_url}/{$profile_url}/{$murl}');">
                            {$title}: {$_stat.count|default:0}
                        </div>
                        {/foreach}
                    {/literal}
                    {/capture}
                    {jrProfile_stats profile_id=$_profile_id template=$stats_tpl}

                    <div class="clear"></div>
                </div>
            </div>
        </div>
        {/if}

        {if isset($_conf.sedreadsiteskin4_profile_tag_cloud) && $_conf.sedreadsiteskin4_profile_tag_cloud == 'on'}
        {jrTags_cloud profile_id=$_profile_id height="350" assign="tag_cloud"}
        {if strlen($tag_cloud) > 0}

            <div class="block">
                <h3>{jrCore_lang module="jrTags" id="1" default="Profile Tag Cloud"}:</h3>
                <div class="block_content mt10">
                    <div style="padding-top:8px">
                        {$tag_cloud}
                    </div>
                </div>
            </div>
            <div class="clear"></div>

        {/if}
        {/if}
{if $profile_showplaylist == on}
{jrCore_list module="jrPlaylist" search1="_profile_id = `$_profile_id`" search2="playlist_featured = on" template="my_profile_playlist_embed.tpl" limit="1"}
{/if}
    </div>
</div>
soaringeagle
@soaringeagle
12/04/16 09:42:32AM
3,304 posts

profile questions not showing since update


Design and Skin Customization

which template
i did customize some but hadnt upgraded ningja since 1.1.4 since the newer ones only worked with new sb
my customizations from 1.1.4 were just copied over
soaringeagle
@soaringeagle
12/04/16 09:36:30AM
3,304 posts

profile questions not showing since update


Design and Skin Customization

yes its active
these are the profile questions none are showing up
'user_signup_question_1' => About Me
'user_signup_question_2' => aim messenger
'user_signup_question_3' => yahoo messenger
'user_signup_question_4' => msn messenger
'user_signup_question_5' => How long have you been dreading?
'user_signup_question_6' => Dreading methods, maintenance, and products used (if you currently have dreads)
'user_signup_question_7' => website
'user_signup_question_8' => twitter page
'user_signup_question_9' => facebook page
'user_signup_question_10' => Ok to feature profile?
'user_signup_question_11' => Ok to feature pictures, blogs, discussions?
'user_signup_question_12' => Are you here just to spam?
'user_signup_question_13' => Optional: Add me to category:
'user_signup_question_14' => Pinterest
'user_signup_question_15' => Google+
'user_signup_question_16' => LinkedIn page
soaringeagle
@soaringeagle
12/04/16 09:30:58AM
3,304 posts

profile questions not showing since update


Design and Skin Customization

it should be active no reason why id disable it
  80