How to find out who created an event?How does one stop people who haven't paid (pending from pay later) from...
Have any large aeroplanes been landed — safely and without damage — in locations that they could not be flown away from?
Position representation of spin states and spin operators
Why is my 401k manager recommending me to save more?
Why should I allow multiple IPs on a website for a single session?
I agreed to cancel a long-planned vacation (with travel costs) due to project deadlines, but now the timeline has all changed again
Having to constantly redo everything because I don't know how to do it
Meaning of the word "good" in context
I just started; should I accept a farewell lunch for a coworker I don't know?
What are the children of two Muggle-borns called?
Can I submit a paper to two or more journals at the same time?
How to count the number of bytes in a file, grouping the same bytes?
English idiomatic equivalents of 能骗就骗 (if you can cheat, then cheat)
Customs and immigration on a USA-UK-Sweden flight itinerary
Calculus, water poured into a cone: Why is the derivative non-linear?
Does friction always oppose motion?
How do I present a future free of gender stereotypes without being jarring or overpowering the narrative?
What happens if a caster is surprised while casting a spell with a long casting time?
Two palindromes are not enough
Active wildlife outside the window- Good or Bad for Cat psychology?
Russian equivalents of 能骗就骗 (if you can cheat, then cheat)
Is it OK to say "The situation is pregnant with a crisis"?
What prevents a US state from colonizing a smaller state?
Why would Dementors torture a Death Eater if they are loyal to Voldemort?
Hard for me to understand one tip written in "The as-if rule" of cppreference
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 there an easy way to find out who created an event like how we are able to see who created an email?
civievent
add a comment |
Is there an easy way to find out who created an event like how we are able to see who created an email?
civievent
add a comment |
Is there an easy way to find out who created an event like how we are able to see who created an email?
civievent
Is there an easy way to find out who created an event like how we are able to see who created an email?
civievent
civievent
asked 9 hours ago
themakthemak
1,4973 silver badges17 bronze badges
1,4973 silver badges17 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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.
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment |
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.
add a comment |
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.
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.
answered 9 hours ago
Jon G - Megaphone TechJon G - Megaphone Tech
28k1 gold badge20 silver badges78 bronze badges
28k1 gold badge20 silver badges78 bronze badges
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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