Best way to find out if it is their plugin is to deactivate it and do a test post to see if that goes through.
Email is at best a shaky medium, and many things from host provider, server, links, wordpress, plugins and just plain complexity can make something that worked stop. Switch it off and on again can fix quite a lot, so even deactivating a plugin and reactivating it can fix.
good luck !
ok, this theme has annoyed me so much that I have down loaded it.
I then saw that it claims to be a bbpress friendly theme, aghh!!! why not include a fullwidth forum????
so had a little play
on my test site the following works
bbpress.php looks like
<?php get_header(); // Loads the header.php template. ?>
<main>
<?php if ( have_posts() ) : // Checks if any posts were found. ?>
<?php while ( have_posts() ) : // Begins the loop through found posts. ?>
<?php the_post(); // Loads the post data. ?>
<article <?php hybrid_attr( 'post' ); ?>>
<?php if ( is_singular( get_post_type() ) ) : // If viewing a single page. ?>
<header class="entry-header">
<h1 <?php hybrid_attr( 'entry-title' ); ?>><?php single_post_title(); ?></h1>
</header><!-- .entry-header -->
<div <?php hybrid_attr( 'entry-content' ); ?>>
<?php the_content(); ?>
<?php wp_link_pages(); ?>
</div><!-- .entry-content -->
<?php else : // If not viewing a single page. ?>
<header class="entry-header">
<?php the_title( '<h2 ' . hybrid_get_attr( 'entry-title' ) . '><a href="' . get_permalink() . '" rel="bookmark" itemprop="url">', '</a></h2>' ); ?>
</header><!-- .entry-header -->
<div <?php hybrid_attr( 'entry-content' ); ?>>
<?php the_content(); ?>
<?php wp_link_pages(); ?>
</div><!-- .entry-content -->
<?php endif; // End single page check. ?>
</article><!-- .entry -->
<?php endwhile; // End found posts loop. ?>
<?php else : // If no posts were found. ?>
<?php locate_template( array( 'content/error.php' ), true ); // Loads the content/error.php template. ?>
<?php endif; // End check for posts. ?>
</main><!-- #content -->
<footer <?php hybrid_attr( 'footer' ); ?>>
<div class="wrap">
<?php hybrid_get_menu( 'social' ); // Loads the menu/social.php template. ?>
<p class="credit">
<?php printf(
/* Translators: 1 is current year, 2 is site name/link, 3 is WordPress name/link, and 4 is theme name/link. */
__( 'Copyright © %1$s %2$s. Powered by %3$s and %4$s.', 'stargazer' ),
date_i18n( 'Y' ), hybrid_get_site_link(), hybrid_get_wp_link(), hybrid_get_theme_link()
); ?>
</p><!-- .credit -->
</div><!-- .wrap -->
</footer><!-- #footer -->
</div><!-- #container -->
<?php wp_footer(); // WordPress hook for loading JavaScript, toolbar, and other things in the footer. ?>
</body>
</html>
very high chance it will be fine, but risk that your developer will have changed some core files.
Since your trying to learn stuff, then I strongly recommend that you create a test site, which will let you try it there first, but also will teach you loads about wordpress and how it operates, and give you confidence to make other changes in a test area first
https://codex.bbpress.org/creating-a-test-site/
I have permalinks set like this
/%category%/%postname%/
I just installed bbpress and haven’t touched the settings. My forum root looks like
mysite.com/forums and displays the 2 forums I created
Test-1
Test-2
But when I go to test-1 it looks like:
mysite.com/forums/forum/Test-1
I don’t want it to say “forums/forum” just “forums/Test-1”
How can I accomplish this?
this thread discusses
https://bbpress.org/forums/topic/upgrade-bbpress-1-0-2-to-2-1-2/
looks like you need to go via 1.2 but then should just be export/import?
of course back everything up before you start.
Actually if I were doing this I’d do it on a test site first
https://codex.bbpress.org/creating-a-test-site/
and just see if it works !
Can you document as you go, and When you’ve done it, come back and give us how you did it, and I’ll add it to the
https://codex.bbpress.org/import-forums/bbpress-1-x-buddypress-group-forums/
to help someone in future
“well, thatβs life in the world of WordPress, so live with itβ, which is what your first comment conveyed” – yep and it’s what I meant – having coded several plugins, I can with some certainty say that the way you link to wordpress does mean that several people can hook to the same item and affect each other, and no we can’t test all plugins against all other plugins.
But your offer to try and come up with a repeatable problem would be great, and if you can do so I’d be happy to try and look and let you know why a particular plugin is affecting.
However 5 people going to the doctor after having been to the gym doesn’t mean there’s a common problem or that the gym is to blame π
Anyway I look forward to hearing from you when you’ve had a chance to investigate.
@surachar
I deactivated, deleted, reinstalled, and reactivated the Easy WP SMTP plug-in and tested: same result (below.)
OK, but did you just deactivate the plugin, and then test a forum post. I was keen to see if the problem was being caused by bbpress or the plugin.
@nightcoder – you’re issue may or may not be the same. That’s why I’m keen to get surachar
to see if they have the problem without the plugin.
The bit of code you quote is the bit that sets up the variable for the to address, but as far as I can see there’s nothing there that should be causing a problem, it simply strips the http part from the URL as set in wp_options ‘home’.
sorry am busy on a tractor haymaking, so am not on here as much as usual !
I suspect that it is theme related, can you try switching to a default theme such as twentytwelve for a quick test and seeing if the order changes?
Come back and let me know
These issues will occur with different combinations of plugins, and it is nobody’s fault.
and it will never be eliminated.
Wordpress is free open source software. It allows others to hook into it using Filters and actions, as well as using templates and functions. Additionally theme developers can affect the way wordpress functions. This lets lots of other people change how wordpress works and add both functionality and looks.
So if two developers both hook into the same bit of code, the actions of one can alter or even cancel out the other’s code.
With many thousands of plugins it is simply impossible for developers to test to see if their plugin works with every other plugin out there.
bbPress is thoroughly tested with the latest version of WordPress, in combination with all of the wordpress default themes (twentyten, twentyeleven etc.) to ensure it functions. Most bbpress plugin developers will also test against this combination to give a good degree of conformance.
This is the best that you can get.
It is no more the fault of bbpress that it doesn’t work with plugin A, than it is the fault of plugin A that it doesn’t work with bbpress!
Sorry but that is life π
Open source means you get lots of great FREE software but you don’t get an integration guarantee – it’s pretty damn good, but sorry not perfect.
And It’s nobody’s fault !
Cool, added the latest change, you can see where it was and where it moved to π
https://gist.github.com/ntwb/695bc26b44d6458040c7/revisions
And I try to track ‘all the things’ here on bbpress.org, I’m not necessarily able to participate and/or contribute to everything going on here but do typically read every post here on the site, luckily the forums here do not need much moderation, but some day to day maintenance is needed.
Well, not as I expected to be.
On the main forum page, the sidebar and my page menu get pushed down and it’s now showing archive and categories too ( which wasn’t there before ).
Also, the forum is still not full width.
On the topic and other place, it’s the same thing but the forum is full width.
One big problem is, it doesn’t show my old topic although I created a test one.
Interestingly, it still show the 1 post , 2 replies,… but when I click in it, it shows no topic but the link in the address bar was the right title I gave to my test post.
Any thing you guys can make out from that ?
hi there, I am running latest wordpress, buddypress and bbpress. on my registration form I have the standard wordpress details – username, email and password fields – but then I also have the username field for buddypress – in profile base fields which cannot be deleted. how can I delete one of these – or sync them – so that user only has to enter one username and not get confused with which username to use for logging in etc. please – someone I need urgent help on this – have already asked in buddypress forums but no luck yet. pllllleeeeeeaaaaasssseeee.
Latest WP and BBPress versions (just did fresh install / update)
http://www.mvmgw2.com
I am having an issue where the Login Widget is no longer showing the current logged in user’s name. The avatar and log out links are there, but the name has disappeared. Could it have something to do with changing the primary “name” profile field?
Hello Robin,
Thank you for your kind response. I deactivated, deleted, reinstalled, and reactivated the Easy WP SMTP plug-in and tested: same result (below.) The mail is going out, and being received, except that our site name is missing the ‘s’, and so, our host is occasionally not delivering it. I didn’t see any other applicable support threads in the plug-in forum. Any other suggestions, please? Shall I post this to the Easy WP SMTP forum, or is really their issue. It would help if I knew where and how the site address is called.
Thank you!
Sincerely,
Sura
—–
from: SOI-Seattle Kinship <mail@soi-seattle-kinship.org>
to: noreply@oi-seattle-kinship.org
date: Thu, Jul 17, 2014 at 3:29 PM
subject: [SOI-Seattle Kinship] Testing New Notification Plug-in #1
signed-by: soi-seattle-kinship.org
: Important mainly because of the people in the conversation.
Hi guys,
This is my first question about this bbPress, I’m a new developer and I have quite a few difficulties to learn and use this plugin, writing this message to ask about one thing what I need to put on my forum. That is the description below the title of the forum is here:

