Search Results for '+.+default+.+'
-
Search Results
-
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?