Forum Replies Created

Viewing 3 replies - 16 through 18 (of 18 total)
  • Thread Starter willpom

    (@willpom)

    I see there was a recent update and it’s fixed, thanks Patrick

    Look for My-Bookings URL in the code given – it won’t be in the widget_in.php until you add it.

    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>
Viewing 3 replies - 16 through 18 (of 18 total)