I could only put it in the forum:

Website: http://test.grupodeartes.com/forums/
Thank you very much, I hope you can help me.
Can you explain what steps you took? It does sound like you did not add the shortcode that Paviel123 spoke of. However, if you followed the same steps and it worked on the test site I am assuming that something more may be going on. I am learning myself but when I had issues some very nice people helped me and I know what it is like to be where you are π
If you can provide some more details and links it would be very helpful
I have the battle site and test. Installed on the test, the forum is working. When moved to the combat, an empty page. Disable plugins, reinstalled. Does not work, no errors. But the page is blank
edit the text, links inside. For example: I would like to edit the:
Most popular topics
Topics with no replies
Topics with most replies
Latest topics
Search Results
and change to:
Most popular topics
Topics with most replies
Latest topics
MyCustomLink
Hi. A couple of updates ago, our Site-Wide Forum began delivering new topic notices and notices to the site admin/s erratically. I have been trying to track down the cause ever since. Our host helped me find undelivered email and we noticed an incorrect listing of the site address (see header below). Will you please tell me how I can correct this, and will you please address this in your next update? The site notifications and BuddyPress Forum notifications seem to be going out fine. Thank you.
Sincerely,
Sura (Webmaster, not a developer – so please explain things π
soi-seattle-kinship.org
WP 3.9.1
Dandelion Theme w/child theme: Sufi Order International v2
bbPress 2.5.4-5380
BuddyPress 2.0.1
Easy WP SMTP 1.0.9
—-
from: SOI-Seattle Kinship <mail@soi-seattle-kinship.org>
to: noreply@oi-seattle-kinship.org
date: Wed, Jul 16, 2014 at 4:21 PM
subject: [SOI-Seattle Kinship] Testing New Notification Plug-in #1
signed-by: soi-seattle-kinship.org
Hey guys, I’ve been looking everywhere for this
I installed bbpress and made a forum ( just testing ).
I want my forum to be full width and without the side bar. Tried the “1 column full width” layout and some custom css.
The best I’ve got is a no-full-width forum WITHOUT side bar in the /forum/ page.
But further than that like /forum/topic/… the side bar reappear.
My site is http://mmo4teens.netai.net/ and my theme is Stargazer Colloquium.
Any help is appreciated.
Thanks in advance.
Ok, maybe the pre v3.0.0 never included ‘topic tags’ so the best solution is to delete or comment out this section in vBulletin3.php
Basically remove the code between lines #293 and #334 in vBulletin3.php bbPress 2.5.4
https://bbpress.trac.wordpress.org/browser/tags/2.5.4/includes/admin/converters/vBulletin3.php#L293
https://bbpress.trac.wordpress.org/browser/tags/2.5.4/includes/admin/converters/vBulletin3.php#L334
I hope to get the updates that I have been doing over the past week and a bit finished by the end of the week and it would be great if I could get a few people to test theme out π
You’ll need to test with the Twenty Fourteen theme and with all your plugins except bbPress disabled as I wrote in my previous post.
Hi all, I think name of the topic can explain the situation I am in. Everything is updated to its latest.
For those who want to see the an example topic that’s affected(Also comments have this):
http://forum.gamesap.az/forums/topic/csgo-yeni-baslayanlar-ucun-qisa-m%C9%99lumat/
I am not a magician with CSS, but when I view the source of page, I see that in that area, I can’t seem to see the beginning og </p> paragraph (closing tag is there)
So I guess the problem is, bbpress is not giving the paragraph a proper starting point.
Have no idea how to fix this, Would be grateful for any help
Hi Stephen,
thanks for the reply. I looked at the trac but it’s not strictly related, since it refers to the spam/trash/admin links on the front end.
What I noticed instead, (and you can test yourself and let me know) is simply as this: in the backend (wordpress admin area) when a topic is in the trashcan, and you click untrash (the same thing you would do with posts, pages, custom post types when you put the in the trashcan) you get the default nonce wordpress error. You simply “CAN’T” untrash something directly inside wordpress.
I was hoping that anyone else could try the same and give me confirmation that the issue exists (in the code i posted I was able to indentify the problem as well)
If you, or anyone else, can confirm there is this issue, I (or you, or whoever wants to) can open a ticket in the trac so it gets fixed asap π
Ok, the code works (just retested it on my site), but the link you supplied is not using it.
are you sure you put
/* =Revisions
βββββββββββββββββββββ */
#bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log,
#bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log,
#bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log {
Display : none !important ;
}
in
wp-content/themes/divi/style.css
Do you have caching software running?