Jump to content

Apfelstrudel

Clients
  • Posts

    689
  • Joined

  • Last visited

  • Days Won

    1

 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 Apfelstrudel

  1. Hi,

    We would like to reward those members who have created a topic which the moderators selected as "Our Picks".

    I created attached rule.

    The problem is that the moderator gets this badge but not the person who created this post which would definitely make sense.

    Isn't that how this function is intended?

    Bildschirmfoto 2021-11-15 um 15.34.01.png

  2. On 7/7/2021 at 9:07 AM, Daniel F said:

    No, notifications won't be sent while the rebuild process.

    Ok thanks Daniel. So no notifications are being sent during rebuild but what about the time after the upgrade from 4.5 to 4.6?

    Once the upgrade is complete, I will need some time to set up my own rules and upload new badges and ranks.

    What kind of notifications and to whom will be sent after a finished upgrade?

    Can I just turn off notifications for as long as I need to set up my own services? And preferably immediately after the upgrade so that no notifications are sent.

    Thanks in advance for any help.

  3. Hello,

    I'd like to highlight search results in feeds if a club is pinned.

    Formatting works fine and I already have it working using club_id in a template condition.

    But to make it more comfortable I'd like to highlight a feed line automatically if a club is pinned.

    The only problem I have is that the pinned setting is not part of $indexData in template system->searchResult.

    Is there an easy way to get it into this template?

    I would really appreciate any help.

  4. But don't forget all those mail bounces the robots produce. Although they won't be active the system sends an activation mail which bounces in most of the cases. This is negative for our spam score.

    So often I suggested some kind of stats to get an overview of those robot registration tries. It would also be interesting to see how many people write a good first post but don't get through the last activation step. With that information I can optimzie my customer journey and provide additional information for the user.

    IPS, please make the post before register posts visible to admins in the acp!

  5. Thanks Daniel for the support but adding ...

    Quote

    define( 'DEV_USE_FURL_CACHE', TRUE );

    ... to constants.php didn't make it. FURLs are still not available.

    Obviously all my template changes are not being used because also this won't work in dev mode.

    I guess I don't understand the idea behind dev mode in the way it was made for but I just want to create plugins and test them immediately afterwards in my xampp version. But I can't do this because my xampp version doesn't run regarding look and feel as it does live right now.

    Sorry devs, don't hit me. I have to learn how to think like a pro. 😄

  6. By adding this constant the site works now BUT ...

    • the entire site is in english now although the english language pack is disabled. I can't switch it to my local language although it is being showed as active.
    • All custom SEO urls don't work although they are all listed and activated.
    • All databases don't work anymore. Error code: 256
      ErrorException: You have used a function (count) that should be called from the root namespace for performance reasons (/forum/system/Theme/Theme.php(4465) : eval()'d code::65). (256)

    My technical specs of the local XAMPP system:

    • php: 7.4.14
    • mysql: v5.5.5-10.4.17-MariaDB
    • no plugins or add-ons installed

    Any tips?

  7. Hi,

    I am also having an issue with enabling dev mode (on local XAMPP). I copied all necessary dev folders (except for apps I don't have).

    I set all file permissions correctly.

    The software still works BUT as soon as I add the IN_DEV setting to constants I get an error for every page:

    Whoops \ Exception \ ErrorException (E_WARNING)
    session_name(): Cannot change session name when headers already sent

    Any ideas?

  8. I agree that the "mark as solved" link should not be part of post 1. So I got a solution to hide it.

    Go to following template:

    Forums -> front -> topics -> post

    ... and add the green code.

    Quote

                            {{if !($item->topic_firstpost == $comment->pid) AND ( $comment->item()->isSolved() and $comment->item()->mapped('solved_comment_id') == $comment->pid ) AND $comment->item()->canSolve()}}
                                <li><a href='{$item->url()->csrf()->setQueryString( array( 'do' => 'unsolve', 'answer' => $comment->pid ) )}' data-action="unsolveComment">{lang="unsolve_content"}</a></li>
                            {{endif}}
                            {{if !($item->topic_firstpost == $comment->pid) AND $comment->item()->canSolve() AND ! $comment->item()->isSolved()}}
                                <li><a href='{$item->url()->csrf()->setQueryString( array( 'do' => 'solve', 'answer' => $comment->pid ) )}' data-action="solveComment">{lang="solve_content"}</a></li>
                            {{endif}}

     

     

×
×
  • Create New...