Forum Replies Created
-
In reply to: Description under title forum
ok, nit sure exactly what was happening , as these lines are already in the default loop-single-forum.php, but glad you’re fixed
In reply to: Different Sidebar for the Forumsthe link to your site no longer works fro me – so I can’t see the issue
In reply to: Sidebar reappear in topic and topic/looks ok to me now – are you fixed?
In reply to: Description under title forumyou should be able to simply add your description to the forum content, this should the show
ie
dashboard>forums>all forums
edit the forum you wish and put the description in the content
In reply to: Sidebar reappear in topic and topic/ok, so in your PC create a file called bbpress.php
(you can use notepad for this)
then dump this code into it
<?php /** * bbPress - Forum Archive * * @package bbPress * @subpackage Theme */ get_header(); ?> <?php do_action( 'bbp_before_main_content' ); ?> <?php do_action( 'bbp_template_notices' ); ?> <div id="forum-front" class="bbp-forum-front"> <h1 class="entry-title"><?php bbp_forum_archive_title(); ?></h1> <div class="entry-content"> <?php bbp_get_template_part( 'content', 'archive-forum' ); ?> </div> </div><!-- #forum-front --> <?php do_action( 'bbp_after_main_content' ); ?> <?php get_sidebar(); ?> <?php get_footer(); ?>
save it and using ftp copy it to get
wp-content/themes/%yourthemename%/
where %yourthemename% is the name of your theme
so you end up with
wp-content/themes/%yourthemename%/bbpress.php
bbpress will then use this template
Come back and let us know how you get on !
In reply to: Users Can't Loginyou say “can no longer login”
when did this happen?
How long have they been able to login?
what has changed in between eg theme or plugin upgradesThere will be a cause, and it will be a change, either that you have done manually or some software has done automatically, you just need to work out what.
In reply to: Different Sidebar for the Forumsbbpress will use the default page template for the main index rather than the specific page template set in the page – so your setting in the forum page won’t apply.
There are several ways around this, but as your plugin is a paid one, I can’t see the code to recommend the best solution.
So first off I’d post a query onto their support site
they probably have come across bbpress before and will know the answer. You could tell them that bbpress uses ‘is_bbpress()’ to see if it is a bbpress page, that might help them.
I suspect your issue is with Easy WP SMTP 1.0.9
there are a couple of threads on their support site about needing to change/resave settings after the upgrade to 1.0.8 that might apply to you
https://wordpress.org/support/plugin/easy-wp-smtp
and go to support
1. bbpress plugins add exactly as normal wordpress plugins
Dashboard>plugins
Bbpress will try and use your theme, you may want to visit the set up guides
2. depending on your theme, you should see the ability to add a topic at the end of each forum.
You can add a ‘topic’ add in your sidebar using the text widget and putting
<a href="/add-new-topic/">Create a new topic</a>
in the text
In reply to: Sidebar reappear in topic and topic/In reply to: user profile link giving a 404 errorcan you post a link to an example?
In reply to: WordPress and bbpress searchgreat – glad you’re fixed !
In reply to: bbPress redirects users when logged in?great – glad you’re fixed, and thanks for the info, it will help someone in future 🙂
In reply to: customizing bbpress admin linkskeep going, it’s fun seeing what you are doing !!
In reply to: Forum subscription not sending emailsgreat – glad you’re fixed
In reply to: Topic text first paragraph has smaller font sizeSorry, but Chrome look fine on my PC as well.
I cannot replicate your issue !
In reply to: Topic text first paragraph has smaller font sizeIn reply to: Categories returning 404sok lets start by seeing if this is a plugin or theme 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, switch to a default theme such as twentytwelve, and see if this fixes.
In reply to: Favorites and subscription countwhat are you planning to count, topics, forums or both?
and if you count a forum as subscribed, do you want to count all the topics within that forum as subscribed?
the list of forums/topics subscribed to is held in usermeta under WP__bbp_subscriptions and an example would look like
5682,13255,13098,13394,13456,13497,13550,13575,13636,13652,13669,13705,13750,13769,13620,14017,14222,14375,14469
so it would count a forum and a topic each as 1.
you could add a check to see which were topics and which forums and display separately.
You’d access it using a function like
$user_id = wp_get_current_user()->ID; $check=get_user_meta( $user_id, 'WP__bbp_subscriptions' ,false); some if statement here in case it's blank then set a counter to zero foreach ( $check as $count ) { increment the counter in here maybe one count if it's a topic and another if its a reply? } then carry on to a display
Favorites are held in ‘WP__bbp_favorites’
If you want some code to display the results, look at my topic count plugin
https://wordpress.org/plugins/bbp-topic-count/
Hope that’s sufficient to get you going to a solution, come back if you need more help
In reply to: bbpress SQL InjectionYou need to start working your way through these resources:
https://codex.wordpress.org/FAQ_My_site_was_hacked
https://wordpress.org/support/topic/268083#post-1065779
http://ottopress.com/2009/hacked-wordpress-backdoors/Anything less will probably result in the hacker walking straight back into your site again.
Additional Resources:
Hardening WordPress
http://sitecheck.sucuri.net/scanner/
http://www.unmaskparasites.com/
http://blog.sucuri.net/2012/03/wordpress-understanding-its-true-vulnerability.htmlIn reply to: Topic text first paragraph has smaller font sizeHave you fixed yourself? I cannot see anything wrong, the text in both topics and replies is all the same size.
In reply to: Deleting Log of editsgreat – glad you’re fixed !
can you come back and post your code for 2
that’s why I need your to post your code, so that I can work out where it’s wrong 🙂
In reply to: WordPress and bbpress searchThe issue is getting wordpress search to display the results in a meaningful way (ie bpress style)
This plugin which is old claims to do this, but there is a warning that it shows private forum results, is unless all your forums are open I wouldn’t use it.
https://wordpress.org/plugins/search-bbpress/
Try it and see if it works
In reply to: bbPress redirects users when logged in?ok, thanks for that, so if I understand correctly, you were using the buddypress login widget in the sidebar and that wasn’t working and are now using the bbpress login widget in the sidebar, and it now works.
Is that correct and you are now fixed ?