Jump to content

ReyDev

Members
  • Posts

    539
  • Joined

  • Days Won

    3

 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 ReyDev

  1. 20 minutes ago, Ramsesx said:

    In 2017 I paid 550$ for this:

    915022151_2021-09-1420_24.57invisioncommunity.coma7f53e9d3951.jpg.48f3a05dc2f22a930d3e9a550d571b06.jpg

    Now it's increased near 50%, the renewal went from 190$ to 280$ / year.

    For me, the price increase is still bearable, as long as my income from the forum does not drop significantly. But for hobby communities, such prices are probably harder to bear. By the way, these hobbyists are free advertising media for Invision, as they promote their product. Ultimately, new forum operators orientate themselves on the platforms in which they themselves are active. If they disappear from the market, this advertising also disappears. Another very important aspect is the existing add-ons of a forum platform provider, these are and always have been a driving force for a successful community, see vBulletin. Some developers have already spoken out about the price increases. If this price increase causes them to turn away from Invision, this will also lead to lower licence sales in the long term. So this new development could lead to a downward spiral.
    I don't understand why developers as important as openfont and Adriano have to pay licence fees at all, because without them Invision would certainly not be where it is now. Without developers, without high quality addons, no customers, to put it bluntly. Just because of a few hundred dollars more revenue you risk losing everything you have built up over the years. This is not a wise decision because the developers are the be-all and end-all of any successful forum platform. 

    (translated by DeepL)

    I think the users of Invision should have a discount, because they choose one by comparing different platforms. As a developer, I may not have a problem with this price increase, but the customers of this platform and marketplace may leave. for me, as a new developer paying $100 more a year is not important. The problem is that platform and market customers are shrinking.

  2. 7 hours ago, Core4D said:

    Hi @ReyDev I've notice annoying issue after updating IPS to latest version. For some reason Widget will randomly show for me even though I set a rule to shows only to Visitiors. So, sometimes widget will be displayed sometimes will be hidden. I didnt have that issue before the update.

    In my case I am using WYSWYG widget with Google AD a content within Source text.

    Thanks,
    Igor

    Hi @Core4D
    Enable this option please aws-s000019.thumb.png.64e24ffaa40db807a1288e34b2ef2f75.png

  3. 14 minutes ago, Adriano Faria said:

    Then make a query!

    I did!
     

    for followers :

    \IPS\Db::i()->select( 'follow_member_id', 'core_follow', [ 'follow_app=? AND follow_area=? AND follow_rel_id=?', 'core', 'member', \IPS\Member::loggedIn()->member_id ] )


    for following :

    \IPS\Db::i()->select( 'follow_rel_id', 'core_follow', [ 'follow_app=? AND follow_area=? AND follow_member_id=?', 'core', 'member', \IPS\Member::loggedIn()->member_id ] )


     maybe helps someone!

  4. 46 minutes ago, Adriano Faria said:

    you can probably try: $member-> followers().

    thanks a lot , works for followers. what about the following, i also want to fetch the members who follow a specific member. I took a look at `\IPS\Member` class and found this method. 

    public function following( $app, $area, $id )
    	{
    		//
    	}

    I have no idea if it works for the following members or not.

  5. 11 minutes ago, MythonPonty said:

    hi @ReyDev

    does it only works with the default theme and not any custom themes ?

    I've enable menu plus, but it works just in my default theme. 

    Hi @MythonPonty
    if your theme has an option to disable its navigation, so you can enable Menu plus instead of that. Unfortunately some themes do not have this option and this option should be added to their settings, What I did in the LAXERI theme. 
    I think you should ask the author of your theme if it has such an option.

  6. 1 hour ago, liquidfractal said:

    Hi @ReyDev...just so I'm sure I'm on the same page as far as functionality goes: Hotspot Images currently works with images posted in Forums and Blogs but not (at least not now) images in Pages articles, Gallery, or Commerce.  Is this right?

    Thanks!

    If you mean posting hotspot images as part of blog and forum topics  (in the editor), the answer is no.
    you can use it anywhere and unlimited number, even use more than one widget per page, But they can not be used in the editor or as a blog or forum cover.

  7. 7 hours ago, liquidfractal said:

    Do you think this might be implemented in the future?  Personally I'm more interested in having this work for Gallery images, but if they work for images posted in Forums that's pretty cool too. 🙂 

    unfortunately given the time it takes to review and implement, I have no plans to do them right now. 

  8. 10 minutes ago, Daniel F said:

    Adriano's code will disable the app completely, which I guess is also not what you want:D

    1. You'll have to tell us how you're changing the navigation:D

    2. You *could*  use \IPS\Member::loggedIn()->skin to get the members theme id and do something like inside your templates:

    {{if \IPS\Member::loggedIn()->skin === 3}}
    this will be displayed only in theme 3
    {{else}}
    everybody else will see this
    {{endif}}

    Something similar could be done in Theme::hookData(). It's really a powerful system, so I would suggest to spend some time to see how exactly it's working:)

    You could also create a hook on Template::compileTemplate to do whatever you want there, for example to remove the hook before the template is compiled;) BUT I'm afraid, that's just asking for trouble and it's something what you could do for your own board, but I don't think that we would allow such changes in the marketplace! 

    thanks @Daniel F
    as you know i have Menu plus and Search overlay apps. i recently released LAXERI theme that has own search and navigation. in my board (ips.valacoding.com) i want to disable these two apps for the LAXERI them that the visitors see the LAXERI navigation and search plugin. it's just for demo version
     

    14 minutes ago, Daniel F said:

    Something similar could be done in Theme::hookData(). It's really a powerful system, so I would suggest to spend some time to see how exactly it's working:)

    I will definitely take a look

×
×
  • Create New...