Disciple.Tools Community D.T Community
    • Categories
    • Recent
    • Tags
    • Popular
    • Disicple.Tools
    • Register
    • Login
    1. Home
    2. Popular
    Log in to post
    • All Time
    • Day
    • Week
    • Month
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics

    • All categories
    • jaichele70J

      Next Steps Tile Plugin

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      3
      0 Votes
      3 Posts
      229 Views
      jaichele70J
      @Corsac Thanks! I got it.
    • jaichele70J

      Setup Instructions For Facebook/D.T. Integration App

      Watching Ignoring Scheduled Pinned Locked Moved Facebook
      3
      0 Votes
      3 Posts
      221 Views
      jaichele70J
      @Corsac Yes, the layout is pretty different, so it makes using the given instructions confusing as you need to do some things out of order to the instructions.
    • CorsacC

      AI in Disciple.Tools

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      3
      0 Votes
      3 Posts
      241 Views
      CorsacC
      @CairoCoder Great questions! Security and privacy come first and will be part of the conversations all the way through. The plan in to start playing with AI in a separate plugin. When the plugin is installed and activated an API key will be needed to enable any AI features. We'll be building out in a way that any of the AI services could be used. Those who want to enable AI features will have to choose which one they want. The current big options (OpenAI and Anthropic) are powerful, but we do NOT recommend them for privacy concerns. The most secure option would be a self hosted AI server. This will only be a good option for those with a lot of resources and tech knowledge. We're testing and will offer a recommendation of a service (or a couple services) that are secure and focus on privacy. TL;DR AI features will be opt in.
    • L

      Reset Infor on Contact o Group

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      3
      0 Votes
      3 Posts
      64 Views
      L
      @Corsac Noted, thank you for your answer.
    • TN HooT

      I can see users not created or assigned to me as a Multiplier

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      3
      0 Votes
      3 Posts
      75 Views
      TN HooT
      Thank you Corsac!
    • U

      SMTP 😬

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      3
      0 Votes
      3 Posts
      76 Views
      CorsacC
      @User27 Nice work. Well done getting that going!
    • G

      Add link to DT YouTube Documentation from help page inside DT

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      2
      1 Votes
      2 Posts
      201 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
    • Lauren PL

      Looking for D.T Coaches!

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      2
      0 Votes
      2 Posts
      176 Views
      CorsacC
      This is awesome @Lauren-P. We'd love to see more coaches!
    • S

      Need Help with Training WP Folks on DT

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion answered
      2
      0 Votes
      2 Posts
      205 Views
      H
      @selequin Your vision with Global Switchboard is wonderful and we'd love to get additional developers familiar with and up to speed on Disciple.Tools. I replied via email regarding connecting.
    • H

      Echo Global

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      2
      0 Votes
      2 Posts
      246 Views
      K
      @Hillbilly said in Echo Global: Echo Global is a multi-channel digital response and filtering service that many ministries use for top of funnel digital correspondence with contacts before moving to offline and distributed follow-up of contacts within Disciple.Tools. This plugin facilitates the transfer of information between Echo and Disciple.Tools. Hopefully, many will find the attached recording helpful; which provides both an overview and required setup steps for using the Echo Plugin. <<Overview Recording>> Echo API Tokens, can be sourced as follows: <<API Tokens>> More plugin documentation can be found here.
    • AJA

      User Email Validation

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      2
      0 Votes
      2 Posts
      200 Views
      AJA
      @AJ So the validation for a User comes from the fact that this is a WP user which requires an email address. Instead of a fake email address, @Corsac suggested the better workaround of setting up a single Gmail address and then establishing Aliases in Gmail for each of the Multipliers.
    • D

      Any way to remove links for "Prayer Fuel"?

      Watching Ignoring Scheduled Pinned Locked Moved Prayer Campaigns
      2
      0 Votes
      2 Posts
      266 Views
      CorsacC
      Hey @D_in_Pittsburgh, Tell us more of your use case. The prayer fuel helps those who sign up to know how to pray and what they should be praying for. Have a look at https://110cities.pray4movement.org/. It is a good example of a non ramadan campaign using the prayer fuel.
    • S

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

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests feature
      2
      0 Votes
      2 Posts
      282 Views
      CorsacC
      Hey @Susan, Great question! Here are some initial thoughts. The closest currently would be the quick actions: [image: 1709276803651-8a312111-5281-4034-9963-0bee34eaf791-image.png] They can be clicked multiple times and keep and keep a count: [image: 1709276836846-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.
    • CairoCoderC

      Workflow Action: Copy value from another field

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      2
      0 Votes
      2 Posts
      360 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 );
    • CorsacC

      Location Grid Name Translation

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      2
      0 Votes
      2 Posts
      200 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?
    • jaichele70J

      Metricool to D.T. Integration

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests answered
      2
      0 Votes
      2 Posts
      307 Views
      CorsacC
      Great request @jaichele70. Please see the existing conversation here: https://community.disciple.tools/topic/69/metricool-plugin/15
    • Chris VillwockC

      Feedback Loop Box: from Multipliers/Responders to Content Creators/Marketers

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      2
      1 Votes
      2 Posts
      527 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.
    • Richard WhitakerR

      Mobile App

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      2
      0 Votes
      2 Posts
      204 Views
      Jordan BrownJ
      @Richard-Whitaker (Posting part of my email reply to you here for others to reference!) The Home Screen mobile functionality is sadly not yet stable. The developers are working diligently to fix a few final, critical bugs and then the first stable beta version will be released. We are hoping to have that released in the next week or so. Once it is released I will send it right over to you. If you would like, here is a not fully working version that you can begin to play around with, but keep in mind there are multiple bugs that do not make it production ready. Here is the link where you can download it as well as a loom video I have recorded so you can know some of the bugs and how to get it set up. Video: Link Plugin Download: Link Don't hesitate with further questions!
    • Andrew JeterA

      Manychat integration

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      2
      0 Votes
      2 Posts
      249 Views
      CorsacC
      Hey. @Andrew-Jeter, The ManyChat plugin was a poof of concept. We're not in a position to maintain it and it was not updated in 3+ years so we removed it from the main listing. You're welcome to git it a go. You can download the latest release here: https://github.com/DiscipleTools/disciple-tools-manychat/releases Curious if it still works all right.
    • CairoCoderC

      New Plugin: Gap List in Metrics

      Watching Ignoring Scheduled Pinned Locked Moved Announcements
      2
      2
      0 Votes
      2 Posts
      241 Views
      CorsacC
      Thanks @CairoCoder! https://disciple.tools/plugins/metrics-gap-list/ can now also be installed from the Extensions (D.T) tab: [image: 1721230402171-a9e73631-80f8-4549-86a2-44aa9438052f-image.png]