Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\"'

Viewing 25 results - 3,376 through 3,400 (of 26,748 total)
  • Author
    Search Results
  • #195599
    Robin W
    Moderator

    if you actually posted ‘After clicking on register button wp shows wp-login.php page but without login form. Only -1 in upper left corner.’ on a wordpress forum, why would they even mention bbpress? Youy must have asked a question mentioning bbpress.

    I have looked at the issue and it is a wordpress issue, but general advice

    It could be a theme or plugin issue issue, so you’ll need to test to find out which

    Themes

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

    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.

    Then come back

    #195598
    ljubomir69
    Participant

    I post the same question on wordpress.org and they say: Ask on bbpress..

    So, again, when I try to register on bbpress forum on my website after inserting the username and mail and pressing the Register button on https://karate-training.net/wp-login.php I see only -1 in upper left corner.

    Did anyone have a similar problem?

    Here is the example
    https://karate-training.net/wp-login.php?action=register

    #195593
    Robin W
    Moderator

    bbpress juts uses wordpress registration so please post to the wordpress support forum

    #195592

    In reply to: next release ideas

    Robin W
    Moderator

    1. bbp style pack
    3. in current bbpress
    4. bbp style pack

    bbp style pack

    #195585

    In reply to: Integration with WP

    liyacaty
    Participant

    When u load wordpress function inside bbpress. U already integrate both design point and database point. You only need to add WP template tags inside bbpress template.and mostly use wp default functons.

    #195582
    Robin W
    Moderator

    @looimaster I’m just a bbpress user trying to put something back on the open software community

    bbpress has https://bbpress.trac.wordpress.org/ as it’s code improvement tool

    #195556
    ak08820
    Participant

    I found another way to add forums to the menu at DesignBombs which seems to do it. Instead of creating a page and embedding the short code in it, just used the forums to add to the menu. It does not initially have the top level page with 4 sub forums but that is OK.

    #195555
    jh20001
    Participant

    I also think the many attempts to import, find an error, add the column, import, find an error, add the column…..etc, led to bbpress having a meltdown somewhere possibly as in WordPress, when you click on the forums link in the menu or the “All Forums” sub menu item, it leads to a ERROR 502 – BAD GATEWAY.

    I tried re-installing the plugin but the forums listing menu item is shot. I even upgraded to the current release candidate.

    On a positive note, the current release candidate seems to be importing data….working on importing up to convert 50k+ topics right now. Even though the forum listing in admin screen is screwed, this is at least a good test to see what happens on the import I guess…

    #195540
    jh20001
    Participant

    I finally had enough with phpbb and installed a wordpress JUST for my forums. I installed bbpress in it and have been trying to import the forums over. First it kept erroring saying missing table fields or whatever, so I kept adding the table fields to the areas of the phpbb’s sql DB where it was looking for them..then it got stuck with the “Starting Conversion” and a spinning wheel. Everytime I had chosen “Start Over” I would get the “Specified key was too long; max key length is 1000 bytes” error. Just not my day I guess. 🙁

    I had a few questions…

    1) Does the importer not support 3.2.0? I figured it does by now since it states phpBB 3.x
    2) Can you make the main index page of the WordPress site the forums? This way the wordpress is for nothing other than the forums? (once things do get working…)
    3) Am I missing anything lol…I’m rackin my mind on this and it’s driving me nuts 🙂

    I can’t wait to be in a better environment for the forums…

    #195539
    ak08820
    Participant

    Hello
    I am trying to use bbPress for a forum and when I use the short code to generate the index it does not show correctly. It does show a link (http://localhost/my-app/wordpress/forums/forum/wvv-forums/)for the index and if I click on the link it shows a better formatted list.

    I have 4 sub-forums and instead of 1 per line, it shows 2 per line. Using Twenty Seventeen and have previewed with sixteen and fifteen themes, too with no effect.

    What do I need to do to fix this?

    Thanks in advance.

    Robin W
    Moderator

    I think the edit button appears for anyone with edit permission under wordpress – what wordpress level are they?

    #195529
    morded
    Participant

    Hello, i have install the bbPress on my wordpress site … i have create the forum sections, but topics don’t show up… somebody knows the solution? I have tried to change the users role, but is not possibile …

    http://www.exlot.it/wp/forums/

    #195522
    Robin W
    Moderator

    Try this – or much easier just add my style pack plugin to your site which has this fix built in, and let me know if it fixes

    bbp style pack

    //filter to correctly return last active ID for sub forums
    //note : a parent forum or category can get the wrong last active ID if a topic in a sub forum is marked as spam or deleted. This filter ignores the parent and works out the correct sub forum
    
    //don't add if pg filter exists as this will have done it already
    if (!function_exists ('private_groups_get_permitted_subforums')) {
    	add_filter ('bbp_get_forum_last_active_id' , 'rew_get_forum_last_active_id', 10 , 2 ) ;
    }
    
    function rew_get_forum_last_active_id ($active_id, $forum_id) {
    	$sub_forums = bbp_forum_get_subforums($forum_id) ;
    	if ( !empty( $sub_forums ) ) {
    		$active_id = 0;
    		$show = array();
    		//find the latest permissible 
    		foreach ( $sub_forums as $sub_forum ) {
    			$sub_forum_id =  $sub_forum->ID ;
    			$active_id = get_post_meta( $sub_forum_id , '_bbp_last_active_id', true );
    			$last_active = get_post_meta( $sub_forum_id, '_bbp_last_active_time', true );
    			if ( empty( $active_id ) ) { // not replies, maybe topics ?
    				$active_id = bbp_get_forum_last_topic_id( $sub_forum_id );
    				if ( !empty( $active_id ) ) {
    					$last_active = bbp_get_topic_last_active_time( $active_id );
    				}
    			}
    			if ( !empty( $active_id ) ) {
    				$curdate = strtotime($last_active);
    				$show[$curdate] = $active_id ;
    			}
    		}
    		//then add the forum itself in case it has the latest
    			$active_id = get_post_meta( $forum_id , '_bbp_last_active_id', true );
    			$last_active = get_post_meta( $sub_forum_id, '_bbp_last_active_time', true );
    			if ( empty( $active_id ) ) { // not replies, maybe topics ?
    				$active_id = bbp_get_forum_last_topic_id( $forum_id );
    				if ( !empty( $active_id ) ) {
    					$last_active = bbp_get_topic_last_active_time( $active_id );
    				}
    			}
    			if ( !empty( $active_id ) ) {
    				$curdate = strtotime($last_active);
    				$show[$curdate] = $active_id ;
    			}
    		$mostRecent= 0;
    		foreach($show as $date=>$value){
    			if ($date > $mostRecent) {
    				 $mostRecent = $date;
    			}
    		}
    		if ($mostRecent != 0) {
    			$active_id = $show[$mostRecent] ;
    		} else {
    			$active_id = 0;
    		}
    	}
    	return apply_filters( 'rew_get_forum_last_active_id', $active_id, $forum_id );
    }
    #195513
    Robin W
    Moderator

    no special bbpress themes, most themes work with bbpress, but you may want to use this to style the forums t match your theme and improve their look.

    bbp style pack

    Adarsh Verma
    Participant

    I’ve been using bbPress and BuddyPress since long and am aware that if a user creates a topic in any forum, that also gets listed in user profile -> Forums tab.

    Here is what exactly I’ve done:

    When I create a private group and attach a forum with it. And a non-admin member becomes a member of that private group. Now that member creates a topic in that private forum, that topic does show globally on the /forums page. But when that user checks his profile for the topics he created, there no topic is shown. Which means the topics that show up globally, doesn’t show on the profile page.

    For the information, I’m using the following versions of the plugins and theme:
    1. bbPress – 2.5.14
    2. BuddyPress – 3.2.0
    3. Twenty Sixteen – 1.5
    4. WordPress – 4.9.8

    Please help me with this issue. Also, let me know if some guys have come across such a situation.

    Thanks in advance!

    #195493

    Topic: WP Version

    in forum Installation
    grimmag
    Participant

    Hello. It shows that this plugin is “Untested with your version of WordPress” and hasn’t been updated in over a year? I don’t want to get another plugin that doesn’t work so could you tell me if there are any plans to update to the latest WP Version? It’s not like Version 4.9.8 just came out. Thanks in advance!

    #195479

    In reply to: Struggling with login

    baz13
    Participant

    Thank you. I was introduced to WordPress a few weeks ago so everything is new to me. If there is an alternate bbpress support plugin other than these two you recommended please let me know.

    Home

    #195475

    Topic: Struggling with login

    in forum Plugins
    baz13
    Participant

    Hi

    I am struggling with a login button within my page for bbpress. I have tried to use 2 different plugs and I am having 2 different problems. I dont want to use a sidebar option. If anyone can provide a solution to either one I would really appreciate it:

    bbp style pack – When I select add login/logout to menu options it adds “Log In” to the navigation menu higher then the other menu options (ie. it sits vertically higher by about half the text height”. Can anyone help with how to align this with the other text?

    bbpress WP tweaks – This provides an acceptable button to login however the login link takes me to the actual backend wordpress login page. Simply changing the href=” ” to the page on my website does not work either.

    <p>{login_text} / {register_text}</p>

    I would prefer to use the bbp style pack however either will do at this stage. I am very new to buidling websites and I don’t want to play around in the functions.php area at risk of crashing my entire site.

    Thank you for your help.

    #195466
    Robin W
    Moderator

    I’ve just added functionality to bbp-style pack for participants to close their own topics – to set see item 17 in Topic/Reply Display tab to set this

    bbp style pack

    #195465
    Robin W
    Moderator

    I’ve just added functionality to bbp-style pack for participants to close their own topics – to set see item 17 in Topic/Reply Display tab to set this

    bbp style pack

    #195456
    Robin W
    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Buttons

    #195379
    vincitygialam
    Participant

    Hi ,

    how to determine if its a member or an admin ( by admin , i mean the administrator and keymaster levels ) ?

    if not , where can i find a good documentation about bbpress template tags like wordpress’ one ?

    TFYT .

    #195354
    ahoraajedrez
    Participant

    Hello, i have a problem, i see a text before the text editor in bbpress.

    The text is: “CONTENT string (0)”

    How can i remove it?

    Wordpress: 4.9.8
    BbPress: 2.5.14
    Website: https://www.ahoraajedrez.com/foros/foro/ajedrez-de-elite/

    #195351
    Al_ambique
    Participant

    Hello,
    I’d like to share my workaround to fix the following problem:
    After importing all topics and posts and forums and users from my old WebsiteA, I couldn’t see any topics inside my forums on my new WebsiteB. The counts were correct, but I could only see sticky topics inside each forum, nothing else.

    I tried the built-in fixing tools, but that was a BAD IDEA. It broke my site every time I tried it (blank page on front-end without any error). The only way to fix it was to restaure the whole database!

    So I looked at the database and found that a simple info was missing. All topics were set with post_parent = 0, while the corresponding postmeta _bbp_forum_id field was set correctly.
    All that was needed to do is to update this post_parent field by fetching this meta value.
    Here’s my working SQL script (of course do NOT FORGET to save your database first…):

    UPDATE 'wp_posts' 
    SET post_parent = (
    SELECT meta_value 
    FROM 'wp_postmeta' 
    WHERE post_id=ID AND meta_key="_bbp_forum_id") 
    WHERE post_parent = 0;

    I also want to point something VERY annoying when using the WP importer. WordPress asked me to match every single forum user from WebsiteA with the dropdown list of users from WebsiteB, which is very stupid since I had imported all the users. They were all identical.
    It literally took me an hour to select every user on the dropdown menu…
    The user IDs were the same on both websites!! Why not auto-selecting???????

    I hope some dev will see this and fix it somehow, because it sounds like something quite easy to fix 😉
    Have a nice day

    Robin W
    Moderator
Viewing 25 results - 3,376 through 3,400 (of 26,748 total)
Skip to toolbar