Jump to content

sulervo

Clients
  • Posts

    113
  • Joined

  • Last visited

 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 sulervo

  1. Maybe there could be a link in notifications to give feedback back to the user who gave you feedback? @stoo2000
  2. It's terrible to try browse images in vertical view. Arrows are not working at all. In horizontal view all is fine. Maybe this can fix?
  3. Would be nice to have confirmation button/pop-up to avoid misclicks. "Do you really want to sign out?" or something like that..
  4. Could there be also an option to hide content linking? It's not required but for me it's useless.
  5. How about in topic view before topic title? Forum version 4.4.10. Thank you.
  6. How to add banner above .ipsBox only in topic list view?
  7. 1. Search results: Condensed and expanded view. Like in "All activity": https://invisioncommunity.com/discover/?&view=condensed https://invisioncommunity.com/discover/?&view=expanded 2. Search result links: "Go to the first post of topic" instead of "Go to the post". This could be ACP setting. Search results: https://invisioncommunity.com/search/?&q=forum&type=forums_topic&nodes=499&search_and_or=or&sortby=relevancy -> the first link: https://invisioncommunity.com/forums/topic/456558-when-will-the-ipb-45-forum-be-ready/?tab=comments#comment-2817447 -> the link could be: https://invisioncommunity.com/forums/topic/456558-when-will-the-ipb-45-forum-be-ready/
  8. Compatibility with PHP 7.4.2? @newbie LAC
  9. Compatibility with PHP 7.4.2? @stoo2000
  10. This plugin needs an update. Users can't post a new topic when the plugin is enabled.
  11. After the latest update #elUserLink_menu doesn't open. After plugin "Enabled -> Disabled -> Enabled" the menu works again. @opentype
  12. How about JavaScript solution? Sorry I forgot told it. Thank you.
  13. Do you know is it possible to get forum ID in topic view? @newbie LAC
  14. Type of advertisement: Supply HTML Code Show the advertisement: Just below the page header HTML code: <script type="text/javascript"> if(window.innerWidth > 1019) { var forums = ["83", "84", "85", "86"]; var forum_id = request.id; if (forums.includes(forum_id) { // Desktop tag/code 1 } else { // Desktop tag/code 2 } } else { var forums = ["83", "84", "85", "86"]; var forum_id = request.id; if (forums.includes(forum_id)) { // Mobile tag/code 1 } else { // Mobile tag/code 2 } } </script> There is JavaScript in the field of HTML code.. not even know if it's working but it's the best I can make. 1. The first "if" = Desktop or mobile. 2. The second "if" = Two tags available and the forum id defines which one is in use. Now I don't know how to get "request.id" so do you have an idea how to solve this? Maybe Extra Condition field would work better? @newbie LAC Fixed version: <script type="text/javascript"> if(window.innerWidth > 1019) { var forums = [83, 84, 85, 86]; var forum_id = {expression="(request.app == 'forums' and request.module == 'forums'and request.controller == 'forums' and isset(request.id)) ? request.id : 0"}; if (forums.includes(forum_id)) { // Desktop tag/code 1 } else { // Desktop tag/code 2 } } else { var forums = [83, 84, 85, 86]; var forum_id = {expression="(request.app == 'forums' and request.module == 'forums'and request.controller == 'forums' and isset(request.id)) ? request.id : 0"}; if (forums.includes(forum_id)) { // Mobile tag/code 1 } else { // Mobile tag/code 2 } } </script>
  15. A bug found. Should be "The Seller": @stoo2000
  16. How you have replaced this plugin in your forums? I purchased this: https://invisioncommunity.com/files/file/7614-advanced-tags-prefixes/ But there is a one problem. If I use "only prefix" mode (which is the most simple for users) and someday remove this plugin then all prefixes are gone. So that's a problem if "SOLD" prefixes disappears.
  17. Compatibility with 4.3? @Tom Irons
  18. How to show banner only in the front page / home page index page? Not in global header. No need for CSS selector. I have custom location key in use.
  19. If topic view looks like this it would be nice to have an option to hide sold items. (MYYTY = Sold). Would be also nice if users can select hiding only once and it works in every forum. Maybe slide switch above topics or under account settings? So users can also see/unhide sold items.
  20. Is there some trick to hide sold topics without hiding them permanently? Like in topic list view or in search results? Maybe a button with a link filter(?) would be good..?
  21. If system select ad which condition is false it shows nothing? Is there possible to determine backup ad which shows if condition doesn't match?
  22. If I would like to upload banners to the system then category based targeting is not possible? I mean that other option if you don't want to use HTML code.
  23. Like this way? {{if \IPS\Request::i()->app == 'forums' and \IPS\Request::i()->module == 'forums' and \IPS\Request::i()->controller == 'topic'}} {{$forumId = 0; try { $topic = \IPS\forums\Topic::loadAndCheckPerms( \IPS\Request::i()->id ); $forumId = $topic->forum_id; } catch( \Exception $e ) {};}} {{endif}} {{if in_array($forumId, array(3, 4))}} code {{endif}} Actually this number is category ID?
×
×
  • Create New...