Search Results for 'codes'
-
Search Results
-
For those who have been asking a new plugin which hopefully will help
https://wordpress.org/plugins/bbp-style-pack/
Changing style items – now in this plugin so no need to create child themes and post complicated code into style sheets
Changing how the forum looks, the most asked for items, such as vertical sub forums, hiding counts, adding ‘create new topic’ links, removing ‘private’ prefix, adding forum descriptions, changing breadcrumbs and more
Login – create simple menu items to help with logging in, registration and changing profiles
Shortcodes – 3 useful new shortcodes to help your display
Feedback both positive and ‘needs improvement’ welcomed !
The main forum page (created during the install process using Method 1 or Method 2 shows no forum info.
If I create a new topic (admin) and go directly there I can see the post, reply and see other forums
I created a forum called “t-forums” and added “For Sale” and “General” under that. Everything works just great except the parent (Forums).
Home › Forums › t-forums › For SaleSo the parent (Forums) seems broke and doesn’t show the forum items on it’s page.
I’ve removed the plugin and added it back with the same results.
Topic: Edit reply – blank page
After installing BBPress nothing was working, I could see a list of forums if I went to /forums/ but nothing appeared to create a new forum or post, and no form appeared to enter a reply. I rebuilt the pages using the shortcodes and this worked great, but if I click “Edit” on a reply I get a page with no content.
Here is the code I am using in my main template to make the BBPress items show up:
<?php if (is_bbpress()) : ?> <section id="content" class="grid-block"><h3 class="page-subtitle"><?php echo $this['config']->get('Subtitle'); ?></h3> <?php if(!is_user_logged_in()) { echo do_shortcode("[bbp-login]"); } else { echo 'bbpress page'; $forum_id = get_the_ID(); if( get_post_type( $forum_id ) == 'page') { echo do_shortcode("[bbp-forum-index]"); } echo do_shortcode("[bbp-single-forum id=" . $forum_id . "]"); echo do_shortcode("[bbp-single-topic id=" . $forum_id . "]"); } ?>
I can’t find a shortcode for the reply edit form. How can I made the reply edit form appear on a page?
Also none of the forms worked until I added this to the functions.php:
add_filter( 'bbp_verify_nonce_request_url', 'my_bbp_verify_nonce_request_url', 999, 1 ); function my_bbp_verify_nonce_request_url( $requested_url ) { return 'http://localhost:8088/mySite/' . $_SERVER['REQUEST_URI']; }
I am using a woo-theme with their warp system, I think it does not work well with bbpress.
Please, how can I made the edit form appear? There appears to be no shortcode for that.
I would like to implement this for all those boring long quotes, and quote inside quote, inside quote, etc…
It would make reading forum topics much more pleasant.One click and long quote opens at whole. There is scroll if you dont want to click.
I managed this easy with CSS3 and transitions, but there is very nasty problem on mouse out and page jumping, confusing to know where on page you are after this.Topic: shortcodes to sign out
Hello,
It’s my first time on this forum…
This is my problem :
I don’t want to insert a Connection widget on a side bar.I’d rather like to use short codes.
I already know these following shortcodes :
[bbp-login] – Display the login screen.
[bbp-register] – Display the register screen.
[bbp-lost-pass] – Display the lost password screen.
But I’d like a shortcode to sign out. I didn’t find it. Does it exist ?
Thank you very much for your help…These are two notices I get when I’m logged in and about to post on the forums.
Is there any way to remove them?
“You can use BBCodes to format your content.”
“Your account has the ability to post unrestricted HTML content.”
Thank you for your time!