Jump to content

Genestoy

Clients
  • Posts

    2,907
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Genestoy reacted to Dexter_X in Current ranks – and – Reputation   
    Hi, 
    The reputation system is still "alive", it is just not displayed anymore in the author's pane (left side of a post). We've restored it back by modifying the template in the theme. It is a little "tricky" because there is three places where you need to do it in your theme forums/front/topics/postContainer template file : 
    . to restore reputation badges/levels, around original line 110, add the following code after the </li> :
    {{if $comment->author()->reputationImage()}} <li data-role='reputation-image' class='ipsPadding:half'> <img src='{file="$comment->author()->reputationImage()" extension="core_Theme"}' title='{{if $comment->author()->reputation()}}{$comment->author()->reputation()}{{endif}}' alt=''> </li> {{endif}} so you'll obtain something that looks like this, considering surrounding code :
    </ul> </li> {{if $comment->author()->reputationImage()}} <li data-role='reputation-image' class='ipsPadding:half'> <img src='{file="$comment->author()->reputationImage()" extension="core_Theme"}' title='{{if $comment->author()->reputation()}}{$comment->author()->reputation()}{{endif}}' alt=''> </li> {{endif}} {{endif}} {{if $comment->author()->member_id}} so, it is important to place the new code after both </ul> and </li> ending the counters line.
     
    . To restore the reputation counter, add the following code around original line 96, just after the <ul class="ipsList_reset ipsType_light ipsFlex ipsFlex-ai:center ipsFlex-jc:center ipsGap_row:2 cAuthorPane_stats"> :
    <li data-role='reputation-badge'> {template="reputationBadge" group="global" app="core" params="$comment->author()"} </li> so you'll obtain something that looks like (considering surrounding code) :
    <ul class="ipsList_reset ipsType_light ipsFlex ipsFlex-ai:center ipsFlex-jc:center ipsGap_row:2 cAuthorPane_stats"> <li data-role='reputation-badge'> {template="reputationBadge" group="global" app="core" params="$comment->author()"} </li> {{if isset( $comment->author_solved_count )}} <li>  
    Edit for mobile display (add back reputation counter on mobile devices display) :
    . To restore the reputation counter in mobiles display, add the following code around original line 57, inside the <h3> just after the {template="userLink" group="global" app="core" params="$comment->author(), $comment->warningRef(), TRUE, $comment->isAnonymous()"} and before the </h3>
    &nbsp; <span class="ipsType_medium">{template="reputationBadge" group="global" app="core" params="$comment->author()"}</span> so you'll obtain something that looks like (considering surrounding code) : 
    <h3 class='ipsType_sectionHead cAuthorPane_author ipsType_break ipsType_blendLinks ipsFlex ipsFlex-ai:center'> {template="userLink" group="global" app="core" params="$comment->author(), $comment->warningRef(), TRUE, $comment->isAnonymous()"} &nbsp; <span class="ipsType_medium">{template="reputationBadge" group="global" app="core" params="$comment->author()"}</span> </h3>  
    Save your template file, reload your topic : job done !
  2. Like
    Genestoy reacted to Dexter_X in Current ranks – and – Reputation   
    @Genestoy yes, you're right, i've put it in the same line as the other counters (posts & solved) to spare some vertical space, but yes, by changing the place where you put the code, you can display it into another line just like you've done !
  3. Thanks
    Genestoy got a reaction from Andy135 in Current ranks – and – Reputation   
    Just tested and works fine in this location
    {{if $comment->author()->member_id}} <li data-role='stats' class='ipsMargin_top'> <li data-role='reputation-badge'> {template="reputationBadge" group="global" app="core" params="$comment->author()"} </li> <ul class="ipsList_reset ipsType_light ipsFlex ipsFlex-ai:center ipsFlex-jc:center ipsGap_row:2 cAuthorPane_stats"> <li>  
     

  4. Like
    Genestoy got a reaction from Dexter_X in Member post count shortened - How to fix?   
    Thank You! I can't test it yet as I am only working on my test forum and have no post numbers that high, but plenty on my live site!
  5. Like
    Genestoy reacted to Matt in Has member title been removed?   
    To recap:
    You do not need to enable the new rules, badges and ranks. There is an option pre-upgrade that asks you if you want to switch to the new system or not. If you choose not to, then you retain the existing ranks you already have.


    The upgrade will also move any custom titles across to a new custom profile field.

    If you want to show the custom member title under the user's photo in a post, then just switch on these custom field settings which are off after the upgrade.


     
     
  6. Like
    Genestoy reacted to CoffeeCake in IPS 4.5.4: InnoDB tables are using Compact row format...   
    This seems to have been missed in the back and forth. You should really not use MyISAM. That is not an appropriate solution for this recommendation. 
    Instead, as @bfarber pointed out, ignore the recommendation or change to dynamic row format with InnoDB.
    https://mariadb.com/kb/en/choosing-the-right-storage-engine/
  7. Like
    Genestoy reacted to Nathan Explosion in Like button behaviour on tablet   
    A picture speaks a thousand words, a video adds some more...
    Is this what you mean?

    Like button behaviour on tablet - Peer to Peer Technical Support - Invision Community – Mozilla Firefox 2020-11-26 22-40-45.mp4  
     
  8. Like
    Genestoy reacted to Adlago in Menu icon missing from mobile after upgrade to 4.5   
    On my site I did the following:
    1. I removed a code for template "mobileNavigationIcon" from a global template.
    2. Template "mobileNavBar" I edited by adding a hamburger menu code, before </ul>, or now total code this template is:
    <ul id='elMobileNav' class='ipsResponsive_hideDesktop' data-controller='core.front.core.mobileNav'> {{if \count( \IPS\Output::i()->breadcrumb )}} {{if \count( \IPS\Output::i()->breadcrumb ) == 1}} <li id='elMobileBreadcrumb'> <a href='{setting="base_url"}'> <span>{lang="home"}</span> </a> </li> {{else}} {{$i = 0;}} {{foreach \IPS\Output::i()->breadcrumb as $k => $b}} {{if $i + 2 == \count( \IPS\Output::i()->breadcrumb )}} <li id='elMobileBreadcrumb'> <a href='{$b[0]}'> <span>{$b[1]}</span> </a> </li> {{endif}} {{$i++;}} {{endforeach}} {{endif}} {{endif}} {{$defaultStream = \IPS\core\Stream::defaultStream();}} <li {{if !\IPS\Member::loggedIn()->canAccessModule( \IPS\Application\Module::get( 'core', 'discover' ) ) }}class='ipsHide'{{endif}}> <a data-action="defaultStream" href='{{if $defaultStream}}{$defaultStream->url()}{{else}}{url="app=core&module=discover&controller=streams" seoTemplate="discover_all"}{{endif}}' title="streams"><i class="fa fa-newspaper-o" aria-hidden="true"></i></a> </li> {{if !\IPS\Member::loggedIn()->restrict_post and \count( \IPS\Member::loggedIn()->createMenu() )}} <li data-ipsDrawer data-ipsDrawer-drawerElem='#elMobileCreateMenuDrawer'> <a href='#'><i class='fa fa-plus'></i></a> </li> {{endif}} {{if \IPS\Member::loggedIn()->canAccessModule( \IPS\Application\Module::get( 'core', 'search' ) )}} <li class='ipsJS_show'> <a href='{url="app=core&module=search&controller=search" seoTemplate="search"}' title="search"><i class='fa fa-search'></i></a> </li> {{endif}} <li data-ipsDrawer data-ipsDrawer-drawerElem='#elMobileDrawer'> <a href='#' title="navigation"> {{$total = \IPS\Member::loggedIn()->notification_cnt;}} {{if !\IPS\Member::loggedIn()->members_disable_pm and \IPS\Member::loggedIn()->canAccessModule( \IPS\Application\Module::get( 'core', 'messaging' ) )}} {{$total += \IPS\Member::loggedIn()->msg_count_new;}} {{endif}} {{if \IPS\Member::loggedIn()->canAccessModule( \IPS\Application\Module::get( 'core', 'modcp' ) ) and \IPS\Member::loggedIn()->modPermission('can_view_reports')}} {{$total += \IPS\Member::loggedIn()->reportCount();}} {{endif}} {{if $total}} <span class='ipsNotificationCount' data-notificationType='total'>{$total}</span> {{endif}} <i class='fa fa-navicon'></i> </a> </li> </ul>
    3. Result

  9. Like
    Genestoy got a reaction from Jeffrey Roberts in IPS 4.5.4: InnoDB tables are using Compact row format...   
    I have done the
    SELECT table_name, table_schema, ROW_FORMAT FROM information_schema.tables WHERE engine = 'InnoDB' AND TABLE_SCHEMA = '<YOUR DATABASE NAME>' AND ROW_FORMAT = 'COMPACT' And all 247 rows are "COMPACT" can anybody provide a SQL command to change all of them as I don't want to have to do every single row manually
    Also should the forum be taken offline when doing this? Also I have no ssh access
    Thanks
  10. Like
    Genestoy reacted to FZ in So much empty space...   
    I do receive the newsletters (I avoid corporate social media as far as possible). Nothing I had read thus far indicated such dramatic under the hood changes to me. 
    Bottom line for me right now is that I am stuck here on 4.5 and having to use a default theme that I personally think looks awful and I can't find an easy way to change it. Even my premium theme doesn't let me easily make the changes I was used to making. 
    Just really disappointed in the design aesthetic and the fact that it's so hard to change now. 
    I suggest that in future it might be advisable to split your communications into categories that deal with the aesthetics changes as well as the functional changes. But then again, we're being forced to upgrade, so even if we don't like what we see in new versions there's not much we can do about it if we want to keep support current. 
  11. Like
    Genestoy reacted to Yamamura in So much empty space...   
    I can take a screenshot of forum 4.4 where everything was fine.
    Lol!

    Why did they move the follow button to a separate line, which takes up a HUGE white space??? Previously, this button was in the title bar and did not take up extra space. Read "Web Design For Dummies" before commenting here.
  12. Like
    Genestoy reacted to Interferon in So much empty space...   
    This is really excessive.

    It looks even worse if your forum background is set to white.

  13. Like
    Genestoy reacted to Fast Lane! in How to Shut Off Admin Upgrade Notice?   
    I think many of us are sitting back while the kinks get worked out of the new version. No major reasons to rush. 
  14. Like
    Genestoy reacted to The Jimmo in [JIMMO] User Join Date in Post   
    Yes, there are intentions to update it. Hoping this coming weekend to move through this and a few other quick plugins I have.
  15. Like
    Genestoy got a reaction from Pete T in Global Header Message   
    Works just fine for me in Chrome, Firefox and IE using IPB v4.4.10
  16. Like
    Genestoy got a reaction from kmk in Maximum image size setting?   
    ACP> Members> Groups> Edit> Content tab> Maximum storage for each submission (I checked unlimited)
  17. Confused
    Genestoy got a reaction from Gauravk in Classifieds System   
    Don't know why he is not responding as he logged in here a couple of days ago
  18. Sad
    Genestoy got a reaction from AlexWebsites in Classifieds System   
    Guess I need to get a refund for my renewal fee I just paid? InvisionHQ has not checked in here since May 29th and has not logged into his own support forum since April 30th
  19. Like
    Genestoy got a reaction from kmk in Maximum image size setting?   
    yes to whatever size you have set up in system> settings> posting> general tab> Maximum image dimensions to save  (mine is 700 x 700)
  20. Like
    Genestoy got a reaction from GoDuBois in Classifieds System   
    I have complained about this for a very long time now, submitted bug reports and it has never been fixed. I removed all the email contacts in the classifieds and only use phone numbers or the messenger as I was tired of getting all the emails sent to me instead of the seller.
  21. Like
    Genestoy got a reaction from Steve Bullman in Classifieds System   
    I have complained about this for a very long time now, submitted bug reports and it has never been fixed. I removed all the email contacts in the classifieds and only use phone numbers or the messenger as I was tired of getting all the emails sent to me instead of the seller.
  22. Like
    Genestoy got a reaction from Cyboman in Classifieds System   
    What I would like to see is the current BUGS fixed--
    The email system to contact the seller does not work correctly
    some language strings wrong
    The days to expire on the front end do not match the ACP days to expire
    Deleting an ad in the list view with the IPS checkbox does not delete it in the ACP
    AND
    The sellers location should be on the list view also and not just the ad itself (very easy to add by the developer)
    There should be ACP "switches" for things like "ask a question" if the admin chooses to not use that etc
    I was one of the very first beta testers long ago when Andy Milne originally developed the classifieds so have been "around the block" with this app .
  23. Like
    Genestoy reacted to Revo2020 in Manage Validating Members   
    is there any chance in the future for the ban to be changed to delete,  dont want to ban people just want to delete their requests
  24. Like
    Genestoy reacted to BN_IT_Support in Global Header Message   
    Immediately below the message format selector where it says 'Select one of the standard message formats or use 'custom' to select your own formatting options below.'
  25. Like
    Genestoy reacted to BN_IT_Support in Global Header Message   
    I think so.
×
×
  • Create New...