Everything posted by Adriano Faria
-
Public Saved Actions
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
-
User Posts in Topic
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.
-
Links Directory
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.
-
User Posts in Topic
@jair101 @Kjell Iver Johansen I just updated the file with the link embraced by the <li>. Version kept. Update your install.
-
User Posts in Topic
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
-
User Posts in Topic
Will take a look tomorrow in the morning. ?
-
Links Directory
Because $cfields comes from the php. In indexBlock don’t. My bad Have you tried? -------------------- @Bluto, try: {{$fields = $link->customFields();}}
-
Clubs Enhancements
Not mine anymore. You should ask to @InvisionHQ
-
Links Directory
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.
-
User Posts in Topic
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.
-
Bulk PM
I’ll think about it in a new version.
-
Links Directory
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.
-
Profile Photo in Online Lists
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;}
-
Calendar Enhancements
Yes, just tested and you are able to add attendees in passed events.
-
Calendar Enhancements
Probably yes. I don’t remember any restrictions like that. Will test andwill let you know.
-
Invite System
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.
-
Links Directory
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.
-
Links Directory
Do you have any record shown as affiliate? Regarding style, it is just like the other blocks.
-
Links Directory
In the app settings -> Link View you can enable and reorder blocks at your wish. EDIT: Index view, sorry.
-
Links Directory
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.
-
Links Directory
Tks for purchasing. Go to ACP -> Members -> Groups - Guests and enable this group to access the app.
-
Clubs Enhancements
There’s a setting for this:
-
Links Directory
Yes, I developed it and transferred to another dev later.
-
Links Directory
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.
-
Links Directory
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.