Forum Replies Created
-
In reply to: how to show all forums list in widget
great – glad you are fixed !
In reply to: Forums / Topics not showingIt 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 twentyfifteen, and see if this fixes.
Then come back
In reply to: Forums / Topics not showing on sideCan you type a longer sentence explaining what your issue is
In reply to: how to show all forums list in widgetput this in your child theme’s functions file, and make the number bigger than the number of forums you have
update_option ('_bbp_forums_per_page', 200) ;In reply to: Plugin Not Functioning After Theme Updatetry switching themes to see if it us definitely the latest update, and then contact the theme author
In reply to: Plugin Not Functioning After Theme UpdateThis 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 original permalink structure and save again.
In reply to: Style question differently from repliesI think you are now into custom web design !
I’ll do the following for you, but now you are talking abut amending the tpoics plugin, of which I have no coding knowledge
to get rid of the line below put this in your css
.bbp-footer.last-child { display: none; }In reply to: not receiving emails when users post messagesusers can unsubscribe from a forum, which unsubscribes them from new topic in that forum.
You will need to check that this is what you want – I simply build plugins, I don’t do law !
In reply to: not receiving emails when users post messagesdownload the plugin .zip to your pc
then go to
dashboard>plugins>add new>upload plugin and follow the instructions to upload and activate
great – glad you are fixed, and thanks for posting the solution, which will help anyone searching in the future
In reply to: Search Results Not WorkingIt 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 twentyfifteen, and see if this fixes.
Then come back
In reply to: Style question differently from repliesok, on font/style that link doesn’t have a reply – can you create one so that I can see the issue.
on the topic/reply order – try this plugin – I haven’t used it but it seems to do what you want !
ok, I’d try reaching out to the bones theme support team, as it looks like an issue with their core theme
In reply to: Forum login link appear only for registered usersno problem, we all forget stuff ! Glad you’re fixed !
In reply to: The Forum root not showingcan you let me know
in Dashboard>settings>forums1. what the setting for ‘forum root should show’ is
2. what the settings for ‘single forum slugs’ isin
Dashboard>settings>permalinks
3. what the setting for common settings is
In
Dashboard>settings>pages>edit forums page>right hand side ‘page attributes’
4. what the setting for template is
In reply to: Style question differently from repliesNo problem ! Do come back if you need further help!
In reply to: Cant reply to post in Google Chromesorry, can you just confirm that you are allowing anonymous posting?
In reply to: Multiple Forums – Specific titles?2. Changing the titles
The part that says ‘forum’ is harder – this is part of the template, so different title would require recoding that template. If you are up with changing php files, I’ll look at how easy that is
However I suspect you have dome that layout using shortcodes? If so then you could just put a header in your page for each – not as neat but perfectly functional. If not let me know how you have done the layout.
In reply to: Multiple Forums – Specific titles?1. Removing the breadcrumbs
if you are fine with code then :
if not then use my style pack plugin to turn them off
@nik_s which theme are you using?
ok, so something is turning it off.
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 twentyfifteen, and see if this fixes.
Then come back
so do you allow anonymous posting?
In reply to: BBpress lost password form not showing messageyes I agree that would be better
If you know how to add code to your childtheme functions file, then
1. create a page called something like ‘Password Reset’ and put in the content the message you would like to display
Make a note of the url of this
2. Put this code into your functions file
add_action ('bbp_get_wp_login_action', 'rew_lost_pass', 20, 3) ; function rew_lost_pass ($login_url, $r, $args) { //bail if this is not a lostpassword if ($r['action'] != 'lostpassword' ) { return apply_filters( 'bsp_lost_pass1', $login_url, $r, $args ); } //so this is lost password so go to lost password login page $login_url = 'http://mysite.com/password_reset/' ; //$login_url = $r['context'] ; return apply_filters( 'bsp_lost_pass2', $login_url, $r, $args );and change the line
$login_url = 'http://mysite.com/password_reset/' ;to whatever url you had in 1. above
In reply to: not receiving emails when users post messagestry adding
it works with postname
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 twentyfifteen, and see if this fixes.
Then come back