Forum Activity for @strumelia

Strumelia
@strumelia
12/22/17 08:46:11AM
3,605 posts

Christmas Decorations


Using Jamroom

Thanks you two!
Douglas- hmm... if i follow your instructions, do I then NOT need to do Michael's last instructions of adding the relative block position in the CSS?
(and Michael: I've been looking at all my skin's CSS files..can't figure out which css file to add this code to...does it matter?*
Douglas: can you suggest to me which CSS file in my skin that I should add this SNOW DIV in the beginning of your instructions? There are so many css files in my skin, and none of them seem particularly related to that area of my site, or to Admin Blogs. :(

* P.S. Michael: your screenshot seems to show the snow falling in the correct area... I'd try your css suggestion first (since it's simpler to try), but I can't figure out which css file to add it to. Ugh, sorry to be so dense.
updated by @strumelia: 12/22/17 09:00:58AM
Strumelia
@strumelia
12/21/17 04:22:35PM
3,605 posts

Christmas Decorations


Using Jamroom

Those didn't work for me. I eventually went into my custom skin's Index_About.tpl ...and I added it there instead. That got some snow into the main page upper section, but it's kind of off centered to the left, and is limited to only the topmost part of the About section, but at least it's something! : https://pennywhistleclub.com/
Here is where I put the id, in that Index_About template:
{if isset($_items)}
<div style="margin: 10px 10px 0 10px;padding-bottom: 2px;">
    {jrCore_module_url module="jrBlog" assign="burl"}
    {foreach from=$_items item="item"}
        <div class="p10" id="snowstormArea">
            
            {$item.blog_text|jrCore_format_string:$item.profile_quota_id:null:nl2br|jrBlog_readmore}
            {if strpos($item.blog_text,'<!-- pagebreak -->')}
                <span class="info"><a href="{$jamroom_url}/{$item.profile_url}/{$burl}/{$item._item_id}/{$item.blog_title_url}">{jrCore_lang module="jrBlog" id="25" default="Read more"} &raquo;</a></span>
            {/if}
        </div>
    {/foreach}
</div>
{elseif jrUser_is_master()}
    <div class="center p10">
        Create an Admin blog with the category set to <b>about</b> to add content to this section.
    </div>
{else}
    <div class="center p10">
        <h1>Welcome to {$_conf.jrCore_system_name}!</h1>
    </div>
{/if}
Strumelia
@strumelia
12/21/17 01:31:08PM
3,605 posts

auto-approve followers checkbox not doing its job?


Using Jamroom

I think that's a good move, Michael. It will help avoid this kind of issue in the future, for others.
I have not forgotten this thread- just been distracted by other obligations for the moment. Will readdress this soon to see if/how I can fix things up for my site. :)
Strumelia
@strumelia
12/21/17 01:12:22PM
3,605 posts

Christmas Decorations


Using Jamroom

I do see what you;re saying Michael. I'm just a little unsure exactly where to put the id= part in my index.tpl. I know it should go in that "About section" as you see in the code I pasted.
I'm guessing I need to put it within one of the two divs here:
<div class="row">
            <div class="col12 last">
...but am I right about that...and within which one of those divs should I put the new id?
I'm almost there, but the right location is not quite clear to me.
Strumelia
@strumelia
12/20/17 01:43:59PM
3,605 posts

Christmas Decorations


Using Jamroom

Michael, I've got the snowstorm working on the entire site for https://pennywhistleclub.com/
however, your instructions in your last post for "about section" I don't think would work, because the initial div class container code I posted actually encompasses all the main page "sections"... not just the About section. So at the moment I can't figure out the proper ID I should use (maybe...8? About?) and how I should change that in my skin index template, to then repeat the target in the snowstorm js.
Here is a slightly longer copy of the code of my skin's Index.tpl, so you can see what I mean...i don't want to change the id of that entire container class. (The "About" section is within it, near the top):

