Jump to content

MIXOH

Members
  • Posts

    176
  • Joined

  • 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 MIXOH

  1. 2 hours ago, MIXOH said:

    2. If you add a bookmark by writing bookmark_title then bookmarks_activity_stream_bookmarked is displayed incorrectly,% s takes the value of bookmark_title.

    In \extensions\core\Notifications\Bookmark.php

    		$title = $item::$title;
    		$container = ( $item instanceof \IPS\Content\Item ) ? $item : $item->item();
    
    		$containerTitle = $container->mapped('title');

    Missing $containerType 

    Would be:

    		$title = $item::$title;
    		$container = ( $item instanceof \IPS\Content\Item ) ? $item : $item->item();
    		$containerType = $container::$title;
    		$containerTitle = $container->mapped('title');

     

  2. Hello @Fosters Thank you for the useful application. A couple of questions if you allow:
    1. What does Sticky mean? I could not see this function anywhere, just like Color.
    2. If you add a bookmark by writing bookmark_title then bookmarks_activity_stream_bookmarked is displayed incorrectly,% s takes the value of bookmark_title.
    3. If you save a bookmark without a category in the future, you can only delete it (export does not count). It is probably best to disable the ability to save without a category, or to provide the ability to move bookmarks not only when deleting a category.

    To be honest, I'm a little upset with such modest features and settings for $22 + Renewal Term :sad:

  3. 8 minutes ago, JTrollerb123 said:

    Hi, I'm looking for a way to allow GUESTS to be able to use reactions.  Does this also work with guests?

    No, this plugin (like the entire system of reactions in IPS) does not work with guests.

    Reactions for guests are impossible because the database records use a MemberID. What MemberID for guests?

  4. On 4/10/2018 at 5:37 PM, Mousie said:

    Any time you edit a trophy with criteria set for "user gave at least x reactions" it resets to zero

    This is small bug in \applications\trophies\extensions\trophies\TrophyCriteria\Core.php :smile:

    line #95

    $form->add( new \IPS\Helpers\Form\Number( 'trophy_repgiven', isset( $trophy->id, $trophy->crdata['trophy_repgiven'] ) ? $trophy->crdata['trophy_repgiven'] : NULL ) );

    should be:

    $form->add( new \IPS\Helpers\Form\Number( 'trophy_repgiven', isset( $trophy->id, $trophy->crdata['repgiven'] ) ? $trophy->crdata['repgiven'] : NULL ) );

     

  5. 25 minutes ago, Cyboman said:

    excluded groups/members for a specific reaction may not see this reaction at all in the frontend, not in the reaction bar nor any hint in the "who reacted to this" overview

    In the "who reacted" ALL members see ALL reactions (exclude global disabled),  i do not see the point of limiting them in this) In other frontend naturally only available to them.

    25 minutes ago, Cyboman said:

    excluded groups/members may not receive any notification or email about "hidden reactions"

    They do not receive any notifications about unreachable reactions for them. Or ANY in the sense even in the activity feed notification for others members? A senses?

×
×
  • Create New...