Recent Topics

1 Apr 30, 2007 06:20    

My b2evolution Version: 1.9.x

Okay, I finally got logins to work with my custom skin. But now a new problem has arisen >:-<

When a user logs in, the only option shown under the login area is "logout". The options for "profile" and "subscribe" do not appear (and being able to offer subscriptions is the only reason I'm doing this!).

If I simply change the default skin of the blog to a stock one and access it the exact same way, all the options appear.

Does anyone know what I might be missing in my skin?

The blog in question can be seen here:

www.jmacwhyte.com/blogs/blog_en.php

Thanks in advance.

2 Apr 30, 2007 14:23

This is the part that you're probably missing:

	<div class="bSideItem">
		<h3><?php echo T_('Misc') ?></h3>
		<ul>
			<?php
				user_login_link( '<li>', '</li>' );
				user_register_link( '<li>', '</li>' );
				user_admin_link( '<li>', '</li>' );
				user_profile_link( '<li>', '</li>' );
				user_subs_link( '<li>', '</li>' );
				user_logout_link( '<li>', '</li>' );
			?>
		</ul>
	</div>

3 Apr 30, 2007 15:35

Also this part:

<p class="center">powered by<br />
<a href="http://b2evolution.net/" title="b2evolution home"><img src="<?php echo $rsc_url; ?>img/b2evolution_logo_80.gif" alt="b2evolution" width="80" height="17" border="0" class="middle" /></a></p>

:-/

4 Apr 30, 2007 17:46

Awesome! I figured it was something like that, but the example skin I looked at only had the code for login and logout links. 8|

Thanks so much!

(I'm not ready to commit to the large, colorful b2evo graphic, but I did add in links!)


Form is loading...