Search Results for ' . default . '
-
Search Results
-
I want bbPress to look like this:
https://linustechtips.com/main/
See how the categories are above and separated from the rest?
My current forums look like this –> http://www.skyforgelabs.com/?post_type=forum , and I HATE that, the way the forums are under the category with the stupid 0’s is ugly and I don’t know why bbPress is like this by default.
Didn’t want to make a new Trac before knowing if this is a real bug or not.
I set the number of replies per page at 8 in the back-end. Save it, but right now I’ve already replied 31 times in one topic to test it and still the pagination menu doesn’t show up in the single-forum page ( topics list )
+ also the single-topic page doesn’t move to a second page it keeps adding content.Tested it on default installs with Twenty Twelve and WP 3.8
I am currently using bbPress 2.5.3 with WordPress 3.8 and the default bbPress theme, as inside the plugin folder. I am wondering how I change the tags prefix (“Tagged:”) on the topic page. I have looked through the theme files and can’t find it in any of them. Can anyone assist me? It’s really annoying me right now.
Thanks
Hello,
Clicking a username from within the BBPress section generates a 404 error.
I’ve done extensive research on this problem, and haven’t been able to find a fix in the forums so far.
I’ve deactivated all plugins besides BBPress – no dice.
I’ve switched the default theme and still get the 404.
I’ve changed the permalinks and the subscriber role – didn’t make a difference.Some code fixes I’ve found in the forums just make it so that the 404 page doesn’t generate, but it shows a blank page, which isn’t really the point. I need it to actually go the member profile.
I believe all of the software is up to date:
Wordpress v3.8
BBPress v2.5.3
Theme is Dante, v 1.5.1Here is a user link: essential-essentials.com/forums/user/Essential-Essentials/
(The site is still very much in development)
Thank you for any help you can provide : )
I’ve look at it a few times in the WordPress Codex and it probably explains GREATLY how it works and what it does but maybe I just don’t get it.
I understand the concept of taking a function that exists <—> edit it <—> return it to WP Core but how!
Lets say I just simply want to replace the text inside a HTML “… class=”bbp-topic-spam-link”> ” of the spam link.
First step I do is search for the function: bbp_topic_spam_link()
Second step found it inside plugins/bbpress/includes/topics/template.php [ line 2832 ]
Third step copy the entire function to my functions.php file or plugins functions file.
Fourth step, edit the code that you want to edit but after that, how do you add the filter to this function to make it a new or your function.
/** * Output the spam link of the topic * @uses bbp_get_topic_spam_link() Topic spam link */ function bbp_topic_spam_link( $args = '' ) { echo bbp_get_topic_spam_link( $args ); } /** * Return the spam link of the topic */ function bbp_get_topic_spam_link( $args = '' ) { // Parse arguments against default values $r = bbp_parse_args( $args, array( 'id' => 0, 'link_before' => '', 'link_after' => '', 'sep' => ' | ', 'spam_text' => esc_html__( 'Spam', 'bbpress' ), 'unspam_text' => esc_html__( 'Unspam', 'bbpress' ) ), 'get_topic_spam_link' ); $topic = bbp_get_topic( bbp_get_topic_id( (int) $r['id'] ) ); if ( empty( $topic ) || !current_user_can( 'moderate', $topic->ID ) ) return; $display = bbp_is_topic_spam( $topic->ID ) ? $r['unspam_text'] : $r['spam_text']; $uri = add_query_arg( array( 'action' => 'bbp_toggle_topic_spam', 'topic_id' => $topic->ID ) ); $uri = wp_nonce_url( $uri, 'spam-topic_' . $topic->ID ); $retval = $r['link_before'] . '<a href="' . esc_url( $uri ) . '" class="bbp-topic-spam-link">' . $display . '</a>' . $r['link_after']; return apply_filters( 'bbp_get_topic_spam_link', $retval, $r ); }
Thanks.
Just curious is it me doing something wrong or can’t we give each single-forum it’s own page template ?
I thought earlier we could do something like this.
bbpress/content-single-forum.php ( default )
bbpress/content-single-forum-%forum-name%.php ( custom )?
Hi all,
Having a slight URL issue. Forums settings / slugs are default, permalink settings are using
/%postname%/
Forums URL is:
http://www.website.com/forums/
Forums topic URL one level down is:
http://www.website.com/forums/forum/website-community/announcements/
… where ‘website-community’ is the category, and ‘announcements’ is the first forum under that.Here’s where it breaks. If I hover over a topic, the URL displays as:
http://www.website.com/forums/topic/website-community/announcements/first-topic/
… and if I click, I get a 404.If I edit the URL manually, it will work as expected, I just have to take out the category and forum name from the url, such as:
http://www.website.com/forums/topic/first-topic/
Why are the category and forum titles appearing in the URL, and what’s the best way to fix?
Thanks in advance!
Hi,
I am getting a redirect loop while accessing forum posts. The index page of forums (forum lists) works fine bur none of the forums works.
This will work fine when we use default hyperlinks but we can use only %post-name% permalink due to our site structure.
Can anybody provide a solution to this problemThanks
Hi all, I have a members only forum on a clients site that is protected by s2Member so only level #1 members can access all /forms/forum pages. The client reported yesterday that their forum wasn’t working – all pages got to our custom 404 page.
They upgraded there website to 3.8 last week – usually we run there updates, I don’t think they checked the forum after running the update so I don’t know if the update caused the issue or not. Likewise they didn’t take a full site backup as instructed when doing updates.
When I switch off permalinks the pages work (though the forum overview /forums/ doesn’t). I’ve tried:
– resaving the permalinks (switching off, back on etc in various different combos)
– deleting the .htaccess and resaving permalinks
– uploading an old .htaccess
– reinstalling wordpress 3.8
– deactivating all other plugins
– switching to a default themeI really don’t want to have to move them to a fresh install, the site is massive. Likewise I don’t think reverting to an older version of WordPress is really a solution.
Any more suggestions of what to try would be appreciated!!!
Thanks in advance!
Hi all, I have a members only forum on a clients site that is protected by s2Member so only level #1 members can access all /forms/forum pages. The client reported yesterday that their forum wasn’t working – all pages got to our custom 404 page.
They upgraded there website to 3.8 last week – usually we run there updates, I don’t think they checked the forum after running the update so I don’t know if the update caused the issue or not. Likewise they didn’t take a full site backup as instructed when doing updates.
When I switch off permalinks the pages work (though the forum overview /forums/ doesn’t). I’ve tried:
– resaving the permalinks (switching off, back on etc in various different combos)
– deleting the .htaccess and resaving permalinks
– uploading an old .htaccess
– reinstalling wordpress 3.8
– deactivating all other plugins
– switching to a default themeI really don’t want to have to move them to a fresh install, the site is massive. Likewise I don’t think reverting to an older version of WordPress is really a solution.
Any more suggestions of what to try would be appreciated!!!
Thanks in advance!