Search Results for '+.+default+.+'
-
Search Results
-
I use the https://codex.bbpress.org/features/shortcodes/
to embed a forum in a page [bbp-single-forum id=$forum_id]
it works great, but when the user clicks on a thread it opens in the usual bbPress slug and not within the page. I want the forum to be fully embedded in the page and also that the links from e-mail about replies will direct people to this page and not the default forum.Hello,
Obviously everyone knows what the default Forum index page looks like

However I would rather be able to have the most recent topics displayed above the index like this page setup using the short codes:


I cant figure out how to actually change the appearance of the forums index. I have the page in the picture above up and running, however when someone clicks on the breadcrum “forum” link, it takes them back to the default forum index, not the page i created with the recent topics listed above.
Thanks for the help 😀 Preston
Hello,
The bbPress theme “MesoColumn” isn’t available through my host, so I downloaded the file and installed it manually. When accessing the admin panel or the page itself, the page won’t load and stays blank. My forum is here. I know it’s the theme because the default theme works fine, although the inside of the folders is different. My permissions is set to 755 for all the files. Anyone know why it isn’t working?
Thanks for anyone who replies,
Ark9026hi guys!
first of all, this is my very first installation, and i have really not very much experience with content managment systems in general, so be soft on me please.second, everything actually seems to work, except for the fact, that apache2 returns an error 404 for each and every single page, that i would like to open from bbpress.
i created some forums, and posted a test post in there.
that content i found in the mysql database in the wp_posts table, so the communication to the mysql database basically works.
but from the looks of it, when you try to call that contnet, apache seems to be looking in the actual filestructure for those files/that content, rather than within the mysql database.
the very only hint that i could find on the net, was that something with my htaccess file could be wrong.
so as regular expressions make basically not much sense do decifer, when you haven’t the single first clue, what is supposed to go through them, i cannot tell, whether what i i found in these files is correct, here is, what /etc/pordpress/htaccess contains:# For rewrite rules needed for making WordPress URL friendly # See Options -> Permalinks for details and please use the defaults, # especially in mind when hosting several blogs on one machine! ## ## Configuration for a single blog hosted on / (root of the website) ## #<IfModule mod_rewrite.c> #RewriteEngine On #RewriteBase / #RewriteCond %{REQUEST_FILENAME} !-f #RewriteCond %{REQUEST_FILENAME} !-d #RewriteRule . /index.php [L] #</IfModule> ## ## Configuration for a multi-site wordpress installation using subdomains ## #<IfModule mod_rewrite.c> #RewriteEngine On #RewriteBase / #RewriteRule ^index\.php$ - [L] ## uploaded files #RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] ## real files dealt directly #RewriteCond %{REQUEST_FILENAME} -f [OR] #RewriteCond %{REQUEST_FILENAME} -d #RewriteRule ^ - [L] ## other go through index.php #RewriteRule . index.php [L] #</IfModule>/usr/share/wordpress/.htaccess
contains exactly the same,/var/www/wordpress/.htaccess
contains:# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress/var/www/wordpress/wp-content/plugins/buddypress/bp-forums/bbpress/bb-admin/includes/defaults.bb-htaccess.php
contains this:<?php $_rules = <<<EOF # BEGIN bbPress Options -MultiViews <IfModule mod_rewrite.c> RewriteEngine On RewriteBase %PATH% RewriteRule ^page/([0-9]+)/?$ %PATH%index.php?page=$1 [L,QSA] RewriteRule ^forum/([^/]+)/page/([0-9]+)/?$ %PATH%forum.php?id=$1&page=$2 [L,QSA] RewriteRule ^forum/([^/]+)/?$ %PATH%forum.php?id=$1 [L,QSA] RewriteRule ^forum/?$ %PATH% [R=302,L,QSA] RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ %PATH%topic.php?id=$1&page=$2 [L,QSA] RewriteRule ^topic/([^/]+)/?$ %PATH%topic.php?id=$1 [L,QSA] RewriteRule ^topic/?$ %PATH% [R=302,L,QSA] RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ %PATH%tags.php?tag=$1&page=$2 [L,QSA] RewriteRule ^tags/([^/]+)/?$ %PATH%tags.php?tag=$1 [L,QSA] RewriteRule ^tags/?$ %PATH%tags.php [L,QSA] RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ %PATH%profile.php?id=$1&page=$2 [L,QSA] RewriteRule ^profile/([^/]+)/([^/]+)/?$ %PATH%profile.php?id=$1&tab=$2 [L,QSA] RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ %PATH%profile.php?id=$1&tab=$2&page=$3 [L,QSA] RewriteRule ^profile/([^/]+)/?$ %PATH%profile.php?id=$1 [L,QSA] RewriteRule ^profile/?$ %PATH%profile.php [L,QSA] RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ %PATH%view.php?view=$1&page=$2 [L,QSA] RewriteRule ^view/([^/]+)/?$ %PATH%view.php?view=$1 [L,QSA] RewriteRule ^rss/?$ %PATH%rss.php [L,QSA] RewriteRule ^rss/topics/?$ %PATH%rss.php?topics=1 [L,QSA] RewriteRule ^rss/forum/([^/]+)/?$ %PATH%rss.php?forum=$1 [L,QSA] RewriteRule ^rss/forum/([^/]+)/topics/?$ %PATH%rss.php?forum=$1&topics=1 [L,QSA] RewriteRule ^rss/topic/([^/]+)/?$ %PATH%rss.php?topic=$1 [L,QSA] RewriteRule ^rss/tags/([^/]+)/?$ %PATH%rss.php?tag=$1 [L,QSA] RewriteRule ^rss/tags/([^/]+)/topics/?$ %PATH%rss.php?tag=$1&topics=1 [L,QSA] RewriteRule ^rss/profile/([^/]+)/?$ %PATH%rss.php?profile=$1 [L,QSA] RewriteRule ^rss/view/([^/]+)/?$ %PATH%rss.php?view=$1 [L,QSA] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^.*$ %PATH%index.php [L] </IfModule> # END bbPress EOF; $_rules = str_replace( '%PATH%', bb_get_option( 'path' ), $_rules );if i set the permalinks from “nice links” to php=dafb51fd1? , then i get
Oops! That page can’t be found.
any ideas, please?
thanks in advance and yours, azteca.
Topic: Complete noob, need help!
Hi all. I have a WordPress site with a fresh install of bbpress on it for my forums. That said, the default bbpress theme for my site looks absolutely awful, so I was wondering how to install another theme or even just change the colors just for my forums. This is what it’s looking like at the moment.
I recently discovered this theme here that looks alright. Is there some way I could import that onto my site for JUST the forums? Let me know, thank you!
Topic: Showing Profile Information
Hey guys,
In BBpress each user has the ability to edit their profile users/USER/edit/
Here they can add their name, their website link and their bio by default. However, this information is never actually displayed on their profile. Why is this?
On users profiles it says:Forum Role: Keymaster
Topics Started: 0
Replies Created: 0
But the information such as their name, bio and website link are not displayed. Why are there options to add this information to the profile if it remains private?
How can I allow it to be displayed publically?
Thanks,
Chris