Forum Replies Created
-
In reply to: Removing date stamp
interesting – I think another theme or plugin may be overwriting.
suggest you check that your theme doesn’t have a ‘bbpress’ directory with templates in it, or that another plugin is not doing that.
In reply to: Import works but no posts showndo you still have this problem?
In reply to: Error importing Vanilla forum databasethis thread suggests using version 2.6
try 2.6Rc3
In reply to: Removing date stampcan you describe what you mean by the ‘main topic description’, either by actions (go there click this and it says…) or by screenshot
In reply to: Pagination Broken Links 404ok, I’ve got the login information and looked at the issue.
On my test site, I can replicate a page with
[bbp-topic-index] [bbp-forum-index] [bbp-topic-form]and have no problem in pagination. page 2 comes up as
http://mysite.com/forums/page/2/
This is with a twentyseventen clean theme.
In reply to: Pagination Broken Links 404contact me via my website contact
In reply to: Removing date stampI wrote a small plugin a while ago that takes dates out of bbpress, including the columns
Give this a try
In reply to: Pagination Broken Links 404ok, just before I dive into asking database Q’s –
1. can you confirm that this is the forum index page
2. do you have a page with [bbp-forum-index] in it, or do you just use a url to access
3. If you don’t have a page – can you create one and confirm the problem still exists
4. if you use a url, what is the root of your forums eg http://www.mysite.com/forums
4. Can you say how many categories/forums you have on the index page, and how many are showing on each page?thanks
In reply to: Pagination Broken Links 404Thanks for that.
The blogs per page should not affect the number of forums shown. This is set to 50 in bbpress unless changed by code, which would either be code you have done (and would know about), code from a plugin (but you have disabled and checked these) or your theme (which again you have checked).
I’m not sure what else would be doing this
Do you know how to access the database and look at items in it?
In reply to: Pagination Broken Links 404sorry, was trying to answer a few quick questions before evening meal, and didn’t read your original post properly.
So with ‘blog pages to show at most’ the pagination works with page/2 page/3 etc?
In reply to: Pagination Broken Links 404try
dashboard>settings>permalinks and just click save – this resets the links and may fix
In reply to: export all forum entriesdashboard>tools>export, but depends on what you want to end up with
In reply to: Can’t upload avatar image under 451pxgreat – no problem. Don’t worry about needing to delete this.
In reply to: Can’t upload avatar image under 451pxsince you are uploading avatars, and this is not a bbpress function (bbpress uses gravatar) – I think this is further plugin issue – probably GD.
In reply to: Prefix in the topic namegreat – glad you are fixed !!
In reply to: Prefix in the topic nameok – but something is setting this, and it is related to your live site but not your local site.
can you/have you create several topics and see if it does it each time?
In reply to: Prefix in the topic namesomething is adding ‘teste’ I suggest you look for it.
Copy the theme to your pc, and use the PC to look for the word
In reply to: Hiding bbPress topics from logged out users@zopfan – this code may be useful
//redirect user to log in page if accessing forum from external link add_action( 'template_redirect', 'forum_redirect_from_external_link' ); function forum_redirect_from_external_link() { $actual_link = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; $actual_link = explode('/',$actual_link); if($actual_link[3]=="forums" && !is_user_logged_in() ) { wp_redirect( home_url('your-forum-log-in-page-here') ); exit; } }In reply to: Hiding bbPress topics from logged out usersThere is a plugin that does private groups – hiding anything and everything as needed, with controls on who can see and who can post and when.
In reply to: disabling anonymous user info remembertested !
In reply to: Closed topicsand look at the topic permissions
This will allow you to set users to be able to create topics, but not reply
In reply to: Sidebar widget text issues.great – glad you are fixed !
In reply to: Sidebar widget text issues.if you mean the login , then put this into the custom css of your theme
#sidebar .bbp-login-form label { width: 120px !important; }In reply to: Admin / Mod access to forum root?not totally sure if this will help but
In reply to: White screen of death when deactivate bbpressno problem – glad you are fixed