Forum Replies Created
-
Yes it is!
In front-page.php, instead of just echoing the loop in the foreach loop, return it into a variable, compare it and then decide you want to show it up or skip it.
If you are not into code, then it will be hard for you.
Yes it is!
In front-page.php, instead of just echoing the loop in the foreach loop, return it into a variable, compare it and then decide you want to show it up or skip it.
If you are not into code, then it will be hard for you.
In reply to: Logging into BBpress admin panelMake sure you have the integration plugin running on the WordPress side
In reply to: Logging into BBpress admin panelMake sure you have the integration plugin running on the WordPress side
In reply to: Manipulating bb_option// For retrieval
$data = bb_get_option(‘option-name’);
// For Saving
bb_update_option(‘option-name’,$data);
In reply to: Manipulating bb_option// For retrieval
$data = bb_get_option(‘option-name’);
// For Saving
bb_update_option(‘option-name’,$data);
In reply to: Best way to structure a BBPress / WP siteInstall WordPress
Install bbPress
Integrate bbPress with WordPress (user table, login sync) – http://blog.ashfame.com/2009/07/integrate-bbpress-10-with-wordpress-28/
Create a simple plugin for bbPress which makes it member only (don’t know if one already exists)
In reply to: Best way to structure a BBPress / WP siteInstall WordPress
Install bbPress
Integrate bbPress with WordPress (user table, login sync) – http://blog.ashfame.com/2009/07/integrate-bbpress-10-with-wordpress-28/
Create a simple plugin for bbPress which makes it member only (don’t know if one already exists)
In reply to: Warning/Deprecated Errorwhat is it that you dont understand?
Just edit
bb-load.php
online 25
.From
error_reporting( E_ALL ^ E_NOTICE );
to
error_reporting( E_ALL ^ E_DEPRECATED ^ E_NOTICE);
In reply to: Warning/Deprecated Errorwhat is it that you dont understand?
Just edit
bb-load.php
online 25
.From
error_reporting( E_ALL ^ E_NOTICE );
to
error_reporting( E_ALL ^ E_DEPRECATED ^ E_NOTICE);
make sure you have the integration plugin on WordPress side.
now if you can see admin link after logging in, its just a cookie issue else you have lost privileges http://blog.ashfame.com/2009/09/fix-lost-admin-access-bbpress/
make sure you have the integration plugin on WordPress side.
now if you can see admin link after logging in, its just a cookie issue else you have lost privileges http://blog.ashfame.com/2009/09/fix-lost-admin-access-bbpress/
make sure you have the integration plugin on WordPress side.
now if you can see admin link after logging in, its just a cookie issue else you have lost privileges http://blog.ashfame.com/2009/09/fix-lost-admin-access-bbpress/
make sure you have the integration plugin on WordPress side.
now if you can see admin link after logging in, its just a cookie issue else you have lost privileges http://blog.ashfame.com/2009/09/fix-lost-admin-access-bbpress/
In reply to: Plugins not showing up in bbPressplugins need to be in my-plugins folder under bbPress root with permissions 755 and not under wordpress plugins folder.
and regarding the users, I think you have did something wrong and the users are still there but WP or bbP is not looking at the right place.
In reply to: Plugins not showing up in bbPressplugins need to be in my-plugins folder under bbPress root with permissions 755 and not under wordpress plugins folder.
and regarding the users, I think you have did something wrong and the users are still there but WP or bbP is not looking at the right place.
In reply to: bbpress Forum SignatureWeird!
Vague effort but try
Code:Blog - Facebook - Linkedin - TwitterIn reply to: bbpress Forum SignatureWeird!
Vague effort but try
Code:Blog - Facebook - Linkedin - TwitterIn reply to: Add A Color ButtonYour plugin should have a option for the text color. Which plugin are you using? Better post a link to your forums with a demo login, so that I can see myself.
In reply to: Add A Color ButtonYour plugin should have a option for the text color. Which plugin are you using? Better post a link to your forums with a demo login, so that I can see myself.
In reply to: BBPress is ok or dead ?Its all alive. Even Standalone version won’t die.
Go setup your forums
In reply to: BBPress is ok or dead ?Its all alive. Even Standalone version won’t die.
Go setup your forums
Corsari,
I do know what readability is. And who told you I will use such a layout with floating icons? Moreover even if I do, I will have different themes for different devices, optimized for their width.
If you are running 1024X768 on a desktop, then you are living under the rock for sure. Either you are not switching to a higher resolution or you are using 15″ monitor. Lower specs are phasing out and people won’t limit their designs for a handful of visitors.
Pagal,
Another thing, I am not the owner of that site, that I am going to accept feedback for that. You want them to do something, approach them, not me.
Corsari,
I do know what readability is. And who told you I will use such a layout with floating icons? Moreover even if I do, I will have different themes for different devices, optimized for their width.
If you are running 1024X768 on a desktop, then you are living under the rock for sure. Either you are not switching to a higher resolution or you are using 15″ monitor. Lower specs are phasing out and people won’t limit their designs for a handful of visitors.
Pagal,
Another thing, I am not the owner of that site, that I am going to accept feedback for that. You want them to do something, approach them, not me.
In reply to: Integrate bbpress with an existing WordPress theme?Yes you are right about the deep integration.
Matching themes this way is a solution but it comes with a performance penalty but its economical at initial stages.
In that guide, since WordPress is loaded too.
Instead of calling bbPress header file, we call the WordPress header file so as to bring the code from there. Same goes with the sidebar and footer.
That’s how forums are housed inside WordPress theme.