Jump to content

AndreasW

Clients
  • Posts

    20
  • Joined

  • Last visited

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by AndreasW

  1. I have 17 pages worth of spam accounts to delete and as far as I can tell I have to individually hit the X button one at a time to delete them

     

    image.png.1c9a4cd47244bc7685500e25144d54d3.png

     

     

    I know there is a "prune" command available if you do a filter/search on members, but there is no "banned" or "flagged as spammer" option on this filter.

    image.png.78eec85c34f4c711e423bc920f0d6707.png

     

    The closest thing I guess would be "content count is exactly 0" however we have plenty of proper accounts that haven't posted yet that don't need to be wiped out.

     

    Am I missing something obvious or has Invision never implemented a way to do this?

  2. WOOP nevermind, I just figured it out

    If anyone else wants to do the same,

     

    In Forums/Topics/postContainer, change this:

     

    			<li data-role='photo' class='cAuthorPane_photo'>
    				{template="userPhoto" app="core" group="global" params="$comment->author(), 'large', $comment->warningRef()"}
    				{{if $comment->author()->modShowBadge()}}
    				<span class="cAuthorPane_badge cAuthorPane_badge--moderator" data-ipsTooltip title="{lang="member_is_moderator" sprintf="$comment->author()->name"}"></span>
    				{{elseif $comment->author()->joinedRecently()}}
    				<span class="cAuthorPane_badge cAuthorPane_badge--new" data-ipsTooltip title="{lang="member_is_new_badge" sprintf="$comment->author()->name"}"></span>
    				{{endif}}
    			</li>

    to this:

    			<li data-role='photo' class='cAuthorPane_photo'>
    				{{if $comment->author()->pp_main_photo AND $comment->author()->pp_thumb_photo}}
                  <img src="{url="" base=""}/uploads/{$comment->author()->pp_main_photo}">
                  {{else}}
                  <img src="{$comment->author()->photo}">
                  {{endif}}
    				{{if $comment->author()->modShowBadge()}}
    				<span class="cAuthorPane_badge cAuthorPane_badge--moderator" data-ipsTooltip title="{lang="member_is_moderator" sprintf="$comment->author()->name"}"></span>
    				{{elseif $comment->author()->joinedRecently()}}
    				<span class="cAuthorPane_badge cAuthorPane_badge--new" data-ipsTooltip title="{lang="member_is_new_badge" sprintf="$comment->author()->name"}"></span>
    				{{endif}}
    			</li>

    And in custom.css add this:

    .cAuthorPane_photo img {
        max-width: 170px;
        width: auto;
    }

     

  3. Hello,

    forum: http://www.jwfan.com/forums

    On IPBoard 4.4, we had this in our custom.css that made avatars display bigger in desktop, and this didn't affect mobile

        .ipsUserPhoto_large img, img.ipsUserPhoto_large, .ipsUserPhoto_large:after {
            width: 120px;
            height: 120px;
            {{if theme.rounded_photos}}
                border-radius: 45px;
            {{endif}}
        }
    

     

    If I put this same code into the custom.css of our (default) theme now that we're on IPBoard 4.5., the avatars look fine on desktop (well, almost fine, the badges for admins are off-center) but it completely breaks the mobile view

     

    Screenshot_20201025-113008_Firefox.jpg

    Does anybody know what CSS I can use to affect desktop avatar size only but leave mobile CSS alone?

     

    Maybe some kind of if statement that determines if the parent is "cAuthorPane_info" vs "cAuthorPane_mobile" ?

  4. Hi,

    sorry bad english.

    The performance is really slow with this "plugin".With plugin our website need 10sec to load, without 2sec.
    Bug or a problem with the settings? We use the latest version and Invisionboard 4.1.5.2

    The settings: Number to show: 5
    Groups to show: (all of our groups) I don't activate "Everyone"

     

    Andreas
     

×
×
  • Create New...