• Respond to social media messages from within Disciple.Tools

    3
    1 Votes
    3 Posts
    258 Views
    jaichele70J

    @Corsac Hello. I would like to upvote this, if possible! It sounds amazing.

  • Option to not include contact record changes in e-mail?

    4
    0 Votes
    4 Posts
    185 Views
    CorsacC

    Hey @jtcurtis

    Say we have an option "make emails generic". An admin could toggle it on.
    We would end up with notifications something like these:

    you have been assigned a contact you were @mentioned on a contact update needed on a contact new comment added to a contact a contact has been updated

    The option could just turn some of those off by default for all users, like "a contact has been updated".

    Cool idea with the merged option. I'm thinking it will be more complicated that we need at this point.

    There is also the option to receive notifications via whatsapp.

  • Adding custom geocoded locations fields

    Moved
    3
    0 Votes
    3 Posts
    65 Views
    S

    @Corsac Thank you. I agree it will be an awesome feature.

  • 1 Votes
    2 Posts
    367 Views
    CorsacC

    Nice idea @Chris-Villwock!

    This could be a special comment type with additional workflows for notifications and a view to browse the feedback.

  • Metricool to D.T. Integration

    2
    0 Votes
    2 Posts
    93 Views
    CorsacC

    Great request @jaichele70. Please see the existing conversation here: https://community.disciple.tools/topic/69/metricool-plugin/15

  • Site Link: Receive updates for metrics after hand-off?

    3
    0 Votes
    3 Posts
    189 Views
    CairoCoderC

    @Corsac This is helpful and what I was looking for. Thanks!

  • TikTok Plugin

    3
    0 Votes
    3 Posts
    57 Views
    J

    Thanks, @Corsac! As always, I appreciate your help and all you guys do!

  • SSO with MS 365

    8
    0 Votes
    8 Posts
    159 Views
    CorsacC

    Thanks @Jordan-Brown, fixed.

  • A community Forum

    7
    2 Votes
    7 Posts
    168 Views
    CorsacC

    Thanks @Jordan-Brown
    Yes, this forum is the place for Disciple.Tools users and admins to talk and ask questions.
    The best way I can think of is inviting and encouraging more user to join. And for more questions to be asked. Thanks for being one of them.

    The forum requires its own login. I don't see a way around that. The best would be to open the forum link in a new browser tab.
  • Location Grid Name Translation

    2
    0 Votes
    2 Posts
    40 Views
    B

    Maybe, since each multiplier only uses a limited amount of languages and a limited amount of locations, we don't need to have a full translation of each location in each language.

    What if a multiplier could select a country or region with an adminstrative level and download an excel list from DT with those locations and geocodes.
    The multiplier can then add a column with the translated names, with a column header specifying the language code and upload it to DT. DT can then add that to the dt_location_grid table and follow the language preference from the user profile?

  • Workflow Action: Copy value from another field

    2
    0 Votes
    2 Posts
    182 Views
    CairoCoderC

    I was able to implement my own custom action that does this specifically for the sub-assigned field. The UI only allows the selection of a single field to perform an action on, so I used that as the source of where I want to copy a value from. This action will always copy it to the subassigned field but could be modified to alter other fields:

    add_filter( 'dt_workflows_custom_actions', function ( $actions ) { $actions[] = (object) [ 'id' => 'mtm_copy_to_subassigned', 'name' => 'Copy Relation Field to Sub-assigned', 'displayed' => true // Within admin workflow builder view? ]; return $actions; }, 10, 1 ); add_action( 'mtm_copy_to_subassigned', function ( $post, $field, $value ) { if ( !empty( $post ) && $post['post_type'] === 'contacts' ) { $updated_post = []; $updated_post['subassigned']['values'] = []; if ( !empty( $post[$field] ) ) { foreach ( $post[$field] as $connection ) { $updated_post['subassigned']['values'][] = [ 'value' => $connection['ID'], ]; } } // Assuming we have updated fields, proceed with post update! if ( !empty( $updated_post['subassigned']['values'] ) ) { $updated_post['subassigned']['force_values'] = true; DT_Posts::update_post($post['post_type'], $post['ID'], $updated_post, false, false); } } }, 10, 3 );
  • Create Multipliers who are not Users

    4
    1 Votes
    4 Posts
    141 Views
    CairoCoderC

    This could be helpful when link with the other request I just shared: https://community.disciple.tools/topic/89/link-a-magic-link-template-to-update-needed-triggers

    Having multipliers that are not users, you could use magic links that automatically get sent to them when Updates Needed triggers get triggered. Since non-users wouldn't get notifications about those comments, the combination of these two features would allow non-user contacts to be notified about updates needed for contacts they are assigned to - and give them access to make those updates.

  • Link a Magic Link Template to Update Needed Triggers

    1
    0 Votes
    1 Posts
    46 Views
    No one has replied
  • Instagram integration

    4
    2 Votes
    4 Posts
    231 Views
    jaichele70J

    @gaboayala The OneKingdom team would also like to upvote this request!

  • How to note a multi use "action" rather than one time click

    2
    0 Votes
    2 Posts
    71 Views
    CorsacC

    Hey @Susan,

    Great question! Here are some initial thoughts.

    The closest currently would be the quick actions:
    8a312111-5281-4034-9963-0bee34eaf791-image.png

    They can be clicked multiple times and keep and keep a count:
    4c23b973-7d05-46f5-98f1-ecc290f74485-image.png

    More quick actions can be added in WP Admin > Settings (D.T) > Custom Lists > Quick Actions.

    2 other possible paths:

    The share app, a user can track when and where they share: https://disciple.tools/plugins/share-app/ The lead lag plugin. Send an email to each user each week asking them to fill out a form which populates "report" records. This one is a bit more complex to set up. https://disciple.tools/plugins/survey-collection/ building a "count" field that acts like the quick actions.
  • Add link to DT YouTube Documentation from help page inside DT

    2
    1 Votes
    2 Posts
    79 Views
    CorsacC

    @George Yes! We recently added added some of the videos to relevant documentation pages. We need a direct link to the youtube channel?
    https://www.youtube.com/@discipletools705