{"id":16980,"date":"2012-03-20T13:14:43","date_gmt":"2012-03-20T20:14:43","guid":{"rendered":"http:\/\/tri.be\/support\/forums\/topic\/enabling-private-events\/"},"modified":"2015-07-06T17:00:05","modified_gmt":"2015-07-07T00:00:05","slug":"enabling-private-events","status":"closed","type":"topic","link":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/enabling-private-events\/","title":{"rendered":"Enabling Private Events"},"content":{"rendered":"<p>Hello All,<\/p>\n<p>I&#8217;m new to the community and wanted to throw something out in case it could help someone else.  We have a requirement with our calendars to allow users to post private events (aka require a login to see an event).  After initially installing the plugin, I closed my eyes and prayed that setting visibility of the event post to &#8220;Private&#8221; would give me the functionality I was looking for.  It didn&#8217;t, so I looked for a solution.<\/p>\n<p>Since this plugin is so nicely architected, I was able to change one function in the-events-calendar.class.php file, and achieve the result I was looking for.  Basically, by default the getEvents function queries only public visibility posts.  I added the following logic to allow public and private posts to be queried as long as the current user has the &#8220;read_private_tribe_events&#8221; capability:<\/p>\n<p>public function getEvents( $args = &#8221; ) {<br \/>\n\t$tribe_ecp = TribeEvents::instance();<\/p>\n<p>\t\/\/ Determine if user can read private events.  If so, pass private events by default, otherwise hide them.<br \/>\n\tglobal $current_user;<br \/>\n\tif (user_can( $current_user-&gt;ID, &#8216;read_private_tribe_events&#8217; ))<br \/>\n\t{<br \/>\n\t\t$defaults = array(<br \/>\n\t\t\t&#8216;posts_per_page&#8217; =&gt; tribe_get_option( &#8216;postsPerPage&#8217;, 10 ),<br \/>\n\t\t\t&#8216;post_type&#8217; =&gt; TribeEvents::POSTTYPE,<br \/>\n\t\t\t&#8216;orderby&#8217; =&gt; &#8216;event_date&#8217;,<br \/>\n\t\t\t&#8216;order&#8217; =&gt; &#8216;ASC&#8217;,<br \/>\n\t\t\t&#8216;post_status&#8217; =&gt; array( &#8216;publish&#8217;, &#8216;private&#8217; )<br \/>\n\t\t);<br \/>\n\t}else{<br \/>\n\t\t$defaults = array(<br \/>\n\t\t\t&#8216;posts_per_page&#8217; =&gt; tribe_get_option( &#8216;postsPerPage&#8217;, 10 ),<br \/>\n\t\t\t&#8216;post_type&#8217; =&gt; TribeEvents::POSTTYPE,<br \/>\n\t\t\t&#8216;orderby&#8217; =&gt; &#8216;event_date&#8217;,<br \/>\n\t\t\t&#8216;order&#8217; =&gt; &#8216;ASC&#8217;<br \/>\n\t\t);<br \/>\n\t}\t\t\t<\/p>\n<p>\t$args = wp_parse_args( $args, $defaults);<br \/>\n\treturn TribeEventsQuery::getEvents($args);<br \/>\n}<\/p>\n<p>I&#8217;ve done only a bit of testing so far, and definitely haven&#8217;t covered every use case out there, but I thought I&#8217;d throw this out in case someone can see a big problem with this or has anything to add.<\/p>\n<p>I really don&#8217;t like modifying the core library to support this, but until this functionality is supported natively, this is the best I&#8217;ve got so far.<\/p>\n<p>-Steve<\/p>\n","protected":false},"template":"","class_list":["post-16980","topic","type-topic","status-closed","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Enabling Private Events -<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/enabling-private-events\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Enabling Private Events -\" \/>\n<meta property=\"og:description\" content=\"Hello All, I&#8217;m new to the community and wanted to throw something out in case it could help someone else. We have a requirement with our calendars to allow users to post private events (aka require a login to see an event). After initially installing the plugin, I closed my eyes and prayed that setting [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/enabling-private-events\/\" \/>\n<meta property=\"article:modified_time\" content=\"2015-07-07T00:00:05+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/enabling-private-events\/\",\"url\":\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/enabling-private-events\/\",\"name\":\"Enabling Private Events -\",\"isPartOf\":{\"@id\":\"https:\/\/theeventscalendar.com\/support\/#website\"},\"datePublished\":\"2012-03-20T20:14:43+00:00\",\"dateModified\":\"2015-07-07T00:00:05+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/enabling-private-events\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/enabling-private-events\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/theeventscalendar.com\/support\/forums\/topic\/enabling-private-events\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/theeventscalendar.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Topics\",\"item\":\"https:\/\/theeventscalendar.com\/support\/topics\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Calendar Products\",\"item\":\"https:\/\/theeventscalendar.com\/support\/forums\/forum\/events\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Events Calendar PRO\",\"item\":\"https:\/\/theeventscalendar.com\/support\/forums\/forum\/events\/events-calendar-pro\/\"},{\"@type\":\"ListItem\",\"position\":5,\"name\":\"Enabling Private Events\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/theeventscalendar.com\/support\/#website\",\"url\":\"https:\/\/theeventscalendar.com\/support\/\",\"name\":\"\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/theeventscalendar.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Enabling Private Events -","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/enabling-private-events\/","og_locale":"en_US","og_type":"article","og_title":"Enabling Private Events -","og_description":"Hello All, I&#8217;m new to the community and wanted to throw something out in case it could help someone else. We have a requirement with our calendars to allow users to post private events (aka require a login to see an event). After initially installing the plugin, I closed my eyes and prayed that setting [&hellip;]","og_url":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/enabling-private-events\/","article_modified_time":"2015-07-07T00:00:05+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/enabling-private-events\/","url":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/enabling-private-events\/","name":"Enabling Private Events -","isPartOf":{"@id":"https:\/\/theeventscalendar.com\/support\/#website"},"datePublished":"2012-03-20T20:14:43+00:00","dateModified":"2015-07-07T00:00:05+00:00","breadcrumb":{"@id":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/enabling-private-events\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/theeventscalendar.com\/support\/forums\/topic\/enabling-private-events\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/theeventscalendar.com\/support\/forums\/topic\/enabling-private-events\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/theeventscalendar.com\/support\/"},{"@type":"ListItem","position":2,"name":"Topics","item":"https:\/\/theeventscalendar.com\/support\/topics\/"},{"@type":"ListItem","position":3,"name":"Calendar Products","item":"https:\/\/theeventscalendar.com\/support\/forums\/forum\/events\/"},{"@type":"ListItem","position":4,"name":"Events Calendar PRO","item":"https:\/\/theeventscalendar.com\/support\/forums\/forum\/events\/events-calendar-pro\/"},{"@type":"ListItem","position":5,"name":"Enabling Private Events"}]},{"@type":"WebSite","@id":"https:\/\/theeventscalendar.com\/support\/#website","url":"https:\/\/theeventscalendar.com\/support\/","name":"","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/theeventscalendar.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/topic\/16980","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/topic"}],"about":[{"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/types\/topic"}],"version-history":[{"count":1,"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/topic\/16980\/revisions"}],"predecessor-version":[{"id":976411,"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/topic\/16980\/revisions\/976411"}],"wp:attachment":[{"href":"https:\/\/theeventscalendar.com\/support\/wp-json\/wp\/v2\/media?parent=16980"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}