Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 4,026 through 4,050 (of 26,834 total)
  • Author
    Search Results
  • #188255
    Roed
    Participant

    Hi guys.
    On my current site I have exported forums, topics and replies via the WordPress built in export to XML function.
    Then I am uploading these files to a new site with the same BBPress version and it looks like all goes well. When I go to Forums I can see all forums and how many topics they’ve got. But at the frontend the forums are empty when entering them.

    I have run all the tools recount etc. and then every forum says 0 topics. I did map all users to existing users which I move prior to BBPress so I do not understand how this recount can reset all forums.

    Any advice?

    Thanks!

    #188214
    J.Parra
    Participant

    Hello everyone. I am using BBpress 2.5.14 with Buddypress 2.9.2 in a WordPress 4.9 and I have the following question.

    On my website I have both entries and discussions marked as “downloads” and I would like to know if I can combine both formats on the same page or entry, of wordpress.
    That is to say, when accessing a page, the entries with the category “Downloads” are listed and on the same page the forum “Downloads” with the debates.

    Listing entries is not a problem, the problem is whether I can include the forum “downloads” on the same page.

    Thanks and regards.

    #188206
    Robin W
    Moderator

    try

    bbp style pack

    to do some styling

    #188199

    Topic: Fatal Error

    in forum Installation
    nickmesquiti
    Participant

    This is the error I am getting when clicking on a forum topic.
    Fatal error: Uncaught Error: Call to undefined function op_update_option() in /home/jjcohenm/public_html/wp-content/plugins/op-bbpress-fix-master/op-bbpress-fix.php:39 Stack trace: #0 /home/jjcohenm/public_html/wp-includes/class-wp-hook.php(286): op_allow_bbforum(”) #1 /home/jjcohenm/public_html/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(NULL, Array) #2 /home/jjcohenm/public_html/wp-includes/plugin.php(453): WP_Hook->do_action(Array) #3 /home/jjcohenm/public_html/wp-settings.php(450): do_action(‘init’) #4 /home/jjcohenm/public_html/wp-config.php(91): require_once(‘/home/jjcohenm/…’) #5 /home/jjcohenm/public_html/wp-load.php(37): require_once(‘/home/jjcohenm/…’) #6 /home/jjcohenm/public_html/wp-blog-header.php(13): require_once(‘/home/jjcohenm/…’) #7 /home/jjcohenm/public_html/index.php(17): require(‘/home/jjcohenm/…’) #8 {main} thrown in /home/jjcohenm/public_html/wp-content/plugins/op-bbpress-fix-master/op-bbpress-fix.php on line 39

    We are using the twenty seventeen theme and building pages using Optimizepress and building a forum using BBPress. We are also using a plugin for OptimizePress bbPress fix to Allow rendering of forums on OptimizePress blog, however we are not building a blog; but a webpage for a forum using wordpress.

    Wordpress V4.9
    BBPres v2.0-rc-3

    JJCohenMembership.com

    Currently we are still building and do not have it public and therefore no way to get to the forum page except thru the direct link:

    JMEMBERS FORUM PAGE

    Help please.

    Nick

    cold-designer34
    Participant

    bbpress version 2.5.13
    wordpress version 4.8
    theme Avada

    Hi

    I’ve looked around support forum here and also carefully through my localhost installation (where my bbpress forum is currently installed for test purposes) and I’m dashed if I can work out how to use .htaccess to password protect the entire forum.

    I’m aware that there are other ways to authenticate users but some of my clients website visitors are young people and we are keen to ensure that access to the website forum is restricted most severely. By this I mean we wanted to place the forum in its own directory and then place .htaccess and .htpasswd in that directory to limit access to individuals who had personally been handed a note of what the username and password were.

    Might I ask if I’ve missed something simple? Any help would be greatly appreciated.
    Have a great day
    Gav

    #188168

    In reply to: Sidebar Messed Up

    Robin W
    Moderator

    I somehow broke the page layout of my topic index and topic pages.

    you have done something – the right sidebar is wrapped within the left hand stuff.

    Since I don’t know what you have don to muck it up, it’s hard to suggest what to do to fix it.

    If you haven’t directly edited anything, then something you have done within wordpress/theme/plugins/updates.

    #188149

    In reply to: feeds bug

    DAM
    Participant

    https://bbpress.trac.wordpress.org/ticket/2961
    we have the same bug again after the update

    #188148
    Robin W
    Moderator

    I go to login to my forum and it redirects me to the user dashboard of WooCommerce.

    just tried it and it seemed fine – is woocommerce active?

    Plus the BBPress toolbar no longer will appear at the top so people can’t see the links to their profile and forums.

    not sure quite what you mean by the bbpress toolcar – do you mean the wordpress one?

    #188145
    Mauro
    Participant

    I found the pieces and bits necessary to make this happen.

    
    // ALTER TinyMCE INIT FOR VISUAL EDITOR ON FORUM TOPICS AND REPLIES
    // SOURCE: https://bbpress.org/forums/topic/alter-mceinit-for-visual-editor-on-topics/
    
    // Enable visual editor on tinymce in bbPress
    function bbp_enable_visual_editor( $args = array() ) {
        $args['tinymce'] = true;
        return $args;
    }
    add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );
    
    // Enable TinyMCE paste plugin
    function bbp_add_paste_plugin($args) {
      $args[] = 'paste';
      return $args;
    }
    add_filter( 'teeny_mce_plugins', 'bbp_add_paste_plugin');
    
    // ADDS A JQUERY PASTE PREPROCESSOR TO REMOVE DISALLOWED TAGS WHILE PASTING
    // SOURCE https://jonathannicol.com/blog/2015/02/19/clean-pasted-text-in-wordpress/
    function configure_tinymce($in) {
      $in['paste_preprocess'] = "function(plugin, args){
        // Strip all HTML tags except those we have whitelisted
        var whitelist = 'a,p,span,b,strong,i,em,h3,h4,h5,h6,ul,li,ol';
        var stripped = jQuery('<div>' + args.content + '</div>');
        var els = stripped.find('*').not(whitelist);
        for (var i = els.length - 1; i >= 0; i--) {
          var e = els[i];
          jQuery(e).replaceWith(e.innerHTML);
        }
        // Strip all class and id attributes
        stripped.find('*').removeAttr('id').removeAttr('class');
        // Return the clean HTML
        args.content = stripped.html();
      }";
      return $in;
    }
    add_filter('teeny_mce_before_init','configure_tinymce', 99999999999);
    
    #188141
    #188140

    Topic: Widget help

    in forum Installation
    carzpk
    Participant

    Need help pleass
    I have installed the bbpress plugin and but its not showing in widget section like i cant add widget to it
    Also in the forum everything is white like these buttons where you can post a topic
    I am latest wordpress and using premium theme

    Thankyou

    #188123
    leeproc
    Participant

    Hello all,

    I somehow broke the page layout of my topic index and topic pages. The sidebar should be on the right, but it looks like WordPress is drawing the gray line separator on the left of the page, and pushing all the sidebar content to the bottom. Example: https://www.parentifact.org/forums/forum/questions/

    I thought this was due to some code I put in the style.css and functions.php to style my archive pages, but I removed that code and it’s still messed up. Has anyone experienced this before, or could someone more knowledgeable look at the source and developer tools to figure out what’s going wrong here?

    Thanks!

    #188082
    Robin W
    Moderator

    suggest you try :

    bbp style pack

    and come back with any remaining issues.

    I’ve reduced you queries to this one

    #188056
    docaj
    Participant

    I have been struggling with this strange problem. We use bbpress with wordpress. Nobody (except for the site admin) can create a topic or reply in the forum containing the word “breast”. We have to intentionally misspell it as “breastt” or something like that. We have uninstalled Akismet. We do not have any spam filter or content filter plugins. Also checked Settings – Discussion, and Comment Moderation and Comment Blacklist are entirely empty. Any idea what is blocking this word? Thanks!

    #188022
    Callib Carver
    Participant

    Hi,

    We’ver recently launched our site, http://www.theknightsrequiem.com. Our site usses both buddypress and bbpress. We are having an issue with cover photos being uploaded to users profiles.

    When you try to upload the photo, you get a progress bar, like you would see any other time. However it never appears, you just receive the message
    “For better results, make sure to upload an image that is larger than 0px wide, and 225px tall.”

    Again no image is actually uploaded or displayed. However, we can upload user profile photos.

    We are running WordPress 4.8.2
    Our theme is Game Addict by Skywarrior
    Potential plugins that could be affecting this, Buddypress itself, bbpress.

    Thank you for your time and help.

    #188000

    Topic: Email Users

    in forum Installation
    sbl102905
    Participant

    This is probably a very simple question. I have different types of users / subscription levels on my forum. How can I write them emails out of wordpress ?

    #187984
    ipullrank
    Participant

    Hey All,

    I’m in the process of migrating an archaic and otherwise obsolete custom-built forum written in ASP to bbPress. The forum has been around for about 20 years and it was essentially a vBulletin clone. It has roughly 10 million posts and growing.

    I’d exported CSVs of tables from the existing forum. We imported the users into the database and then associated them with the relevant posts. In the database now, wp_postmeta is 2.5 GB and wp_posts is 4.4 GB. Suffice to say everything is slower now, but the forum is 1200bps dialup modem slow.

    I installed Query-Monitor to try and figure it out and this query is taking 53 seconds:

    SELECT SQL_CALC_FOUND_ROWS wp_posts.ID
    FROM wp_posts
    INNER JOIN wp_postmeta
    ON ( wp_posts.ID = wp_postmeta.post_id )
    WHERE 1=1
    AND wp_posts.post_parent = 36005
    AND ( wp_postmeta.meta_key = ‘_bbp_last_active_time’ )
    AND wp_posts.post_type = ‘topic’
    AND ((wp_posts.post_status = ‘publish’
    OR wp_posts.post_status = ‘pending’
    OR wp_posts.post_status = ‘closed’
    OR wp_posts.post_status = ‘hidden’)
    OR (wp_posts.post_status = ‘private’))
    GROUP BY wp_posts.ID
    ORDER BY wp_postmeta.meta_value DESC
    LIMIT 0, 15

    I spent time checking out this ticket https://bbpress.trac.wordpress.org/ticket/1925 but wasn’t really left with an idea of what I should be doing to fix this. Not really sure where I should start in thinking about how to get this down to normal speed. I have this running on pretty stacked machine and DB instances on Google Cloud, but I’m open to any input around what the specs of the boxes need to be to handle this.

    Also, we’re also migrating our e-commerce site to WooCommerce from Shopify, so speed is definitely a huge issue and I don’t want to have the whole site be slow just because of the forum.

    Thanks for any help!

    #187983

    In reply to: Error BBpress

    Richard
    Participant

    Hello, I am getting this exact same error as well. When I try to use Elementor I get a 500 error and must disable bbPress to use Elementor at all.

    The bbPress version is 2.5.14, WordPress version 4.8.3. I’ve tried standard themes, that didn’t make a difference. We do have WooCommerce and User Role Editor installed, but I’ve tried deactivating all of them and bbPress is the only one giving me this same exact error.

    It’s weird too because I just migrated this from a different server and I wasn’t getting the error there…

    #187977
    mikedean
    Participant

    A year later but here it is.

    This assumes a drop down select menu has been added to the form-topic.php template. wp_dropdown_categories() is used to make a <select> element for all the terms in the categories taxonomy so users can assign the topic to a term.
    https://codex.wordpress.org/Function_Reference/wp_dropdown_categories

    Then, the topic is assigned to the term they selected by hooking into the new topic process.

    /**
     * Assign a taxonomy term to a topic after it has been selected in the front end (using a <select> element).
     *
     * @param Int           $topic_id               The id for the current topic being created.
     * @param Int           $forum_id               The id for the current forum the topic is being created in.
     * @param Int           $anonymous_data         ??
     * @param Int           $topic_author           The id of the user who created the topic.
     *
     * @see https://codex.wordpress.org/Function_Reference/wp_dropdown_categories
     */
    
    //Update the taxonomy terms when a new topic is created or edited.
    add_action( 'bbp_new_topic', 'myprefix_assign_category_to_post', 20, 4 );
    
    function myprefix_assign_category_to_post( $topic_id, $forum_id, $anonymous_data, $topic_author ) {
            
            //Get the category submitted by the user
            $taxonomy_name = 'category';                    //the slug, or machine name, or the taxonomy
            $term_id = intval( $_POST['cat'] );             //Get value from the <select> element as an interger
    
            //@TODO error checking if term or taxonomy does not exists (returns false if so)
            $term_object = get_term_by( 'id', $term_id, $taxonomy_name );
    
            //Replace the existing subject with the selected one
            wp_set_post_terms( $topic_id, array( $term_id ), $taxonomy_name, false );
    }     
    #187975
    xatanael
    Participant

    Hello,

    I just want to import my phpBB forum (version 3.2.0) to BBpress. I tried with “tools/import” but it doesn’t work. The tools didn’t import a single forum or topic.

    How can I do this?

    Another question : how can I increase the size of the font in BBpress? I would have the same size as this forum, on wordpress.org. The original size is really too small.

    Thanks a lot.

    #187965
    uddin33
    Participant

    I am using WordPress Version 4.7 And have installed bbpress version 2.5.12.Every thing is working fine but in edit profile page no edits are updating.I have checked it for both admin and participant role.After edit profile button submit it redirects to following url
    http://mysite.com/forums/user/pro2/edit/?updated=true but nothing is changed actually.How can i solve this problem?pls help

    Robin W
    Moderator

    It is shocking how bad this forum aspect of WordPress is Amazing that consumers put up with it, really.

    oh how I agree that something that has taken a lot of people a lot of time to write for free, is maintained for free, and supported for free, and has cost you nothing doesn’t do what you want. Absolutely disgusting and shouldn’t be allowed. Of course you could always crack the code open and help improve it, or perhaps it is easier to just easier to expect someone else to do that for you and just complain when it doesn’t.

    Caprilli
    Participant

    I have the same thing.

    I just don’t think this bbPress / BuddyPress stuff integrates well enough to be let loose on an active site with 5,000 daily visitors.

    It’s a developer tool and starting point. A developer would reap the fees of getting it all to work well, while single users of WordPress just have the misery.

    It is shocking how bad this forum aspect of WordPress is. Amazing that consumers put up with it, really.

    #187881

    In reply to: Hide every forum

    Robin W
    Moderator

    It depends what you mean by ‘People can create these courses and forums using our site’ – do you mean anyone, or just a select few who run this stuff?

    Hidden forums will only be seen by users with moderator privilege, so that’s not what you’ll want for ordinary users.

    closest you’ll get is my private groups plugin

    Private groups

    Many people use it to have course linked forums but it won’t do what you are asking if you want users to be able to administer the creation of forums. If it’s just a select few admikns who do this, then it might be good for you.

    aravoth
    Participant

    Make a child theme for your wordpress theme, copy the folder content\plugins\bbpress\templates\default\bbpress into your child theme, edit the contents of that file as much as you need without affecting the actual plugin files.

    it’s not a plugin, it becomes part of your actual theme, making your changes immune to updates for the most part.

Viewing 25 results - 4,026 through 4,050 (of 26,834 total)
Skip to toolbar