How to find out who created an event?How does one stop people who haven't paid (pending from pay later) from filling an event?(Event reminder) Exclude Participant who registered after the event!Is there a way to automate event feedback using Civi and Drupal webform?How to see who the individual is who registers multiple people for a paid eventHow to store template_id that new event is derived fromCiviDiscount based on group membershipEvent Search results - hide Event ID and display another custom fieldHow do I make a CiviEvent accessible to the public?WP Install: Event registration - registered by participant idprinting event confirmations

Is it advisable to inform the CEO about his brother accessing his office?

What is the meaning of 'shout over' in a sentence exactly?

How to find out who created an event?

Why do some PCBs have exposed plated perimeters?

German idiomatic equivalents of 能骗就骗 (if you can cheat, then cheat)

Why would Dementors torture a Death Eater if they are loyal to Voldemort?

Deducing Lambda Capture Types

Does it make sense to (partially) create a conlang that you don't intend to actually use in the story?

Installed software from source, how to say yum not to install it from package?

How did they film the Invisible Man being invisible in 1933?

What verb for taking advantage fits in "I don't want to ________ on the friendship"?

Have any large aeroplanes been landed — safely and without damage — in locations that they could not be flown away from?

Why did the Apple //e make a hideous noise if you inserted the disk upside down?

Does a lens with a bigger max. aperture focus faster than a lens with a smaller max. aperture?

"I am [the / an] owner of a bookstore"?

Automorphisms and epimorphisms of finite groups

Tricolour nonogram

How to track mail undetectably?

What prevents a US state from colonizing a smaller state?

What does 5d4 x 10 gp mean?

Why will we fail creating a self sustaining off world colony?

What election rules and voting rights are guaranteed by the US Constitution?

Would skyscrapers tip over if people fell sideways?

How does the 'five minute adventuring day' affect class balance?



How to find out who created an event?


How does one stop people who haven't paid (pending from pay later) from filling an event?(Event reminder) Exclude Participant who registered after the event!Is there a way to automate event feedback using Civi and Drupal webform?How to see who the individual is who registers multiple people for a paid eventHow to store template_id that new event is derived fromCiviDiscount based on group membershipEvent Search results - hide Event ID and display another custom fieldHow do I make a CiviEvent accessible to the public?WP Install: Event registration - registered by participant idprinting event confirmations













2















Is there an easy way to find out who created an event like how we are able to see who created an email?










share|improve this question


























    2















    Is there an easy way to find out who created an event like how we are able to see who created an email?










    share|improve this question
























      2












      2








      2








      Is there an easy way to find out who created an event like how we are able to see who created an email?










      share|improve this question














      Is there an easy way to find out who created an event like how we are able to see who created an email?







      civievent






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 8 hours ago









      themakthemak

      1,4973 silver badges17 bronze badges




      1,4973 silver badges17 bronze badges




















          1 Answer
          1






          active

          oldest

          votes


















          3














          CiviCRM DOES store that information, but doesn't expose it to the user interface. So you have two choices:



          • Check with SQL. This will give a list of all events with creators:

          select ce.id, ce.title, cc.display_name from civicrm_event ce JOIN civicrm_contact cc on ce.created_id = cc.id;


          Add WHERE ce.id = x before the semicolon at the end to just show a single event (where x is the event's ID).



          • I wrote an extension that allows you to view (and change) the name from the user interface called Edit Event Manager.





          share|improve this answer

























            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "605"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            noCode: true, onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcivicrm.stackexchange.com%2fquestions%2f31241%2fhow-to-find-out-who-created-an-event%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            3














            CiviCRM DOES store that information, but doesn't expose it to the user interface. So you have two choices:



            • Check with SQL. This will give a list of all events with creators:

            select ce.id, ce.title, cc.display_name from civicrm_event ce JOIN civicrm_contact cc on ce.created_id = cc.id;


            Add WHERE ce.id = x before the semicolon at the end to just show a single event (where x is the event's ID).



            • I wrote an extension that allows you to view (and change) the name from the user interface called Edit Event Manager.





            share|improve this answer



























              3














              CiviCRM DOES store that information, but doesn't expose it to the user interface. So you have two choices:



              • Check with SQL. This will give a list of all events with creators:

              select ce.id, ce.title, cc.display_name from civicrm_event ce JOIN civicrm_contact cc on ce.created_id = cc.id;


              Add WHERE ce.id = x before the semicolon at the end to just show a single event (where x is the event's ID).



              • I wrote an extension that allows you to view (and change) the name from the user interface called Edit Event Manager.





              share|improve this answer

























                3












                3








                3







                CiviCRM DOES store that information, but doesn't expose it to the user interface. So you have two choices:



                • Check with SQL. This will give a list of all events with creators:

                select ce.id, ce.title, cc.display_name from civicrm_event ce JOIN civicrm_contact cc on ce.created_id = cc.id;


                Add WHERE ce.id = x before the semicolon at the end to just show a single event (where x is the event's ID).



                • I wrote an extension that allows you to view (and change) the name from the user interface called Edit Event Manager.





                share|improve this answer













                CiviCRM DOES store that information, but doesn't expose it to the user interface. So you have two choices:



                • Check with SQL. This will give a list of all events with creators:

                select ce.id, ce.title, cc.display_name from civicrm_event ce JOIN civicrm_contact cc on ce.created_id = cc.id;


                Add WHERE ce.id = x before the semicolon at the end to just show a single event (where x is the event's ID).



                • I wrote an extension that allows you to view (and change) the name from the user interface called Edit Event Manager.






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 8 hours ago









                Jon G - Megaphone TechJon G - Megaphone Tech

                28k1 gold badge20 silver badges78 bronze badges




                28k1 gold badge20 silver badges78 bronze badges



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to CiviCRM Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcivicrm.stackexchange.com%2fquestions%2f31241%2fhow-to-find-out-who-created-an-event%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Sahara Skak | Bilen | Luke uk diar | NawigatsjuunCommonskategorii: SaharaWikivoyage raisfeerer: Sahara26° N, 13° O

                    The fall designs the understood secretary. Looking glass Science Shock Discovery Hot Everybody Loves Raymond Smile 곳 서비스 성실하다 Defas Kaloolon Definition: To combine or impregnate with sulphur or any of its compounds as to sulphurize caoutchouc in vulcanizing Flame colored Reason Useful Thin Help 갖다 유명하다 낙엽 장례식 Country Iron Definition: A fencer a gladiator one who exhibits his skill in the use of the sword Definition: The American black throated bunting Spiza Americana Nostalgic Needy Method to my madness 시키다 평가되다 전부 소설가 우아하다 Argument Tin Feeling Representative Gym Music Gaur Chicken 일쑤 코치 편 학생증 The harbor values the sugar. Vasagle Yammoe Enstatite Definition: Capable of being limited Road Neighborly Five Refer Built Kangaroo 비비다 Degree Release Bargain Horse 하루 형님 유교 석 동부 괴롭히다 경제력

                    19. јануар Садржај Догађаји Рођења Смрти Празници и дани сећања Види још Референце Мени за навигацијуу