Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '+.+default+.+'

Viewing 25 results - 1,626 through 1,650 (of 6,788 total)
  • Author
    Search Results
  • Robin W
    Moderator

    it works with postname

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #176981

    In reply to: bbpress wrong UI

    Robin W
    Moderator

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #176974
    Robin W
    Moderator

    I suspect that your theme or another plugin might be interfering.

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #176956
    Robin W
    Moderator

    probably a conflict –

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Robin W
    Moderator

    ok, so it could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #176889
    TruthPraiser
    Participant

    Hi
    I want to show all forums list in widget, but bbPress default widget show only the 50 forums name that sorted with alphabetic characters.

    #176881
    siparker
    Participant

    I recently moved VB to bbpress for my forum.
    i pruned a lot before moving.
    9k users now.
    20k topics
    115k replies

    I managed the import ok. the key to this is pateiance to a certain degree. the 2.6 alpha i am running worked better for the import than 2.5

    However. if moving from VB your in for a bit of a shock. as it does not work the same way. so please do double check everythign before you move. one of my other posts has a plugin to create VB like urls as i came from vbseo across to bbpress which has a very different hierarchy.
    however it does put your forum into wordpress which opens up amny other options. which is why i did it.

    If you need any help let me know and i will do what i can to advise what i ahve done / used to make bbpress more like vb.

    Two major things to not do
    Do not leave the default notifications enabled when you move the forum. mine sent every notification ever out again. somethign like 250k emails got sent every time i did the import.
    And on top of that i had several test versions so by the time i realised i had well and truly pissed a lot of people off.
    Secondly the basic spam filters bbpress uses are different to how vb works and will possibly block some users. I know new moderation stuff is due in the near future but its not in yet so the spam options available are a bit difficult to work with.

    #176776
    DamnDramaQueen
    Participant

    Hi Robin,

    I followed your instruction. No white page after uploaded that’s all good… Not sure this a default global message in general or what? That Attention message still exist above the admin page?

    Anyhow, I pasted that phase on line 43 that is after this function.

    function bbp_format_buddypress_notifications( $action, $item_id, $secondary_item_id, $total_items, $format = ‘string’ ) {

    // Bail if not the notification action we are looking for – THIS IS FROM ADMIN BUG MESSAGE , bbpress.org/forums/topic/missing-else-return-action/#post-176758
    if ( ‘bbp_new_reply’ !== $action ) {
    return $action;
    }

    // New reply notifications
    if ( ‘bbp_new_reply’ === $action )

    Also I’m not sure am I suppose to do this or not? I don’t understand php, but what I don’t see is this ?> at the END of the php? I see every other php do have it!

    So I added this ?> to close it. I hope is right?

    Please advise help if this Ok? Thanks

    salauatkaz070785
    Participant

    That is due to the theme ? I have other default theme installed , but not active . When I created a subdomain and there bbPress plugin set to the default theme , it works . I is a musical nature theme called Replay.

    Robin W
    Moderator

    It could be a theme issue

    Aa test switch to a default theme such as twentyfifteen, and see if this fixes.

    #176729
    Robin W
    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #176708
    Robin W
    Moderator

    If I understand you correctly you want to amend a file in

    wp-content/plugins/bbpress/templates/default/bbpress/

    The easiest way is to copy the relevant file to your child theme

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress and copy the file there eg

    wp-content/themes/%your-theme-name%/bbpress/loop-forums.php

    bbPress will now use this template instead of the original
    and you can amend this

    You can also add a location – for instance within a plugin I use I add a location using :

    add_action( 'bbp_register_theme_packages', 'bsp_register_plugin_template1' );
    
    //get the template path
    function bsp_get_template1_path() {
    	return BSP_PLUGIN_DIR . '/templates/templates1';
    }
    
    function bsp_register_plugin_template1() {
    	bbp_register_template_stack( 'bsp_get_template1_path', 12 );
    }
    
    #176697
    Robin W
    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #176678
    Robin W
    Moderator

    hmm.. The only way I can immediately think of is to modify loop-topics

    so

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    find
    wp-content/plugins/bbpress/templates/default/bbpress/loop-topics.php
    Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/loop-topics.php
    bbPress will now use this template instead of the original
    and you can amend this

    so in that file you will see

    <?php while ( bbp_topics() ) : bbp_the_topic(); ?>
    
    			<?php bbp_get_template_part( 'loop', 'single-topic' ); ?>
    
    		<?php endwhile; ?>
    

    you would need to check with forum the user is in and then custom display

    so something like – you’d need to write the code – this is just words !

    <?php 
    	if (forum == the one you want to change) {
    		then make an array of the ID, and then cycle through them
    		foreach ($topics as $topic) {
    		bbp_get_template_part( 'loop', 'single-topic' );
    		}
    	}
    	else { ?>
    		<?php while ( bbp_topics() ) : bbp_the_topic(); ?>
    
    			<?php bbp_get_template_part( 'loop', 'single-topic' ); ?>
    
    		<?php endwhile; ?>
    	<?php } ?>
    
    #176668
    pcpro178
    Participant

    You are correct. There is no functionality missing, and I am trying to get the bbPress pages to look like they fit with the rest of my site (i.e. background and header–theme elements). My last reply (#176623) was badly mangled by the auto-populated page elements from my site (did not see that coming), and Akismet keeps blocking my posts, so I have no idea when anyone will see this. :”’ (

    Please correct me if I am using the wrong approach, but what I am trying to do is figure out which of the files at wp-content/plugins/bbpress/templates/default/bbpress that I should be using to customize the bbPress topic page (e.g. ‘sopearly.com/topic/welcome-to-the-sopearly-community/’) and which file name I should rename it to: plugin-bbpress.php, bbpress.php, forums.php, forum.php.

    I realize I’m having a lot of trouble with this. Thanks so much for your help. šŸ™‚

    #176623
    pcpro178
    Participant

    Thanks, Robin. I’ve already done that for the Forum Index and Forum pages. In concert with a few .htaccess redirects, it works fine, as can be seen here:

    https://sopearly.com/forums/
    https://sopearly.com/forum-introductions/

    Any links to the bbPress-generated https://sopearly.com/forum/introductions/ are redirected to https://sopearly.com/forum-introductions/.

    Redirect /forum/introductions/ https://sopearly.com/forum-introductions/

    The biggest problem I am having right now is with the Topic pages, since I do not have control over which discussion topics be created by my users in each of the forums; the Topic page links are automatically generated by bbPress. Here is a good example:

    https://sopearly.com/topic/welcome-to-the-sopearly-community/

    I can make the colors, spacing, etc. match the rest of my site with a little work, but the page backgrounds and header are managed by the theme I’m using. What I’ve been able to gather by the reading I’ve done is that I should be able to take the contents of one of the files located at wp-content/plugins/bbpress/templates/default/bbpress, insert that into the appropriate (copied) theme file (single, template, etc.), and rename that file to one of the following:

    • plugin-bbpress.php
    • bbpress.php
    • forums.php
    • forum.php

    I can get with my theme’s support to find out which of their files I should start with, but (unless you think there is a better way) I guess my question is which of the files from wp-content/plugins/bbpress/templates/default/bbpress should I use, and to which of the four filenames should I copy it in my child theme? Thanks so much for your help. šŸ™‚

    #176618
    woklet
    Participant

    Hey again,

    OK, we’re getting somewhere but now the task that fails is: “Remap existing users to default forum roles” and the various counts don’t appear to have updated. I still see last activity as being 4 years ago and forum post counts at zero

    #176611
    pcpro178
    Participant

    I’ve read a lot of the documentation and posts on this, but it unfortunately is not sinking into my skull. From what I can tell, there are basically three pages to the standard bbPress installation & usage: Forum Index page, Forum page, and Topic page. I saw something referring to the wp-content/plugins/bbpress/templates/default/bbpress folder, available after installing bbPress. How do I know which of these files to copy/modify, and to which file name should I copy it? Any help or insight you might be able to offer would be appreciated. I am completely lost on this.

    #176596
    Robin W
    Moderator

    interesting question – bbpress will add the default role you set in forums settings, so if you set this to participant this would sort the majority of users out from a forum perspective.

    Which then makes this more of a wordpress question – in essence you could set up the users manually and click to not send them emails, so they would be on the live site when you transfer, but then of course they wouldn’t know their password, so it is a bit of a catch 22 !

    #176589
    expectancy
    Participant

    For anyone that hasn’t solved this yet, it’s actually a very easy and quick fix!

    In the W3 spec (http://www.w3.org/TR/dom/), the ā€œinsertBeforeā€ method requires 2 arguments. The second can be null, but it is still required. It looks like IE doesn’t require the second argument (which is why it works in IE as is) while Chrome, Firefox, and Safari do.

    bbpress/templates/default/js/reply.js – line 18
    Added a null argument as the second argument on ā€œinsertBeforeā€.

    Before Fix: reply.parentNode.insertBefore(respond);
    After Fix: reply.parentNode.insertBefore(respond, null);

    
    reply.parentNode.insertBefore(respond, null);
    if ( post && postId )
    	post.value = postId;
    parent.value = parentId;
    cancel.style.display = '';
    
    #176566
    Matoca
    Participant

    I disabled Jetpack and have left it disabled since this happened.

    However, something happened this Sunday that might be part of this problem, though I can’t be sure. Just posting it here so others can benefit.

    Trying to view my forum on my phone last night, but not logged in. I get the message “oops nothing here.” No forum at all. That’s not right, the forum should be visible to everyone!

    I try to log into my WP site on my phone. Instead of logging me in a form pops up that wants me to prove I am human by performing a simple math equation. This has happened before and I had no idea why, but usually only when I am trying to access the site via my phone. So now I am locked out of the dashboard by this form that is never satisfied by my answers and I can’t see the forum either. Great.

    Searching the WP troubleshooting forum I discover this Prove You Are Human math form is a function of the Jetpack setting called Protect. Many people have been locked out of their dashboard for days at a time. In the forum topic three ways to defeat this are suggested. The simplest, if you can get into your dashboard, is to turn off this Protect setting. More complex is doing it via WordPress.com settings or changing a file in your server.

    Today, Monday, I am able to log into my forum via my computer, and the forum is visible. Jetpack, for some strange reason, is no longer disabled. I have no explanation for that, I left it disabled.

    The first thing I look at are all the Jetpack settings and I unchecked the Protect function. I noticed that the default settings for Jetpack includes many things I had no idea were part of it. Very powerful plugin.

    Will this allow folks who have been blocked to post topic and replies in the forum? I don’t know yet. I would be curious if anyone has tangled with this Protect function prohibiting anonymous users from posting in the forum?

    #176559
    Matthijz98
    Participant

    I have made some adjustment to the default theme files it now looks like this:

    In the last Colom I want to display the last activitie in that category something like this
    ā€ā€
    But I don’t know which function I need and how I need to implement it in the theme.
    The code looks something like this
    ā€ā€

    #176484
    uschesch
    Participant

    My gravitar is wokring fine in WordPress; however, it no longer appears in the forum. Now a default image appears. Does anyone know what would have caused this issue?

    Wordpress: 4.5.3
    bbPress: 2.5.9-6017

    Thank you.

    #176467

    In reply to: BBPress slowness save

    TriiXx
    Participant

    Done P3 Plugin.

    All it’s good when i don’t post a message but with a manual check and post a message on bbpress :

    Theme Load Time: 7.3342seconds avg.

    Query Timeline : 3444 querries

    Detailed Timeline : 87 s (for theme)

    I try tonight with the default template but i think it’s the same.

    #176455
    Stephen Edgar
    Keymaster

    $content_dir (from the constant ā€˜WP_CONTENT_DIR’) resolves as:
    /var/lib/openshift/hexkey/app-root/data/current/wp-content

    content_url gives mydomain/wp-content

    and the file location starts out as :
    /var/lib/openshift/hexkey/app-root/data/plugins/bbpress/templates/default/js/editor.js

    That last path, I’d expect that to be /var/lib/openshift/hexkey/app-root/data/wp-content/plugins/bbpress/templates/default/js/editor.js

    i.e. after data is wp-content which is before plugins

    Plugins are “typically” installed unto the wp-content directory, WordPress has some constants available to change these, typically WP_CONTENT_DIR and WP_CONTENT_URL are used, WP_PLUGIN_DIR and WP_PLUGIN_URL are not used anywhere near as much, maybe the Openshift configuration has these defined in the wp-config.php file in the root directory?

    https://codex.wordpress.org/Determining_Plugin_and_Content_Directories#Constants

    This probably needs further investigation by bbPress, mainly to check the constants WP_PLUGIN_DIR and WP_PLUGIN_URL so these can be used standalone when WP_CONTENT_DIR and WP_CONTENT_URL are not used at all.


    @oldshaghat
    can you check in your wp-config.php if any of the above constants are defined please?

Viewing 25 results - 1,626 through 1,650 (of 6,788 total)
Skip to toolbar