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

Everything posted by MIXOH

  1. 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
  3. This plugin is not for commerce. In the commerce, thefield of addresses are important, and it is right!
  4. What's New in Version 1.0.1 Released 4 minutes ago Added check for updates of new versions
  5. What's New in Version 1.1.1 Released 1 minute ago Added check for updates of new versions
  6. Support topic for: What's New in Version 1.0.1 Released Just now Added check for updates of new versions
  7. 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?
  8. @iacas This is not my sidebar, this fields present to all Marketplace.It does not matter, the main thing is that the meaning is clear
  9. This is small bug in \applications\trophies\extensions\trophies\TrophyCriteria\Core.php 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 ) );
  10. Your requirements are clear. I'll think about what can be done
  11. 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. 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?
  12. any updates or info from respected dev? Use trait it's good from dev, but not for third-party. Any methods for hook trait.
  13. What's New in Version 1.1.0 Released Just now Small bug fix IPS 4.3 compatibility
  14. @DSystem Really traits impose certain restrictions on hooks( I'll see if I can help you.
  15. @DSystem The plugin does not affect the standard mechanism of reactions, only modifies it a little. How do you now have a mechanism for reaction interaction with Points Economy?
×
×
  • Create New...