Forum Replies Created
-
In reply to: bbpress.org/forums status
I was going to ask but no one posted so I just let it go. I do want an answer I don’t want my forum to get attacked.
In reply to: Help Integrate WordPressMU, Buddypress, and bbpressselcyis email me.
In reply to: Admin link doesn't take me to dashboardTry clearing you cache… That happened to me after that it worked fine.
In reply to: WPMU+BBPRESS+BUDDYPRESSYeah, thank you anyway.
In reply to: New to bbPress and looking for some pluginsIn reply to: WPMU+BBPRESS+BUDDYPRESSI posted this under PIMP YOUR PRESS I didn’t really have a problem but sure,
Okay the login on top is login from BuddyPress.
You can enter your login name and pass there and login without leaving the page.
You can click signup and it will take you to http://kiaspeed2.com/register which is themed.
When you enter the wrong password it takes you to this page http://kiaspeed2.com/wp-login.php which is not a them page. I want don’t want them to see that page.
In reply to: User Roles, WP & BBpresswould this work? https://wordpress.org/extend/plugins/add-bbpress-default-role/
In reply to: How to load the header of my theme?pixelgirl #1, I wrote a similar question but a user told me; if it’s deep integration then there is no difference between bbpress and wp
I had to just write
<a href="
it out without generating it, just plain html. and put the class=”selected” in the BB header. Since the header is not use for anything other than Forum it will always be selected, if that makes sense.#2, sorry I know it’s
<?php bb_topic_admin(); ?>
but exactly where it pulls it from beats me.In reply to: Plugins.php only a white pagechange permission on the two folders my-templates and my-plugins to 755
ah, good to know!
In reply to: Avatar sharing between buddypress and bbpressthis is the code I use… (in post.php) hopefully that can lead you in the right track to finding the right code for your plugin.
<?php echo bp_core_get_avatar( get_post_author_id() ); ?>
In reply to: If BBpress then, elseAh, thank you for clearing that up.
In reply to: If BBpress then, elsebut but.. I don’t know what that means! but I don’t need it anymore.
ashfame, what about the cookie path… and the wordpress intergration option on bbpress dashboard?
In reply to: Need to fix a couple of things in themeKawauso, you just said the same thing I did.
If hes trying to generate this page (go to the link and look) https://bbpress.org/forums/?new=1
then he’s missing the bottom half of the front-page.php
that is why I said look at :
look at line 84-88
https://trac.bbpress.org/browser/trunk/bb-templates/kakumei/front-page.php
the same line you just brought up.
In reply to: Need to fix a couple of things in themeashfame,
Is this what you’re trying to generate? https://bbpress.org/forums/?new=1
Then continue reading.
The template file is front-page.php that does the “new?=1”
look at line 84-88
https://trac.bbpress.org/browser/trunk/bb-templates/kakumei/front-page.php
Okay I found a few things. I don’t know if it matters but I just try to mimic what I had. I’m not an expert.
I don’t know if this was a factor: You didn’t have enough keys (Salts weren’t used)
You got your keys from here: https://api.wordpress.org/secret-key/1.1/
I got my keys from here: https://api.wordpress.org/secret-key/1.1/salt
I added the new keys to both files.
You had the COOKIEPATH in wp-config but not in bb-config (again I don’t know if it matters but I do it anyway) I copied it onto bb-config. I also moved that line to the top before anything else, just in case.
And that was that.
I notice you had the wrong URL to the forums (/bb-press/ instead of /bbpress/) but that was to get the cookie path and it didn’t matter either way.
In reply to: Failing miserably at porting themeStep two
copy your images folder in the WP theme folder to your BB theme folder.
In reply to: Failing miserably at porting themeThis is how I’m doing it. Please, this is not the official how to on this.
PART 1
COPY Kakemi theme into my-template. Open Style.css and change this line, Theme Name: Kakumei
I changed it to Theme Name: Kakumei (Edited Theme)
Activate it, you’ll see Kakumei’s screen shot but Kakumei (Edited Theme) as it’s name.
Then open style.css of the Edited Theme and open the CSS of the WordPress theme. Their might be multiple css so look out. I make a line in the style.css at the bottom.
/*********************** WPTHEME *******************
Then start with Header.php and footer.php start copying over the codes from WP theme to BBpress theme. Slowly start looking at the classes it that the header uses and start bringing in the codes from the WP to BBpress CSS. BEWARE some of them uses the same class! so rename the WP one not the BBpress one!!! You will have to replace all the div tags and such. The only one I recommend to keep in the header is the
<div id="main">
at the end. The same with the footer. but remember to put an extra</div>
on the top to cover the<div id="main">
in the header. Start with that. If you can get the hang of it then you’ll be able to continue.In reply to: How to echo "nice_username" from post_author ?I found it, but it interrupts _CK_’s attachment plugin. and I had other problems with it that hasn’t been resolved yet.
“@gerikg
That is a bug, I have fixed it in Social It 1.2, which is yet to be released.
For now, check the Twittley checkbox, add some default tags in the twittley section, save and then untick Twittley and save. “
In reply to: Help Integrate WordPressMU, Buddypress, and bbpressWhat happened so far…
Okay I looked through the file. Yangers101 was on the right track. There were some extra lines in the wp-config:
$bb->cookiepath = '';
$bb->sitecookiepath = '';I took those out.
The problem: “www.” The WPMU was configured to be on website.com/blogs (without the www.)
so all the settings needed to be without the “www.” or with. One or the other on both WPMU & BBpress.
Since his host forced the www. We had to put all the www. in the configuration. BBpress didn’t like the www. in the dashboard so he logged into his DB and manually changed it.
In reply to: Need to fix a couple of things in theme<?php bb_new_topic_link(); ?>
the code to add new.The first one I know is in front-page.php
you have
<?php if ( $forums ) : ?>
then the Latest Discussion
then Forum
<?php endif; // bb_forums() ?>
Then Views
and the part you’re missing
<?php else : // $forums ?>
<div class="bbcrumb"><a href="<?php bb_uri(); ?>"><?php bb_option('name'); ?></a> » <?php _e('Add New Topic'); ?></div>
<?php post_form(); endif; // $forums ?>In reply to: Managing FavoritesSomehow I need to get that option to appear on the Buddypress profile but I don’t know how.
look through your BB-press dashboard –> Settings—>wordpress intergration
And make sure you filled in in the BB Admin side the information under
DASHBOARD->SETTINGS->Wordpress Integration