• A community Forum

    Feature Requests
    7
    2 Votes
    7 Posts
    175 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.
  • Magic Links - Creating Contacts and Readonly fields

    Announcements
    4
    1 Votes
    4 Posts
    227 Views
    Jordan BrownJ
    @Corsac Seems like the instance I installed it on had something else blocking that feature. It is working fine on another instance! Great feature addition!
  • Exporting data to Powerbi

    General Discussion
    8
    0 Votes
    8 Posts
    178 Views
    B MB
    @CairoCoder thanks
  • Location Grid Name Translation

    Feature Requests
    2
    0 Votes
    2 Posts
    43 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?
  • Magic Link listing all contacts

    Moved Magic Links Plugin
    4
    0 Votes
    4 Posts
    62 Views
    O
    @Corsac Hi, yes I tried logging out and in a private tab this and it doesn't show the contacts. Thank you!
  • How do I delete a user account

    General Discussion
    4
    0 Votes
    4 Posts
    62 Views
    U
    @Hillbilly, thank you! That worked
  • Workflow action to send magic link

    General Discussion
    4
    0 Votes
    4 Posts
    58 Views
    CairoCoderC
    I think the tricky part will be the logic to determine if it has been executed or not. Otherwise it's going to keep sending the same link over and over. Maybe it could store something in the database (post meta data?) that logs the last time it was sent and not send it again for a period of time or until the criteria are not met and then met again (that sounds tricky but most accurate)
  • Workflow Action: Copy value from another field

    Feature Requests
    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 );
  • Disciple.Tools v1.62

    Announcements
    1
    0 Votes
    1 Posts
    112 Views
    No one has replied
  • conditional fields for the webform

    D.T Webform
    5
    0 Votes
    5 Posts
    90 Views
    B MB
    Thanks will see what we can do
  • Create Multipliers who are not Users

    Feature Requests
    4
    1 Votes
    4 Posts
    143 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

    Feature Requests
    1
    0 Votes
    1 Posts
    46 Views
    No one has replied
  • ABIDING IN CHRIST and MASS EVANGELISM STRATEGY

    General Discussion
    9
    1 Votes
    9 Posts
    202 Views
    CorsacC
    @KINGDOMgits thanks for sharing!! You totally can import CSV content into Disciple.Tools. You'll just need to install the CSV import plugin first: https://disciple.tools/plugins/disciple-tools-import/ Then head over to WP Admin > Extensions (D.T) > Import.
  • Disciple.Tools v1.61!

    Announcements
    1
    0 Votes
    1 Posts
    246 Views
    No one has replied
  • Send WhatsApp Notifications in more languages

    Twilio - SMS & WhatsApp
    1
    0 Votes
    1 Posts
    224 Views
    No one has replied
  • Disciple.Tools Notifications using SMS and WhatsApp

    Announcements
    1
    +1
    0 Votes
    1 Posts
    28 Views
    No one has replied
  • Ability to record voice messages on a contact record

    D.T Storage
    1
    0 Votes
    1 Posts
    54 Views
    No one has replied
  • Ability to use pictures in record comments

    D.T Storage
    1
    0 Votes
    1 Posts
    18 Views
    No one has replied
  • Presenting: Disciple.Tools Storage Plugin

    Announcements
    1
    +0
    0 Votes
    1 Posts
    195 Views
    No one has replied
  • User avatars

    D.T Storage
    1
    0 Votes
    1 Posts
    23 Views
    No one has replied