Forum Replies Created
-
In reply to: Image preview from URL pasted within bbpress posts?
this site only does this for the wordpress and bbpress sites.
I’ll take a look at the plugin above soon, but tied up with other stuff at the moment
In reply to: Comments BlacklistNot sure why it does not for an edited post.
In reply to: Comments Blacklistok, can you check if this happens with that word in a NEW post.
I just want to understand if having blacklisted a post, it is having trouble reassessing it, or the issue is more core
In reply to: Comments Blacklisthmm…
can you post the exact error message you are getting
In reply to: 100 is limit for email notificationsglad you are fixed, but you have a tough ISP !!
In reply to: Comments Blacklistare you page caching ?
In reply to: Sort Topics Column By Number of Likes (Favorites)not an easy option.
yes favorites are stored against a user.
This gives the difficulty that you either:
a) count favorites on then fly – ie on every page load you would cycle through each user and log the topics they have favorited and count them into an array – this will slow the site and it has to happen on every page load. you’d then store these into post meta.
b) create some code that will count these using cron every so often, and update post meta
c) link to the favorite button. So it would need to add when favorited and deduct when unfavorited. then you would need to allow for topics being trashed etc.a) is the easiest, but still a chunk of code and has site implications
b) is probably the most practical, but will only be as current as you run cron, so could be say an hour out of date
c) is a real bunch of code I suspect, but would be the best solution on a big website.In reply to: How to let Authors delete their own posts?glad it’s working – I’ll take a look later 🙂
In reply to: How do I change the breadcrumb?put this in your child theme’s functions file
function rew_breadcrumbs ($args) { $args['home_text'] = 'your new words here'; return $args ; } add_filter('bbp_before_get_breadcrumb_parse_args', 'rew_breadcrumbs');or use
once activated go to
dashboard>settings>bbp style pack>Breadcrumbs
In reply to: Forum Messed up…hmm…looks like the forums are displaying within a ccss element called title-box
Otherwise not sure I can help.
It is theme/css related
In reply to: 100 is limit for email notificationsIn reply to: Forum Role – Spectatorgreat – glad you are fixed
In reply to: How to let Authors delete their own posts?insults – yeh that’ll work 🙂
In reply to: Forum Role – Spectatorthat’s what spectator should do.
Suggest you set up a test user and check that that works.
In reply to: Cannot edit replies in the back endok, I think your site has issues.
In reply to: Breadcrumbit would be good to post the solution to help others seeing this thread later 🙂
In reply to: Newby Questionput this in your theme’s custom css area
.bbp-author-ip { display : none !important ; }In reply to: We need your advice ASAP-bbPress very slowthat measures site loading, not server performance as such, eg it doesn’t test dadatabase writes.
cache will not affect non cache actions such as post submission
I’d suggest you talk to your host providers.
In reply to: Newby Questionip address only shows for keymasters
In reply to: ERROR: Slow down; you move too fast.empty the setting and the check should not happen
In reply to: We need your advice ASAP-bbPress very slownot really bbpress related – This is server/theme/other plugins issue.
My test site which is full of stuff takes 1-2 seconds for a post, it is on a shared server, so depends on what else is happening on that server with other websites.
I would ask that why your forum is so dependant on the need for lightening speed of posting, is the content really that boring ? Few users worry about posting speed, as longs as the site displays posted stuff in good speed:-)
not really bbpress related – This is server/theme/other plugins issue.
My test site which is full of stuff takes 1-2 seconds for a post, it is on a shared server, so depends on what else is happening on that server with other websites.
I would ask that why your forum is so dependant on the need for lightening speed of posting, is the content really that boring ? Few users worry about posting speed, as longs as the site displays posted stuff in good speed:-)
In reply to: Newby QuestionIn reply to: Cannot edit replies in the back endok, sorry nothing else I can suggest
In reply to: Cannot edit replies in the back endthe link all looks good
couple of other suggestions
1. This could be an issue with your rewrite rules. To fix this try resetting your permalinks. In your WordPress Administration Screens navigate to Settings->Permalinks, select a different permalink structure and save. Then select your preferred permalink structure and save again.
2. A reinstall of bbpress. You won’t lose any data if you decactivate and then delete the plugin.