Jump to content

Adriano Faria

Clients
  • Joined

Everything posted by Adriano Faria

  1. About This File This plugin will give the ability to topic authors to run specific topic Saved Actions allowed by the administrator. Public Saved Actions will appear only to the topic author and if the author doesn't has mod permission to run regular Saved Actions. Requirement: Forums app
  2. I can add a setting, no big deal but it uses permissions, so if a guest can read the topic, guest will be able to view the posts.
  3. You better use same size for all icons. You can see the last one is smaller. But I’ll take a look in next version.
  4. @jair101 @Kjell Iver Johansen I just updated the file with the link embraced by the <li>. Version kept. Update your install.
  5. I’ll try to fix in a few minutes but I’m not sure I will be able. Probably tomorrow in the morning. The link is the topic_url/&do=userPosts&mid=member_id Example: ...index.php?/topic/999-topic-title/&do=userPosts&mid=1
  6. Will take a look tomorrow in the morning. ?
  7. Because $cfields comes from the php. In indexBlock don’t. My bad Have you tried? -------------------- @Bluto, try: {{$fields = $link->customFields();}}
  8. Not mine anymore. You should ask to @InvisionHQ
  9. There’s no space there to add custom fields but if you want to edit your template, use $link->customFields() or something like that. Take a look in the view template.
  10. Adriano Faria posted a post in a topic in Marketplace
    This plugin will add the ability to display all posts made by a specific user in a topic. All the moderation and topic features are still available (except reply to the topic) for those who can use them.
  11. Adriano Faria replied to Adriano Faria's post in a topic in Marketplace
    I’ll think about it in a new version.
  12. The address itself don’t; the text of what you selected yes. This is fixed and I’ll release a new version yet this week.
  13. True. I'll add the CSS in next version. For now, add to the custom.css: .ipsList_inline.ipsList_csv li.no_sep:after{content: ' '!important;}
  14. Yes, just tested and you are able to add attendees in passed events.
  15. Probably yes. I don’t remember any restrictions like that. Will test andwill let you know.
  16. Adriano Faria replied to Adriano Faria's post in a topic in Marketplace
    You better disable it for now. I don’t have how to test it as I don’t use social media on my board. It was a request from another user who said it was ok. I don’t even tested it. Your best bet for now is disable this new feature. It will be fixed or removed as soon as I get a reply.
  17. Try the Link Feed widget. It should be an option in its configuration. Let me know if it isn’t; I’ll add in next version.
  18. Do you have any record shown as affiliate? Regarding style, it is just like the other blocks.
  19. In the app settings -> Link View you can enable and reorder blocks at your wish. EDIT: Index view, sorry.
  20. Pin and feature are a IPS4 feature and appears in all apps (Forums, Gallery, Blog, Records from Pages, etc.). Pin will make the record appears first in the category listing. It’s the same of pinned topics in a forum. Feature will make the record a special record and can be displayed anywhere, like in LD index or in the Link Feed widget. If you wan to see an example, Marketplace here shows some featured files in the index. Affiliate comes from old versions of this app and it is exactly for what it does: you can make partners/affiliates. That’s all. I just wanted to keep it, in case someone uses it. There’s a block in the index for the affiliates.
  21. Tks for purchasing. Go to ACP -> Members -> Groups - Guests and enable this group to access the app.
  22. There’s a setting for this:
  23. Yes, I developed it and transferred to another dev later.
  24. The following edit will make a template edit unnecessary. Same file, find: public function map( $width, $height ) { if( $this->location ) { try { return \IPS\GeoLocation::buildFromJson( $this->location )->map()->render( $width, $height ); } catch( \BadMethodCallException $e ){} } return ''; } Change to: public function map( $width, $height ) { if( $this->location AND $this->container()->allow_location ) { try { return \IPS\GeoLocation::buildFromJson( $this->location )->map()->render( $width, $height ); } catch( \BadMethodCallException $e ){} } return ''; } Fix will be available in next version.
  25. Yes, there's a bug in the address field. If you don't want to wait for a new version (I will wait a couple of days to see if something else appears), then make the following edit: - open applications\links\sources\Link\Link.php and find: if( isset( $values['link_location'] ) ) { $this->location = ( $values['link_location'] !== NULL ) ? json_encode( $values['link_location'] ) : NULL; } Change to: if( $this->container()->allow_location ) { $this->location = ( $values['link_location'] !== NULL ) ? json_encode( $values['link_location'] ) : NULL; } Then enabled location in the category, edit link and clear it. Save. Disable location. There's also a template edit but fix will be available in next version.