Forum Activity for @soaringeagle

soaringeagle
@soaringeagle
04/12/18 12:27:54PM
3,304 posts

profile custom feilds quota issues (opposite expected behavior)


Using Jamroom

ideally
i would want
 {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}
except if possible question 5 and 6 show logged in, or not
soaringeagle
@soaringeagle
04/12/18 12:14:15PM
3,304 posts

profile custom feilds quota issues (opposite expected behavior)


Using Jamroom

jrNingImport_signup_questions => "{"About Me":1,"aim messenger":2,"yahoo messenger":3,"msn messenger":4,"How lo..."

its truncated, but how lo.... would be question 5 how long have you been dreading

then theres this
user_signup_question_1 => ""
user_signup_question_10 => "on"
user_signup_question_11 => "on"
user_signup_question_14 => ""
user_signup_question_15 => ""
user_signup_question_16 => ""
user_signup_question_2 => ""
user_signup_question_3 => ""
user_signup_question_4 => ""
user_signup_question_5 => "27 years"
user_signup_question_6 => "all natural wash separate that's it"
user_signup_question_7 => "http://www.freedomswings.org/"
user_signup_question_8 => ""
user_signup_question_9 => ""

in ning import
'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


you see..its there
and i do swear it changed when changing that form display option
dont know how

btw reverted back from the beta core to test, no diference (running beta again now)
damn confusing isnt it?

id like to know if that playlist code needs updating to but thats lower priority
updated by @soaringeagle: 04/12/18 12:25:26PM
soaringeagle
@soaringeagle
04/11/18 08:57:48AM
3,304 posts

profile custom feilds quota issues (opposite expected behavior)


Using Jamroom

{$signup_question_5}?
ill try it
{$user_signup_question_5} and {user_signup_question_5} don't work
from the above code from ning questions.. it should right?
it should be apart of ning questions i think, i swear it uses the same feild names and everything
all those other feilds are the same as the ning questions
maybe paul should take a look? wheres he been havent seen him lately
updated by @soaringeagle: 04/11/18 09:07:10AM
soaringeagle
@soaringeagle
04/11/18 08:56:30AM
3,304 posts

profile custom feilds quota issues (opposite expected behavior)


Using Jamroom

i know
but what i dont get is why some work the others dont now
is there a code to use to add those 2 specific questions in separtely?
and do you see any reason the playlist code no longer works?
soaringeagle
@soaringeagle
04/10/18 08:20:51AM
3,304 posts

profile custom feilds quota issues (opposite expected behavior)


Using Jamroom

wait think its in here
<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> {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>

i thought it was part of the ning signup questions but maybe not

but it should be there right?
and
i do see the playlist code but that dont work
was that code changed?
yes that should have just been part of the ning questions

i think it was the core beta update
updated by @soaringeagle: 04/10/18 08:28:16AM
soaringeagle
@soaringeagle
04/10/18 07:58:24AM
3,304 posts

profile custom feilds quota issues (opposite expected behavior)


Using Jamroom

thats what i thought!
but
why the heck are those things no longer showing where they were?
the above featured playlist too
that might not have been there awhile though.. not certain
but i am very certain the 2 profile questions vanished right after i changed those form permissions
that shuldnt affect it
but something did at the same time
what template should i be looking for
updated by @soaringeagle: 04/10/18 08:06:59AM
soaringeagle
@soaringeagle
04/09/18 06:30:47AM
3,304 posts

profile custom feilds quota issues (opposite expected behavior)


Using Jamroom

it is on the user form, but its called on the profile with the template which i can't seem to find now
besides profile-sidebar.tpl what other templates would it be in?
i believe i looked in all skin profile related templates i modified
but just now realized this no longer works as well (probably hasnt for awhile and hadnt noticed)
{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}

this is the oddest thing.. cant find what i edited but i know it worked prior to changing the who can see it settings

this was 1 of the signup questions when you joined. it always showed on the profile
where shown in screenshot

note how in the sidebar, all the questions asked on user signup are showed there
except now 2
4 were required 2 only shown to admins (ok to feature)
the other 2 were there, then i changed the display permissions and now they dont show to anyone
prior to that all logged in users could see
now i have to enter their edit screen to see what they put
sidebar.jpg sidebar.jpg - 192KB
soaringeagle
@soaringeagle
04/06/18 05:03:19PM
3,304 posts

profile custom feilds quota issues (opposite expected behavior)


Using Jamroom

fwiw did just install beta core...maybe thats got a bug?
soaringeagle
@soaringeagle
04/06/18 04:59:43PM
3,304 posts

profile custom feilds quota issues (opposite expected behavior)


Using Jamroom

hmm i wondered about tha thnx ill try
nope
they simply wil no longer show up!
btw
restarted litespeed, cleared redis cache
everything i could think of
private windows everything
  26