Forum Replies Created
-
In reply to: Page not found 404
Can you both list all the plugins you have, and which theme you’re using ?
Great response form S2member team !
I’m just a humble user not a dev, but hopefully netweb or JJJ will be in contact with the S2 guys.
For those that have been bitten by this, I know how painful it is, in the early days I just upgraded plugins and wordpress in the belief that they would work until one day my site broke, and I was in panic for 8 hours when I had least time to fix it.
When WordPress announced auto upgrade, I was very suspicious that anyone could release software confident that it would not screw up any of the several thousand plugins based on how it worked!
So the following for those bitten, and others who do not want to be bitten going forward !
If you are not happy for your site to be down for 24+ hours then :
1. Turn off wordpress auto update !
2. Create a test site https://codex.bbpress.org/creating-a-test-site/
yes that takes time, but the comfort of not doing stuff live is fantastic !
3. Don’t do upgrades of wordpress/plugins for the first week (UNLESS they are deemed critical), let others find the faults – yes I know that is bad to say, and if no one upgraded we’d never make progress, and I write plugins that I need people to upgrade to, etc. etc., but many people’s site’s aren’t critical, and if your is, don’t be leading the charge !
4. Check the support forum for the upgrade
for wordpress https://wordpress.org/support/forum/how-to-and-troubleshooting
or your plugins support page
you’ll soon find out if there are issues
5. Upgrade your test site first, the spend some time checking all the critical bits
6. When you’re happy that your test site works, then make the move in liveI really feel for those who have been sent into panic, but maybe the above will help for next time
@rafaeldejongh I think you need to create a test site :
https://codex.bbpress.org/creating-a-test-site/
This will let you work out what’s woring in comfort !
In reply to: How to place Topic ABOVE replies?@ingenuity – thanks for posting that it will help anyone searching the forums at some future date 🙂
In reply to: How to place Topic ABOVE replies?Always show lead Topic YES
Shows the original post at the top of each pageThis is not a bbpress forum setting that I’ve seen, it is one added by a plugin? and where is it shown?
In reply to: How to place Topic ABOVE replies?hmm, strongly suspect that the content block is your issue
come back when you’ve tried a default theme, so we can concentrate on headway.
I presume you’ve posted a query on their support forum as well?
In reply to: Forums not showing on new custom themegreat – glad you’re fixed
In reply to: How to reset loop? 2 loops on 1 pagebbp_has_topics has a ‘reset’ in it, it executes
new WP_Query( $r )what is the loop in your sidebar?
In reply to: Getting rid of "Replacement Character" symbolsI can see lots of ‘?’ – is this your issue??
It could be a theme or plugin 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, as a test switch to a default theme such as twentytwelve, and see if this fixes.
come back with the results !
In reply to: login button sizeno problem !
In reply to: Login widget login button sizegreat – glad you’re fixed !
In reply to: Your "must-install" plugins?Lots you could choose from
I like
bbp last post – changes freshness to last posted date
bbp private groups -sets up private groups
bbp profile information – adds up top 4 fields to profile
bbp topic count – displays topic and reply counts under the avatars(I would like the above, I wrote them !)
as well as
bbpress notify – advises admin of new posts
bbpress WP tweaks – adds forum specific sidebar
bbp signature – adds a signature box
wp modal login – addas a modal login !In reply to: pagination not working – one long scrolling page?It could be a theme or plugin 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, as a test switch to a default theme such as twentytwelve, and see if this fixes.
this box has 3 classes allocated
#link-modal-title
#link-selector
#submitboxso something like
#link-modal-title, #link-selector, #submitbox { Background #21201f !important ; }added to your style.css should fix it.
Come back if that is not clear.
In reply to: abbrv page title in breadcrumbsgreat – glad you’re fixed
In reply to: Google Adwords crawler error in private forumThats’ sort of what I’d expect, the content is private 🙂
In reply to: How to place Topic ABOVE replies?Has this just started happening?
It could be a theme or plugin 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, as a test switch to a default theme such as twentytwelve, and see if this fixes.
I suspect it is your theme, but carry out the tests above, and then come back !
In reply to: login button sizethe line for the button is
<button type="submit" name="user-submit" id="user-submit" tabindex="<?php bbp_tab_index(); ?>" class="button submit user-submit"><?php _e( 'Log In', 'bbpress' ); ?></button>so class is “button submit user-submit”
In reply to: taking over a private forum – new Super AdminNo problem – glad you’re fixed !
In reply to: New replies firstNo sorry, the shortcode uses it’s own method, and without a re-write there’s no quick way to fix this.
In reply to: remove anonymous website fieldTry (haven’t tested)
function remove_website ($r) { $r['bbp_anonymous_website'] = false; return $r ; } add_filter( ‘bbp_pre_anonymous_post_author_website’, ‘remove_website’ );or
function remove_website ($r) { $r['bbp_anonymous_website'] = false; return $r['bbp_anonymous_website'] ; } add_filter( ‘bbp_pre_anonymous_post_author_website’, ‘remove_website’ );sorry, I completely misread what marximusmg was asking, and thought he wanted to replace the whole reply form area with a button that would fire up a reply area.
Now I understand what marximusmg is after, the solution is
add_filter( 'bbp_get_the_content', 'amend_reply', 10, 3); Function amend_reply ($output, $args, $post_content) { if ($args['context'] == 'reply' && $post_content == '') $output=str_replace('></textarea>', 'placeholder="Reply..." ></textarea>',$output) ; return $output ; }In reply to: Hide WordPress User Bar When Logged InGreat – glad you’re fixed !
In reply to: abbrv page title in breadcrumbsThis should do it
add_filter( 'bbp_get_breadcrumb', 'change_breadcrumb_text' ); Function change_breadcrumb_text ($trail) { $trail = str_replace ('No Labels Community Forum','N L C F',$trail) ; return $trail ; }In reply to: Can not see forumsgreat – glad you’re fixed !