Plugin Author
Marcus
(@netweblogic)
Hi Will, check the plugin notes for help with templates, you could just add a regular HTML link there since it’s specific to your site. Otherwise ask on our Pro support forums, someone can help you in more detail there
Thanks Marcus, found the right file & just added html, works a treat.
Hey William – can you share the document and line item you edited to add in HTML to login modal? I read the notes am unsure what to do. Novice here. Thank you!
Login with Ajax >Widget >Default >widget_in.php
Look for My-Bookings URL. I seem to remember I fiddled with a bit of code around it. I’m a novice too.
<?php
/*
* This is the page users will see logged in.
* You can edit this, but for upgrade safety you should copy and modify this file into your template folder.
* The location from within your template folder is plugins/login-with-ajax/ (create these directories if they don't exist)
*/
?>
<div class="lwa">
<?php
$user = wp_get_current_user();
?>
<span class="lwa-title-sub" style="display:none"><?php echo __( 'Hi', 'login-with-ajax' ) . " " . $user->display_name ?></span>
<table>
<tr>
<td class="avatar lwa-avatar">
<?php echo get_avatar( $user->ID, $size = '50' ); ?>
</td>
<td class="lwa-info">
<?php
//Admin URL
if ( $lwa_data['profile_link'] == '1' ) {
if( function_exists('bp_loggedin_user_link') ){
?>
<a href="<?php bp_loggedin_user_link(); ?>"><?php esc_html_e('Profile','login-with-ajax') ?></a><br/>
<?php
}else{
?>
<a href="<?php echo trailingslashit(get_admin_url()); ?>profile.php"><?php esc_html_e('Profile','login-with-ajax') ?></a><br/>
<?php
}
}
?>
<!--My-Bookings URL-->
<a href="https://www.pedalution.co.uk/events/my-bookings/">My Bookings</a><br/>
<!--Logout URL-->
<a id="wp-logout" href="<?php echo wp_logout_url() ?>"><?php esc_html_e( 'Log Out' ,'login-with-ajax') ?></a><br/>
<?php
//Blog Admin
if( current_user_can('list_users') ) {
?>
<a href="<?php echo get_admin_url(); ?>"><?php esc_html_e("blog admin", 'login-with-ajax'); ?></a>
<?php
}
?>
</td>
</tr>
</table>
</div>
Look for My-Bookings URL in the code given – it won’t be in the widget_in.php until you add it.