Title: Dave's Replies - page 3 | WordPress.org

---

# Dave

  [  ](https://wordpress.org/support/users/sourcez/)

 *   [Profile](https://wordpress.org/support/users/sourcez/)
 *   [Topics Started](https://wordpress.org/support/users/sourcez/topics/)
 *   [Replies Created](https://wordpress.org/support/users/sourcez/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/sourcez/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/sourcez/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/sourcez/engagements/)
 *   [Favorites](https://wordpress.org/support/users/sourcez/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 31 through 45 (of 55 total)

[←](https://wordpress.org/support/users/sourcez/replies/page/2/?output_format=md)
[1](https://wordpress.org/support/users/sourcez/replies/?output_format=md) [2](https://wordpress.org/support/users/sourcez/replies/page/2/?output_format=md)
3 [4](https://wordpress.org/support/users/sourcez/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/sourcez/replies/page/4/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SEATT: Simple Event Attendance] [Plugin: Simple Event Attendance (SEATT)] Is it possible to call a list of events?](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-is-it-possible-to-call-a-list-of-events/)
 *  Plugin Author [Dave](https://wordpress.org/support/users/sourcez/)
 * (@sourcez)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-is-it-possible-to-call-a-list-of-events/#post-2995439)
 * Hi Shane,
 * Sorry for not replying sooner – I didn’t get a notification like I usually do!
 * This is not a feature currently included but it would be easy to add if you wanted
   it. If you’re still looking for this function then get in touch and I might be
   able to customise it for you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SEATT: Simple Event Attendance] [Plugin: Simple Event Attendance (SEATT)] User registration](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-user-registration/)
 *  Plugin Author [Dave](https://wordpress.org/support/users/sourcez/)
 * (@sourcez)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-user-registration/#post-3082802)
 * Thanks for the feedback, I will add this to the next version as I do agree. Perhaps
   a captcha option too to try and cut down on bots trying to spam links.
 * Apologies for the slow reply, I didn’t get a notification like I usually do!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SEATT: Simple Event Attendance] [Plugin: Simple Event Attendance (SEATT)] Comment](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-comment/)
 *  Plugin Author [Dave](https://wordpress.org/support/users/sourcez/)
 * (@sourcez)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-comment/#post-2334789)
 * Can you tell me whether there are any errors (turn this on in wp-config), or 
   if you’ve changed any other code as this could have a huge effect on how this
   functions.
 * Unfortunately I can’t help you any more without you explaining the situation 
   further and investigating it for errors on your end. I’m fairly sure that should
   do what you want so I’m surprised it doesn’t show something.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SEATT: Simple Event Attendance] [Plugin: Simple Event Attendance (SEATT)] Comment](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-comment/)
 *  Plugin Author [Dave](https://wordpress.org/support/users/sourcez/)
 * (@sourcez)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-comment/#post-2334786)
 * Ok, I’m not sure how you made it do that but you can try changing the text below(
   from line 57 onwards).
 * Change this:
 *     ```
       $seatt_output .= '<table width="660" border="0" align="left" cellpadding="1" cellspacing="1">
       			<tr>
       				<th width="50" align="center" scope="col">Reg #</th>
       				<th width="150" align="left" scope="col">Username</th>
       				<th width="300" align="left" scope="col">Last Name, First Name</th>
       			</tr>';
   
       		$users = $wpdb->get_results("SELECT id, user_id FROM ".$wpdb->prefix."seatt_attendees WHERE event_id = ".$event_id." ORDER BY id ASC");
       		$num = 1;
       		foreach ($users as $user) {
       			$user_info = get_userdata($user->user_id);
       			$seatt_output .= '
       			<tr>
       			  <td width="50" align="center">' . $num . '</td>
       			  <td width="150">' . $user_info->user_login . '</td>
       			  <td width="300">' . $user_info->last_name .  ', ' . $user_info->first_name . '</td>
       			</tr>';
       			$num++;
       		}
       ```
   
 * to this:
 *     ```
       $seatt_output .= '<table width="660" border="0" align="left" cellpadding="1" cellspacing="1">
       			<tr>
       				<th width="50" align="center" scope="col">Reg #</th>
       				<th width="150" align="left" scope="col">Username</th>
       				<th width="300" align="left" scope="col">Comment</th>
       			</tr>';
   
       		$users = $wpdb->get_results("SELECT id, user_id, user_comment FROM ".$wpdb->prefix."seatt_attendees WHERE event_id = ".$event_id." ORDER BY id ASC");
       		$num = 1;
       		foreach ($users as $user) {
       			$user_info = get_userdata($user->user_id);
       			$seatt_output .= '
       			<tr>
       			  <td width="50" align="center">' . $num . '</td>
       			  <td width="150">' . $user_info->user_login . '</td>
       			  <td width="300">' . $user_info->user_comment . '</td>
       			</tr>';
       			$num++;
       		}
       ```
   
 * Let me know how you get on.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SEATT: Simple Event Attendance] [Plugin: Simple Event Attendance (SEATT)] implement new feature](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-implement-new-feature/)
 *  Plugin Author [Dave](https://wordpress.org/support/users/sourcez/)
 * (@sourcez)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-implement-new-feature/#post-2762256)
 * Hi again,
 * I’m really sorry but I don’t understand. Do you want 2 registration options, 
   sign up to the event to attend, or not attending?
 * I’m not sure what you mean about the second feature though.
 * Sorry!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SEATT: Simple Event Attendance] [Plugin: Simple Event Attendance (SEATT)] implement new feature](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-implement-new-feature/)
 *  Plugin Author [Dave](https://wordpress.org/support/users/sourcez/)
 * (@sourcez)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-implement-new-feature/#post-2762249)
 * Hi there,
 * Do you mean you want to be able to block users from signing up?
 * Thanks,
    Dave
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SEATT: Simple Event Attendance] [Plugin: Simple Event Attendance (SEATT)] New Events dont display](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-new-events-dont-display/)
 *  Plugin Author [Dave](https://wordpress.org/support/users/sourcez/)
 * (@sourcez)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-new-events-dont-display/#post-2469163)
 * Hi,
 * If you could make try inserting the shortcode into the html view? It should look
   something like [seatt-form event_id=6] (changing the id).
 * Otherwise you can try setting wp_debug in wp-config.php to true and see if it
   throws any errors.
 * I have just tested it on 3.3.2 and it appears to work, so let me know!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SEATT: Simple Event Attendance] [Plugin: Simple Event Attendance (SEATT)] New Events dont display](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-new-events-dont-display/)
 *  Plugin Author [Dave](https://wordpress.org/support/users/sourcez/)
 * (@sourcez)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-new-events-dont-display/#post-2469160)
 * No worries – glad it works!
 * Let me know if anything can be made simpler/better.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SEATT: Simple Event Attendance] [Plugin: Simple Event Attendance (SEATT)] List added to existing events](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-list-added-to-existing-events/)
 *  Plugin Author [Dave](https://wordpress.org/support/users/sourcez/)
 * (@sourcez)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-list-added-to-existing-events/#post-2720121)
 * I’m sorry, are you asking if this plugin integrates with another third party 
   plugin? If so then I’m afraid not – you will need to talk to the author of the
   other plugin for that.
 * If that wasn’t what you meant, could you please explain what you’re using for
   the calendar within wordpress?
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SEATT: Simple Event Attendance] [Plugin: Simple Event Attendance (SEATT)] SEATT – how users register if not users of wordpress accou](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-seatt-how-users-register-if-not-users-of-wordpress-account/)
 *  Plugin Author [Dave](https://wordpress.org/support/users/sourcez/)
 * (@sourcez)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-seatt-how-users-register-if-not-users-of-wordpress-account/#post-2638440)
 * Hi Sarah,
 * That does seem a bit odd, are you able to enable error output in wordpress’s 
   config (wp-config.php) to see if an error is output?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SEATT: Simple Event Attendance] [Plugin: Simple Event Attendance (SEATT)] SEATT – how users register if not users of wordpress accou](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-seatt-how-users-register-if-not-users-of-wordpress-account/)
 *  Plugin Author [Dave](https://wordpress.org/support/users/sourcez/)
 * (@sourcez)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-seatt-how-users-register-if-not-users-of-wordpress-account/#post-2638364)
 * Hi Sarah,
 * We don’t currently offer this, although I will add it to the list for the next
   update!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SEATT: Simple Event Attendance] [Plugin: Simple Event Attendance (SEATT)] Form appears on page without some fields](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-form-appears-on-page-without-some-fields/)
 *  Plugin Author [Dave](https://wordpress.org/support/users/sourcez/)
 * (@sourcez)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-form-appears-on-page-without-some-fields/#post-2542477)
 * Any chance of a screenshot and the code from the page? Not really sure what’s
   going on there as it should be hard coded in!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SEATT: Simple Event Attendance] [Plugin: Simple Event Attendance (SEATT)] New Events dont display](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-new-events-dont-display/)
 *  Plugin Author [Dave](https://wordpress.org/support/users/sourcez/)
 * (@sourcez)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-new-events-dont-display/#post-2469097)
 * Of course…didn’t change one variable in one page!
 * Uploaded a final version and retested using a fresh download. I’m going to have
   to start paying you for testing this plugin!
 * Sorry!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SEATT: Simple Event Attendance] [Plugin: Simple Event Attendance (SEATT)] New Events dont display](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-new-events-dont-display/)
 *  Plugin Author [Dave](https://wordpress.org/support/users/sourcez/)
 * (@sourcez)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-new-events-dont-display/#post-2469086)
 * Hi Grinner,
 * I found the problem – it would seem some files weren’t updated when I uploaded
   them last. I’d had a rocky day with my internet and had to try and tag that version(
   1.2.2) at least 5 times but it must have failed every time.
 * I’ve finally fixed it (and tested it myself) and it’s 1.2.3 now. The menu is 
   a single main menu now rather than options under the settings menu.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SEATT: Simple Event Attendance] [Plugin: Simple Event Attendance (SEATT)] New Events dont display](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-new-events-dont-display/)
 *  Plugin Author [Dave](https://wordpress.org/support/users/sourcez/)
 * (@sourcez)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/plugin-simple-event-attendance-seatt-new-events-dont-display/#post-2469083)
 * Hi Grinner,
 * In the plugins menu it should say version 1.2.2 – although I don’t think wordpress.
   org has published my latest version yet. Once it’s up you will be able to update
   and it will fix the problems.
 * Sorry for the hassle!

Viewing 15 replies - 31 through 45 (of 55 total)

[←](https://wordpress.org/support/users/sourcez/replies/page/2/?output_format=md)
[1](https://wordpress.org/support/users/sourcez/replies/?output_format=md) [2](https://wordpress.org/support/users/sourcez/replies/page/2/?output_format=md)
3 [4](https://wordpress.org/support/users/sourcez/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/sourcez/replies/page/4/?output_format=md)