Forum Replies Created
-
In reply to: Forum theme not working…
posting this so you know its me who sent you that email.
do i really have to have a picture??
In reply to: Create Latest Poster Column with Profile image
I’ve been searching high and low with no promising leads.
its been right in front of you the whole time!!!! (not yelling , being dramatic)
ya know how the freshness column has a little avatar by the users name. high existence just moved it into an
li
and made it bigger.In reply to: How to center bbpress after deleting sidebarremove the
#bbpress-forums
code you addedand also the code i gave you before
use this
.bbpress #primary { float:left; width:100%; }
In reply to: Forum theme not working…thats weird its part of your directory in your root installation.
like on that error
/home/vaghar123/public_html/wp-content/themes/mesocolumn/functions.php
the url should have had the current logged in user , like your the admin so it should be
In reply to: Forum theme not working…Ok, so your code solved moving the edit profile button to the far right, and removed it from the footer, yet all the above problems still remain.
I probably dont need an account anymore, and im not going to experiment with your site with ftp.
The other error your getting your going to have to contact your theme developer so they can see whats up with your theme.
Tell me the url you get when you get the 404 on the edit profile link.
In reply to: Forum option in WP-Admin Not Showingweird that you werent a keymaster but glad you solved your own issue
In reply to: Image click/resizeno problem
In reply to: New Topic content textarea is grayed outMaybe it just has to do with a plugin conflict
if you think that you can try deactivating one plugin at a time to see whats causing the problem
In reply to: New Topic content textarea is grayed outgive me an account and ill take a look at what your talking about
In reply to: New Topic content textarea is grayed outcould it be that the editor background color , and text color are the same??
would be nice to have pic too
In reply to: Change Login widget font size.bbp-login-links a { font-size:14px; display:block; }
In reply to: How to center bbpress after deleting sidebartry
.bbpress #content { width:100% }
else try
.bbpress #content .clearfix { width:100% }
In reply to: Forum theme not working…this should hide the edit profile link in the footer
.footer-right #bbp-editpro { display: none; }
In reply to: Forum theme not working…to move the edit profile link right use this.
replace the original edit profile code with this.
// Filter wp_nav_menu() to add profile link add_filter( 'wp_nav_menu_items', 'my_nav_menu_profile_link' ); function my_nav_menu_profile_link($menu) { if (!is_user_logged_in()) return $menu; else $current_user = wp_get_current_user(); $user=$current_user->user_login ; $profilelink = '<li id="bbp-editpro"><a href="http://www.astronomertalk.com/forums/users/' . $user . '/edit">Edit Profile</a></li>'; $menu = $menu . $profilelink; return $menu; }
custom css
#bbp-editpro { float: right; }
that should move it right.
In reply to: Forum theme not working…okay heres how to get full width
this should be your bbpress.php in your child themes root directory wp-content/awesome/bbpress.php
you can also remove the css that i gave you from this topic
since i removed the post author info in the template.
<?php get_header(); ?> <?php do_action( 'bp_before_content' ); ?> <!-- CONTENT START --> <div class="content"> <div class="content-inner"> <?php do_action( 'bp_before_blog_home' ); ?> <!-- POST ENTRY END --> <div id="post-entry"> <section class="post-entry-inner"> <?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?> <!-- POST START --> <article <?php post_class('post-single page-single'); ?> id="post-<?php the_ID(); ?>"> <h1 class="post-title entry-title"><?php the_title(); ?></h1> <?php do_action( 'bp_before_page_content' ); ?> <div class="post-content"> <div class="entry-content"><?php the_content( __('...more »',TEMPLATE_DOMAIN) ); ?></div> <?php wp_link_pages('before=<div id="page-links">&after=</div>'); ?> </div> <?php do_action( 'bp_after_page_content' ); ?> </article> <!-- POST END --> <?php endwhile; ?> <?php else : ?> <?php get_template_part( 'lib/templates/result' ); ?> <?php endif; ?> </section> </div> <!-- POST ENTRY END --> <?php do_action( 'bp_after_blog_home' ); ?> </div><!-- CONTENT INNER END --> </div><!-- CONTENT END --> <?php do_action( 'bp_after_content' ); ?> <?php get_footer(); ?>
and heres some css
.bbpress .content { width: 100%; }
this should get you full width
In reply to: Forum theme not working…make an account for me then ill get #1 , #2 and #3 real quick.
In reply to: Forum theme not working…In reply to: Forum theme not working…did it work now??
also, it added a edit profile to the footer menu as well. I would like to remove that.
idk how to do that maybe robin can help on specifying what menu or something.
u can hide it with css though.
you just need the div class , menu id , and menu item id.
use inspect element to find these.
In reply to: Forum theme not working…will need that code, would appreciate it
ill try it to find out.
Darn, tell me any steps if you remember
i didnt use much php
In reply to: Forum theme not working…add it into functions.php in your child theme
In reply to: Forum theme not working…it didnt work for awhile on localhost , then i editing the href link to make it work.
use this
// Filter wp_nav_menu() to add profile link add_filter( 'wp_nav_menu_items', 'my_nav_menu_profile_link' ); function my_nav_menu_profile_link($menu) { if (!is_user_logged_in()) return $menu; else $current_user = wp_get_current_user(); $user=$current_user->user_login ; $profilelink = '<li><a href="http://www.astronomertalk.com/forums/users/' . $user . '/edit">Edit Profile</a></li>'; $menu = $menu . $profilelink; return $menu; }
In reply to: Forum theme not working…works not, I just did not have the <?php in my site.
it works now??
So I just added the code from Robin W’s link,
however it does not work,
ill test out that profile link ,
if you think its social login , deactivate and see if robins profile link code works.
Plus, I would prefer it to stay all the way to the right.
im sure its just positioning it with css , but hey it doesnt have to be floated right, not a big deal if it is or not.
Plus, preferably, look more like this sites, with the username and photo of the person logged in, in the top right.
i just achieved this today. But it required a lot of work with my theme.
My goal is this: Attach BadgeOS rewards to users using specific words within forum posts;
I feel like that is going to be a paid project
In reply to: Image click/resizewas it just a link or using the
img
button ??example with
img
buttonIn reply to: Forum theme not working…in my child theme i have one functions.php
this is the entire code.
<?php /* Add custom functions below */ add_filter('show_admin_bar', '__return_false');