{* BEGIN Container *}
<div class="container">

    {* BEGIN About Section *}
    {if isset($_conf.pwPWskin_Dec20_2017_index_activity_section) && $_conf.pwPWskin_Dec20_2017_index_activity_section == 'on'}
        <div class="row">
            <div class="col12 last">
                <div class="title m10">
                    <h2>{jrCore_lang skin=$_conf.jrCore_active_skin id="8" default="About"}</h2>
                </div>
                {jrCore_list module="jrBlog" limit="1" search1="blog_category = about" template="index_about.tpl"}
            </div>
        </div>
    {/if}
    {* END About Section *}

    {* BEGIN Activity And Top Right Section *}
    {if isset($_conf.pwPWskin_Dec20_2017_index_activity_section) && $_conf.pwPWskin_Dec20_2017_index_activity_section == 'on'}
        <div class="row">
{* BEGIN Activity Section *}
            <div class="col8">

                <div class="title m10">
                    <h2>{jrCore_lang skin=$_conf.jrCore_active_skin id="20" default="Latest"} {jrCore_lang skin=$_conf.jrCore_active_skin id="27" default="Activity"}</h2>
                </div>

                {* BEGIN Activity Section *}
                <a id="activdiv" name="activdiv"></a>
                <div id="activitydiv" style="margin: 10px 10px 0 10px;padding-bottom: 10px;">
                    <div class="item"{if !jrCore_is_mobile_device()} style="max-height:916px;overflow-y:auto;overflow-x:hidden"{/if}>
                      {*  {jrCore_list module="jrAction" search1="action_module != jrFollower" search2="action_data NOT_LIKE %\"comment_module\":\"jrProfile\"%" order_by="_item_id desc" pagebreak=50 page=$_post.p} *}
                        {* michael *}
                        {jrCore_list module="jrAction" search1="action_module != jrFollower"  search3="action_original_item NOT_LIKE jrProfile:%" order_by="_item_id desc" pagebreak=50 page=$_post.p}
                        <br>
                        <div style="width:100%;text-align:center;padding:10px">
                            <a href="{$jamroom_url}/timeline">View More</a>
                        </div>
                    </div>
                </div>

            </div>
            {* END Activity Section *}

            {* BEGIN Right Side Section *}
            <div class="col4 last">
                <div class="container">

                    {* BEGIN Top Groups Section *}
                    {if isset($_conf.pwPWskin_Dec20_2017_top_groups_active) && $_conf.pwPWskin_Dec20_2017_top_groups_active == 'on'}
                    {if isset($_conf.pwPWskin_Dec20_2017_top_groups_limit) && $_conf.pwPWskin_Dec20_2017_top_groups_limit > 5}
                        {assign var="group_pb" value=$_conf.pwPWskin_Dec20_2017_top_groups_limit}
                    {else}

updated by @strumelia: 12/20/17 02:57:56PM
Strumelia
@strumelia
12/19/17 05:00:21PM
3,605 posts

Christmas Decorations


Using Jamroom

"About" is an Admin blog category...it came with the original Ningja skin as a sort of description box for the top of the Home page.
Does this code from my custom skin's index.tpl help identify what the admin blog "about" section would be called, for the snow code target?:

{* ======== END OF EMBEDDED TEMPLATES ======== *}
{* BEGIN Container *}
<div class="container">
    {* BEGIN About Section *}
    {if isset($_conf.mdFOTMD_Oct3_2017_index_activity_section) && $_conf.mdFOTMD_Oct3_2017_index_activity_section == 'on'}
        <div class="row">
            <div class="col12 last">
                <div class="title m10">
                    <h2>{jrCore_lang skin=$_conf.jrCore_active_skin id="8" default="About"}</h2>
                </div>
                {jrCore_list module="jrBlog" limit="1" search1="blog_category = about" template="index_about.tpl"}
            </div>
        </div>
    {/if}
    {* END About Section *}

updated by @strumelia: 12/19/17 05:03:08PM
Strumelia
@strumelia
12/19/17 12:43:55PM
3,605 posts

Christmas Decorations


Using Jamroom

Hmm, question: Could I apply the snow only to my Main page Admin blog section "About" ?- how to adapt the above instructions to snow only there in that blog widget on my site's main page? (the top section where it says Welcome to FOTMD!)

("facepalm"...L O L)
updated by @strumelia: 12/19/17 12:45:16PM
Strumelia
@strumelia
12/16/17 08:32:19AM
3,605 posts

No comments box on profiles, images or Private Notes for some users


Using Jamroom

lornawebber:
We are still getting lots of support tickets from users who can't post comments anywhere on site.
In most cases, clearing browser cache works, but in some cases it makes no difference.
I have asked for version numbers, but I know of one on Chrome and one on Firefox.

Yep, there are still some problems with the missing reply boxes. I just got an email from one of my moderators, who did some checking this morning while logged in as a regular member (our test profile). Here's what he just reported, on my site fotmd.com:

" I have my relatively new HP laptop running a very fresh, clean install of Windows 10. I logged in as a regular user with chrome. No text box. I logged out, cleared browser cache, temp files, cookies etc. using the windows utility in Internet Options then rebooted the laptop. Logged in with chrome, still no text box. Logged out then logged back in with Firefox. Everything is fine with Firefox."
Strumelia
@strumelia
12/16/17 08:20:05AM
3,605 posts

Can I go back and restore a delated module from Site Builder?


Ning To Jamroom

Did you already look in your Marketplace area?:
(YOURSITE.com)/marketplace/browse
...in the Modules TAB there, and you can use the search window there to find the module you're looking for and reinstall it.
Strumelia
@strumelia
12/15/17 06:16:16PM
3,605 posts

No comments box on profiles, images or Private Notes for some users


Using Jamroom

I haven't gotten any new member complaints today on missing textboxes or my ad slideshows not loading...and I had a few members tell me things look fixed now for them.... so I think it must be working correctly now. (fingers crossed) :)

But I still have my Main Page admin blog "About" not loading for regular members and logged out people. It loads fine for me and my profile admins though. Please see my last two screenshots for what it 'should' look like and what is actually showing (or rather, not showing) to regular members. I need to fix this on both my Jamroom sites.
--> UPDATE: NEVERMIND !! -I managed to fix this in my custom skin's Index template, using Michael's code tweak above as my guide. Just had to figure out where it was supposed to go. :D

P.S. Perrie, don't act so innocent. I know you did it.
;D
updated by @strumelia: 12/15/17 06:54:48PM
  61