Hi,
It seems there was an extra "\" in the code.
If you like you can edit it yourself, open up auction.php via the WordPress backend Plugin editor, or in Notepad, and go to this line:
- Code: Select all
<p class="wpa-loggedin"><?php \_e('You need to be logged in to bid on this item. Please','WPAuctions'); ?> <?php wp_loginout(); ?> <?php _e('or','WPAuctions'); ?> <?php wp_register('', ''); ?> <?php _e('for an account','WPAuctions'); ?>.</p>
and replace it with this
- Code: Select all
<p class="wpa-loggedin"><?php _e('You need to be logged in to bid on this item. Please','WPAuctions'); ?> <?php wp_loginout(); ?> <?php _e('or','WPAuctions'); ?> <?php wp_register('', ''); ?> <?php _e('for an account','WPAuctions'); ?>.</p>
That should fix it.
We'll update the code on our end too. Sorry about that.