Dave
Forum Replies Created
-
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.
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!
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.
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.
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!
Hi there,
Do you mean you want to be able to block users from signing up?
Thanks,
DaveHi,
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!
No worries – glad it works!
Let me know if anything can be made simpler/better.
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
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?
Hi Sarah,
We don’t currently offer this, although I will add it to the list for the next update!
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!
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!
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.
Hi Grinner,
In the plugins menu it should say version 1.2.2 – although I don’t think www.remarpro.com 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!