Forum Replies Created
-
In reply to: Someone Update Say My Name Plugin
Warning: Cannot modify header information – headers already sent by (output started at /homepages/0/d188981313/htdocs/kiaspeed2/mu/forums/my-plugins/say-my-name/smn.php:3) in /homepages/0/d188981313/htdocs/kiaspeed2/mu/forums/bb-includes/functions.bb-meta.php on line 708
Warning: Cannot modify header information – headers already sent by (output started at /homepages/0/d188981313/htdocs/kiaspeed2/mu/forums/my-plugins/say-my-name/smn.php:3) in /homepages/0/d188981313/htdocs/kiaspeed2/mu/forums/bb-includes/functions.bb-meta.php on line 709
WPMU+BB+BP if it matters
In reply to: Someone Update Say My Name Pluginthank you! there is one more plugin but I’m figuring I have to start a new thread.
In reply to: Someone Update Say My Name PluginThank you Kawauso for your help on this. Search by display , sometimes people put @kawauso, and it’s case sensitive.
In reply to: WordPress Integrationemail me. my user name at gmail dot com
In reply to: WordPress Integrationput all 8
In reply to: WordPress Integrationdefine('AUTH_KEY', 'put your unique phrase here');
define('SECURE_AUTH_KEY', 'put your unique phrase here');
define('LOGGED_IN_KEY', 'put your unique phrase here');
define('NONCE_KEY', 'put your unique phrase here');replace those with the 8 keys
you do the same in bb-config.php
and add “BB_”
define('BB_AUTH_KEY', 'put your unique phrase here');
In reply to: WordPress Integrationkaz email me my user name at gmail dot com
c4central replace the four keys with the 8 keys from this link: https://api.wordpress.org/secret-key/1.1/salt
and I don’t understand “the wordpress admin should be bbpress admin, correct?”
In reply to: WordPress Integrationkaz1844, did you clear you cache & cookies…
In reply to: WordPress Integrationwpconfig.php in the WP root. bb-config.php in bbpress root. Advance is only for people who uses two different databases.
In reply to: WordPress IntegrationUse this link: https://api.wordpress.org/secret-key/1.1/salt It has 8 keys.
NOTE: do NOT use any “www.” anywhere when entering information.
1. Open wp-config line replace your new keys with the one from that link. (lines 55-61)
2. Copy the same keys to bb-config just add BB_ after define(‘ in each key so it will be
define('BB_AUTH_KEY', '
(lines 41-44)3. Install & activate BBpress Intergration plugin https://wordpress.org/extend/plugins/bbpress-integration/
4. Get the information from the plugin and put it in line 20 in wp-config and line 13 in bb-config. (if you’re using WPMU take out the HASH line when you put it in bb-config)
5. Log into your BBpress admin section and navigate to SETTINGS -> WORDPRESS INTEGRATION enter all the information it ask for, save.
6. Clear you cache and you should be ready to go.
If you upgraded from a previous WP version take out
define( 'WP_AUTH_COOKIE_VERSION', 1 );
because it doesn’t work on 2.8.4In reply to: WordPress IntegrationThere are a million factors. I’ll write somethings I found helping people on this…
html.css (line 329) calls for it…
ul, menu, dir {
display:block;
list-style-type:disc;
margin:1em 0;
}add this to your style.css
#navigation ul {
list-style-type:none;
}If you use Firefox get a plugin called firebug. http://getfirebug.com/ it will help you with all your css needs.
In reply to: Aligning LogoHe wants the site because there might be other factors that are affecting it. If you use Firefox get a plugin called firebug. http://getfirebug.com/ it will help you with all your css needs.
In reply to: Adding some text to the header…edit logged-in.php in your theme file.
In reply to: problem with using theme rather than default themeI had a problem with a css file that wouldn’t import a php file.
(@import url(css/loader.php)
look at the main css file and see if there is any importing involved.
In reply to: Logining by e-mailIt’s a plugin. https://bbpress.org/plugins/topic/email-login/#post-3025
In reply to: main background too wide, cant get a border to work.1. Add this to you style.css in your forum theme
#megaContainer {
background-color:#FFFFFF;
border-left:thin solid #666666;
border-right:thin solid #666666;
margin-left:auto;
margin-right:auto;
min-height:100%;
position:relative;
width:840px;
}2. change
<div class="megaContainer">
to<div id="megaContainer">
in your theme header.phpIn reply to: Mistake During Installationdelete bb-config.php and start over or change the settings on the admin section under setting wordpress integration.
In reply to: How to Show Last Ten Posts in Sidebar?In reply to: Put logo in the middle of header.I see you got it..?
In reply to: Login to WordPress, Logout of bbPress and vice-versaemail me I’ll look at it my user name at gmail dot com.
In reply to: Put logo in the middle of header.Kawauso has the right idea. But you wanted the logo that far down?
In reply to: Feedback: BBpress Lite & BBpressOlaf just proved my point.
In reply to: Feedback: BBpress Lite & BBpressyeah but putting the same name on two “different” product is confusing. It can be called something else rather than lite, the reason I said it is because I think someone said that .9 is almost half the size of 1.0+
In reply to: User Activity & Topics Startedhere’s another way of forming my question….
this
<h2>Latest Forum Discussions</h2>
<ul>
<?php
global $wpdb;
$query="SELECT * FROM bb_topics WHERE topic_status=0 ORDER BY topic_time DESC LIMIT 10";
$results=$wpdb->get_results($query);
foreach ($results as $result) {
echo "<li><a href='/forums/topic.php?id=".$result->topic_id."'>".$result->topic_title."</a></li>";
}
?>
</ul>gets the Latest Forum Discussions, how do I get a USER SPECIFIC Latest Forum Discussions?