Search Results for '+.+default+.+'
-
Search Results
-
The default Kakumei theme shows two variables in the user section of every post, at left.
You can see them both here as well, in this very post.
The first one is defined in the profile page as
Display name asand links to whatever appears in theWebsitefield.The second one is defined in the profile page as
User Type(which most often defaults toMember), links to theProfilepage of the specific user, and could be changed by theCustom Titlefield.How would it be possible to drop the
User Typeand just keep theDisplay name aslinking to the userProfilepage?I wrote a plugin which will show some data by a mysql query and I am doing it using
$bbdband I hooked it to thepost_post_formbut the problem is that the variable intended to store the query result is empty.However if I manually call the function in the template it works fine.
I am using the default theme. What could be the problem?
I installed tinymce using their wiki defaults
however, now on my page when you go to post a topic, it has one textarea that is normal (as if I never installed tinymce)…and then a textarea below it that is for tinymce (all of the bolds, italics, etc work for it)
how do I get rid of the top textarea?? thanks
Topic: Problems with theme Crystal
Hello,
I created a forum on bbpress. As default I selected theme Kakumei. I want to change a look of my forum and decided to find an other theme. I found a theme Crystal. I downloaded this theme from site mybbpress (there is redirection on 33 rockers).
During installation I followed instructions. I read a file readme.txt and put the content of directory Crystal in myforum.com/bb-templates. But after installation I couldn’t find this theme in my Admin: there wasn’t in Appearance, plugins and other places. I read instructions on bbpress.org and put directory Crystal in myforum.org/my-templates too. But the result was same. I can’t find theme on admin of my forum.
What did I do wrong?
If I change the default theme in bbPress from Kakumei to a different one I lose the image uploading ability even though it is an active plugin and works on Kakumei.
Thank you.
If I change the default theme in bbPress from Kakumei to a different one I lose the image uploading ability even though it is an active plugin and works on Kakumei.
Thank you.
Topic: Sticky in Kakumei.
How is a “Sticky” post made in bbPress? I am using Kakumei, the default template.
Thanks.
Topic: Change my default url
I’m a newbie with bbpress.
I just installed a new forum in a new folder “forum” and I want to know how to make some changes.
I want to change my url from http://my.site.com/forum/forum/my-topic to http://my.site.com/forum/my-topic
The default word after http://my.site.com/forum/ is “forum” can I change this?
I can’t find an option in permalinks.
Topic: Enhance your 404 page
The default 404 page doesn’t have much of value to offer a visitor that stumbles your website via an organic search result. This is why I have enhanced mine 404 page a bit and I would like to share that with you guys.
Add 301 redirect for 404 pages
Pages that have been removed to a different URL, will show a 404 page. Add a 301 redirect to your 404 page that will redirect the user to its new address.
Suppose you had an address domain/old-url this got moved to domain/new-address, add the follow code to your 404.php (located in your bb-templates folder). Add this to the top of the page.
<?php
$redirect_301 = array(
'/old-url/' => '/new-url',
'/another-old-url' => '/another-new-url'
);
$request = $_SERVER;
if (array_key_exists($_SERVER, $redirect_301)) {
header(“HTTP/1.1 301 Moved Permanently”);
header(‘Location: http://www.yourdomain.com’ . $redirect_301[$request] );
die();
}
?>
Also you can change the default text:
<p><?php _e('I'm sorry, but there is nothing at this URL.'); ?></p>
Into something more nice, like:
<p><?php _e('The page you are looking for can not be found or it has been removed. You can always just browse the website or even use the search form below to try another search.'); ?></p>
<?php search_form(); ?>
What do you guys think?
