Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\"'

Viewing 25 results - 12,276 through 12,300 (of 26,869 total)
  • Author
    Search Results
  • #126347
    Stephen Edgar
    Keymaster

    I just deleted your 6 replies hijacking other peoples topics, please don’t do that.

    The problem with your site is your theme specifying only 580px width.
    http://urbex.cz/wordpress/wp-content/themes/newscast/style.css Line #635

    #126332
    sontru
    Participant

    Hey! I’ve just installed bbPress v2.3 beta 2 ( https://bbpress.org/blog/2013/02/bbpress-2-3-beta-2/ ) and it has fixed this problem!

    I don’t know if the fix to the first bug (included in this v2.3 beta 2) help fixed this issue, but I no longer have this issue on my live site!

    Yay!

    #126330
    dwbroad
    Participant

    I’m having the same problem,

    This plugin will solve half the problem:
    https://wordpress.org/extend/plugins/bbpress-notify/

    But I need to be able to choose if a post will send out an email as I only want ones from a specific user to send out a notification

    It’s a bit more complicated than a filter toggle I believe.

    Check out https://codex.wordpress.org/Roles_and_Capabilities

    By default only Author roles and above have the ability to upload files, and that’s for security reasons so that’s probably a good thing.

    You can tweak your roles to change the ability to upload files, but at the moment it’s a little messy. Another issue is if you want to let all your users upload files.

    If you are just looking for images there is a bbPress attachment plugin in the .org repo that can handle that without having to mess with all the user stuff.

    #126301
    Peter
    Participant

    I found a way to edit it with the s2member plugin.

    https://wordpress.org/extend/plugins/s2member/

    #126295
    jumborex
    Participant

    I’m testing bbPost, so obviously I do not know it! I made a tryal here: http://www.coalize.it/wordpress2/
    In the sidebar on the right, one can see a link to the forum(s): when you click it not being a User you may read the simple test message of the Forum, while if you enter as a User (via facebook, or Google), you can see nothing more! No message, no Forum, nothing.
    Strange enough, the title of the Forum says “Comments Disabled”, and I didn’t willing disable them!
    Where do I’m doing wrong?
    Thank you.

    florianbottermann
    Participant

    I’m working at a WordPress site in which I want to use the bbPress plugin. Now, I want to create a link between the normal WordPress comment function and bbPress. I just want to do one thing. Under my standard WordPress blog entries, the users of my site can post comments. The comments are listed under the respective blog article. Next to each comments there the picture of the user that creates the comment. Now I want to create a link between the picture of the commentator and his bbPress profile page. When someone presses the picture of the commentator, there should be a forwarding to the bbPress profile page of the commentator. Observer of my blog can get a few informations about the commentator by that. Unfortunately I’m not able to create the link.

    This is the code of my functions.php, that describes the comments setup of my normal WordPress commenting system:

    And this is the bbPress php code which creates the user avatar link to the profile page:

    Can somebody tell me the way how I have to modify the WordPress functions.php?

    Even now, many thanks for your Help!

    #126270
    Stephen Edgar
    Keymaster
    #126268
    xmasons
    Participant

    I’m trying to create a page that includes only recent topics which would only be available to a forum role of Participant and a visibility of Private.

    Creating a new page and using the short code [bbp-topic-index] doesn’t work, as the Private page visibility is based on WordPress user roles and not bbPress.

    Is there a way to create an additional forum template that lists recent topics? This would not replace the main forum list view, but would be an additional page.

    #126265
    moonoi
    Participant

    Thanks Justin and John for all your amazing contributions to the community. I have a few questions/thoughts…

    Dynamic roles – how to edit their caps?
    The switch to “dynamic” roles in the most recent BBPress has left me completely puzzled. I’m still not sure what “dynamic” is supposed to mean?!

    I can’t seem to find anywhere to view and/or edit the caps of these new forum roles. I’d like to, for some reason only “keymaster” users get the wysiwyg post edit form, whereas “participant” can only see the source code pane (no, there are no js errors?!).

    Roles and capabilities in WP
    I have been using Justin’s Members plugin, which made roles and caps in WordPress work like I feel it should. In the same way as in Drupal core. Any number of roles can be assigned to a user. Caps are assigned to roles – never to one single user of course. One specific user will have the combined capabilities of the roles he/she has.

    Am I right that the only thing keeping us from just having a happy life together with Members plugin – assigning many roles to one user – is WP core’s User Edit screen that cuts everything else but one role away when you click save? If so, this should be easy to fix by just modifying this User Edit form. Right!?

    Thanks! 🙂

    #126262
    intimez
    Participant

    Hoping someone can confirm this bug to avoid this issue being skipped for the 2.3 release since it is considered critical

    ———————–
    john the admin creates group1 – jane creates group2 (private)

    when jane visits group2 to create a forum post, it is posted to group1 and everyone can view the private forum post.

    tested twice with new installs wordpress 3.5.1 + buddypress trunk-6779 + bbpress trunk 4761

    jane is a standard user (participant)

    #126244
    #126242
    paucal
    Participant

    Hi, I have BBPress installed in my wordpress GEO Theme. My site is US nationwide which means people can post their place listing for every State and City. I would like to offer the option to the place listing owners to create a private forum for their place. So, it will more than likely be thousands of private forums within my site. Is this possible with BBPress?

    #126241
    dwbroad
    Participant

    Thanks for your reply.

    I have just tried putting something at the top of the bbpress.php file but it seems that it never even reaches that file, wordpress seems to decide straight away that the page doesn’t exist so sends it to the 404 bypassing bbpress completely….

    #126237
    sontru
    Participant

    `
    <?php
    /*
    Plugin Name: Test add_user_to_blog with bbPress
    Plugin URI:
    Description: Does what it says! Menu item will appear under Users Menu in admin’s CP
    Author: sontru
    Version: 1.0.0
    Author URI:
    */

    add_action( ‘admin_menu’, ‘ad_the_wp_menu’);

    function ad_the_wp_menu() {
    global $bbtestpage;
    $bbtestpage = add_users_page(‘bbPressBugtest’, ‘bbPress Bug Test’, ‘administrator’, __FILE__, ‘addsutoblogfunc’);
    }

    function addsutoblogfunc()
    {
    if(trim($_POST[‘username’]) === ” || trim($_POST[’email’]) === ”) {
    echo ‘<h3>bbPress Bug Test</h3>’;
    echo ‘<p>Activate the bbPress plugin. Add a user using this page, refresh by displaying to All Users. If there is an issue, all sub sites will appear in this user\’s My Sites drop down list.</p>’;
    echo ‘<form method=”post” name=”create-user-test” action=”‘ . the_permalink() . ‘” />’;
    echo ‘Username: <input type=text value=”” name=”username”> Email: <input type=text value=”” name=”email”><input type=submit value=”Create User”>’;
    }
    else {
    $my_user = trim($_POST[‘username’]);
    $my_email = trim($_POST[’email’]);
    $my_user_id = username_exists($my_user);
    if( !$my_user_id and email_exists($my_email) == false) {
    $random_password = wp_generate_password( $length=12, $include_standard_special_chars=false );
    $my_user_id = wp_create_user( $my_user, $random_password, $my_email );
    echo “<p>Creating new user: $my_user with email: $my_email | Generated userID: $my_user_id</p>”;
    if($my_user_id && !is_error_id($my_user_id))
    add_user_to_blog(get_current_blog_id(),$my_user_id,’administrator’);
    } else echo ‘<p>User: $my_user exists or email: $my_email exists! Nothing done!</p>’;
    }

    }
    ?>

    `

    Use with care!

    #126236
    sontru
    Participant

    Thanks for confirming the first bug. (I’ve also found that this bug can be fixed by simply saving the settings as is.)

    I’ve been doing some more investigation on the second issue. It looks like it is not the add_user_to_blog function but the wp_create_user function (probably used in conjuction with add_user_to_blog) that is causing the problem. I’ve written a simple admin page (menu item appears under the Users menu) that will manifest the issue on my multisite setup.
    `
    [code with angle brackets removed to be posted]
    `
    Unfortunately, I have not been able to replicate this using a new install of WordPress MS v3.4.2, bbPress and a few sub sites and users. I will have to carry on looking to why my live MS site is causing this issue to manifest.

    #126227
    Stephen Edgar
    Keymaster

    Michael, can you post a bug on trac over here https://bbpress.trac.wordpress.org/ and with some luck someone with better coding skills than I will write a patch for a future release.
    (Use your same wordpress.org/bbpress.org username and password)

    #126223
    Stephen Edgar
    Keymaster

    What does any of this have to do with bbPress?

    If you have a WordPress question post them on WordPress’ support forums https://wordpress.org/support/

    If you have a BuddyPress question post them on BuddyPress’ forums https://buddypress.org/support/

    #126214

    In reply to: Shortcodes don't work

    Lynq
    Participant
    #126212
    whatisajess
    Participant

    I tried displaying the reply form in my WordPress theme’s single.php file by putting [bbp-reply-form] but it just outputs [bbp-reply-form] as text on the site.
    I am using the “bbPress Topics for Posts” plugin to automatically create a new topic with every new post and I want to display the latest replies as well as the reply form under the article but it only displays the replies, not the form. So I thought by adding the shortcode, I would get the form but that didn’t work.
    What am I doing wrong?
    Thanks so much in advance!

    #126210
    Anonymous User 7670885
    Inactive

    Eg: no captha, no wordpress plugin include! I think it work in different mode or with different class… Is there any way to change this? 😐

    #126209
    Lynq
    Participant

    The only thing to remember is that you can register for wordpress and register for bbPress (bbPress creates a wordpress user). So potentially they could be registering in a different part of your site, which could potentially mean you don’t get an email.

    You can usually tell by their email address and username if it’s some kind of bot or something registering for wordpress sites, I just tend to delete them. If I am really unsure I just send them an email from a random email account asking if they recieved their password correctly, don’t recieve an email for two days then I just delete it.

    #126189

    In reply to: bbpress path change

    Lynq
    Participant

    Potentially you could look at doing something with htaccess to redirect /blog/forums to /forums but I am not sure if that is going to cause any issues anywhere else.

    Not sure of another way because bbPress sits inside wordpress as a plugin.

    #126185
    kamlesh.kumar
    Participant

    Hello All,

    I have installed wordpress on my site in a folder named /blog and installed bbpress for forums. The issue is, bbpress url is set as /blog/forums and I want to change it to /forums. Is it possible? Please help me.

    thanks!

    #126184
    Hieke
    Participant

    Hello,
    I’m a newbie so on forehand sorry for stupid questions.

    I’ve installed WordPress 3.5.1, a fresh bbpress 2.2.4 forum, BuddyPress 1.6.4, Better WP Security 3.4.8 and WP Super Cache 1.2.

    Besides that the forum (under the tab Forums) doesn’t show up, the question is:

    How is it possible that only one person takes an account on the forum, I’ve received only one e-mail, and there are 3 new users. I suspect they are not the chatting-type, so I will delete these accounts anyway.

    Is there a way to prevent this? Is it a bug? What can I do about it?

    Thanks for your answers.

Viewing 25 results - 12,276 through 12,300 (of 26,869 total)
Skip to toolbar