• Guest Event Submissions (beta) aren’t working for me yet. I placed the shortcode in a page, but nothing appears.

    This will be a killer feature for us, so let me know if I can help out.

Viewing 15 replies - 1 through 15 (of 16 total)
  • hi!

    – are you using buddypress?
    – did you try deactivating other plugins or changing to default theme (temporarily to determine any conflicts)

    Thread Starter Jay Collier

    (@jcollier)

    I’m using BuddyPress with the default theme.

    So, next I’ll deactivate plugins and see what might be conflicting.

    For me it will work if I’m not logged in to WordPress. When I am logged in to my site, the page is blank. If I open the same page in different browser that isn’t logged in, the shortcode works.

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    this currently only works for guests users only (i should probably mention this in the settings page)

    Thread Starter Jay Collier

    (@jcollier)

    Thank you. Of course, that makes sense!

    Thanks for posting this thread… I’ve been spending quite a bit of time trying to debug this… never would have thought to not be logged in!

    Marcus – please do include a bit more info on that!

    Thread Starter Jay Collier

    (@jcollier)

    Thanks, again.

    Bump! 1up!

    Thanks, again the same page in different browser that isn’t logged in, the shortcode works. jocuri online

    Hi guys,
    Any idea on how to allow guests to upload image from the front-end?

    feiperinaldi, I am after the answer to the same question about event image uploads. Any solutions yet?

    feiperinaldi, I solved this problem easily.

    First, make sure the form on line 57 looks like this (note the enctype attribute)

    <form id="event-form" method="post" action=""  enctype='multipart/form-data'>

    Paste the following code at line 324 of /events-manager/templates/event-form.php:

    <div id="event-image" class="stuffbox">
    				<h3>
    					<?php _e ( 'Event image', 'dbem' ); ?>
    				</h3>
    				<div class="inside" style="padding:10px;">
    						<?php if ($EM_Event->get_image_url() != '') : ?>
    							<img src='<?php echo $EM_Event->image_url; ?>' alt='<?php echo $EM_Event->name ?>'/>
    						<?php else : ?>
    							<?php _e('No image uploaded for this event yet', 'dbem') ?>
    						<?php endif; ?>
    						<br /><br />
    						<label for='event_image'><?php _e('Upload/change picture', 'dbem') ?></label> <input id='event-image' name='event_image' id='event_image' type='file' size='40' />
    				</div>
    			</div>

    Thank you, bmxcamel,

    I tried just adding the file input to the form and completely forgot about the enctype attribute.

    Thank you verymuch!

    Love this feature and am excited to implement it in a usable form for guests.

    quick question….. does anyone know how to enable the date picker instead of having users guess the correct format

Viewing 15 replies - 1 through 15 (of 16 total)
  • The topic ‘Guest submissions’ is closed to new replies.