We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 34162
    • 1 Posts
    This is an auto-generated topic for churchevents 0.3-beta2 by jgulledge19.

    Brief Description:

    ChurchEvents is a package that is for MODx Revolution and it is a calendar that is designed specifically for churches.[h3]Usage[/h3]

    To call the snippit place [[!churchevents ]] in a chunk or resource. Or just create a new resource and select the ChurchEvents template. You must be logged into the manager to manage events, calendars and categories.[h3]Features[/h3]

    • Multiple calendar views
    • Global categories, you can choose colors to identify each category
    • Repeating events, daily, weekly, monthly and about any combination of those.
    • Allow event requests/notification

    Changelog for ChurchEvents

    ChurchEvents 0.3 beta2===============

    • Minor URL fix if you are not using FURLs
    • Minor fix for time displaying correctly on calendar view.

    ChurchEvents 0.3 beta===============

    • Minor Windows OS bug fix for PHP 5.2.*
    • JS calendar now starts on Sunday.
    • Private events now show as Reserved for those not logged in
    • Allow to edit a single instance of a repeating event
    • Added the makeUrl scheme optionex: [[!churchevents? &scheme=`full` ]]

    ChurchEvents 0.2 beta2===============

    • Bug fixed for All day and none repeating events storing in the DB correctly.
    • Fixed repeating event error for months
    • Fixed request event bug
      • 30319
      • 406 Posts
      Can non-churches use this??

      What changes would make this addon work for a business instead of a church??

      Thank you, Tom
        • 33983 ☆ A M B ☆
        • 181 Posts
        If you just changed the categories and calendars to match your business it should work for a business. My primary audience in how I am developing this package is for my church and any churches that what to use it. Eventually I will have some more features aimed at how I would like to use it for my church, but this package is not limited to be only for churches.
          • 6149
          • 4 Posts
          First thanks for making Church Events, I think my church is going to use it smiley

          Second, I found a bug that makes it so people can suggest events even if you have have the option set to no:
          index.php line 90:
          	// can people request events?
          	if ( $modx->getObject('modSystemSetting',array('key' => 'churchevents.allowRequests')) ) {
          		$show_request = true;
          		$allow_veiws[] = 'request';
          		//echo '<br>Allow Request<br>';
          	}


          You have to change it to:
          if ( $modx->getObject('modSystemSetting',array('key' => 'churchevents.allowRequests'))->get('value') ) {

            • 33983 ☆ A M B ☆
            • 181 Posts
            Thanks for reporting the bug I will fix this in the next release.
              • 24908
              • 1 Posts
              Can you explain how to remove "categories" and "calendars" from the Church Events Calendar? I would ideally like to have just one calendar available for my site members to which they can submit events, however, from the "manage" link, I can see no way to delete what already exists. Thanks in advance for any assistance!
                • 6332
                • 8 Posts
                Quote from: revtuttle at Feb 17, 2011, 05:17 PM

                Can you explain how to remove "categories" and "calendars" from the Church Events Calendar? I would ideally like to have just one calendar available for my site members to which they can submit events, however, from the "manage" link, I can see no way to delete what already exists. Thanks in advance for any assistance!

                I also cant find remove functionality. For now I just deleted them in DB from modx_church_calendar table.

                Josh do you plan support for translations?
                  • 33983 ☆ A M B ☆
                  • 181 Posts
                  Apparently I left out a delete option for the calendars/categories. I will put this in the next release.

                  Yes, I plan to properly support translations/internationalization according to: http://rtfm.modx.com/display/revolution20/Internationalization. But I won’t be making the actual translations.

                  Time frame for next release - early April.
                    • 16337
                    • 44 Posts
                    Got 2 questions:

                    -How do I change the default start day of the week from Sunday to Monday?
                    -Any idea why colour picker in manage categories is broken?

                    Many thanks, awesome extra!
                      • 16337
                      • 44 Posts
                      need some more help with churchevents.

                      any advice for 2 snippets to render:

                      snippet A:
                      3 weekend events (say, this fri, sat, sun) with
                      -name of the event
                      -link to the event

                      snippet B:
                      3 upcoming "featured" events with
                      -name of the event
                      -link to the event


                      many thanks in advance