Forum Replies Created
-
In reply to: Hire bbPress Expert / DeveloperIn reply to: Keymaster cannot see pending replies
ok, so can you confirm
users can posts topics and these all work.
when a user posts a reply, you get an email because you are subscribed to the forum, but no reply appears in the forum, and nothing is seen in dashboard>replies.
is the forum new ? has this always been the case? or just started happening?
In reply to: Setting on search function above of the breadcrumb🙂
In reply to: Setting on search function above of the breadcrumbthe page title is a theme display, so you would need to hook to that.
Your theme author might be able to offer either a hook, or tell you what template file is being used for the title.
In reply to: How to troubleshootnot one I’ve come accross.
Next time it happens, try
dashboard>settings>permalinks and just click save, this resets the permalinks.
Might work, might not.
In reply to: Setting on search function above of the breadcrumbtry
bbp_theme_before_forum_title
In reply to: Keymaster cannot see pending repliesthat may be because they are empty, so bbpress doesn’t bother showing as option.
so is this all replies, many replies, some replies, all forums some forums?
In reply to: Setting on search function above of the breadcrumbpossibly
bbp_theme_after_forum_title
and
bbp_template_before_replies_loop
In reply to: Keymaster cannot see pending repliesok, so you are saying that you are receiving an email to say there is a reply – that reply has a link – where does that go – is it to a 404 page ?
and in
dashboard>replies>all replies – there are filters for all, mine, published, drafts, pending and spam and there is nothing in those ?
If a user posts a reply, and then decides to delete it before you see the email, then this could explain the problem.
In reply to: Report a post🙂
In reply to: Phony user registrationsyes, if you’re ok with mysql, then yes.
you’d need to look at usermeta where wp__bbp_topic_count and wp__bbp_reply_count forthat user are nil
In reply to: Keymaster cannot see pending replieswhat bbpress related plugins do you have (if any)
In reply to: If user has X number of posts?so something like
$user_id = get_current_user_id() ; $topic_count = bbp_get_user_topic_count_raw( $user_id); $reply_count = bbp_get_user_reply_count_raw( $user_id); $post_count = (int) $topic_count + $reply_count; if ($post_count > 150) { //show here }
In reply to: Phony user registrationsIn essence you are allowing anyone to register in
dashboard>settings>general
one of the scourges of the internet is the race to get a site listed on page 1 of google – the sites google ranking. One of the parameters google (and other search engines) use is how many times a site is found listed on other websites. There are loads of ‘companies’ that offer to raise your google ranking, and one of the ways they try and do this is to register and add the website to their profile on WordPress sites that allow registration. Sites that allow anyone to register get known, and yes robots are then used to register.
yes, you can go in and delete the bogus users, but you’d need to be satisfied that they have not posted, as otherwise any forum posts by this user might cause the site to error.
you might be better to set the ‘screen options’ in dashboard>users>edit users to 999, and bulk delete a thousand at a time, you can then attribute content or delete it.
for future you might do better to add an approval to registration – there are several – I’ve not used any, as I have a manual registration process, but this one should do what you want
In reply to: No new topic button showingdo you mean activated in settings of say BSP-Style-pack?
In reply to: Notification box selected by defoultif you are using
then
dashboard>settings>bbp style pack>Topic/Reply Form item 6
or if you don’t want style pack, then this does that bit
this small plugin gives forum access to moderators, just install and activate
In reply to: Acess default WP user page@gunivortus – just out of interest, can you post the solution or a link to the solution – doesn’t matter if it is in dutch as many browsers will translate
ok, so do you have a link to an example that works (say in worpress) and one that doesn’t in bbpress?
might be taking out spaces after the $ signs eg
return $ content;
should be
return $content;
In reply to: Spammer still getting in?great – glad you are fixed !!
In reply to: Spammer still getting in?hhmm… not sure how that would prevent the forums being shown
I’d suggest you add that code to
form-topic.php and form-reply.php
probably filter on
add_filter ('bbp_get_reply_content', 'add_image_responsive_class'); add_filter ('bbp_get_topic_content', 'add_image_responsive_class');
In reply to: Spammer still getting in?so what does ‘ I’ve achieved this by editing all of the template files that bbPress has dealing with viewing a reply or being able to post. ‘ mean ?
In reply to: Forum statistics widgetgreat – glad you are fixed !