Forum Replies Created
-
In reply to: Login Leads Users To URL For Admin Login
ok, so where are the registering ? ie from what part of your site – I need to understand what is sening the ‘activated’ email.
the incorrect login is fixed by :
once activated go to
dashboard>settings>bbp style pack>Login Failures
In reply to: Change permalinks on bbPressIn reply to: URL/Permalinks on topicssee Milan’s response above
In reply to: Move “New Topic” element to the top of the page.are you able to use ftp?
If so, I can give you details on how to amend a template.
In reply to: Title “Archives: Forum” – change to read “Forums”?great – glad you are fixed !!
In reply to: Title “Archives: Forum” – change to read “Forums”?that is a question – you should only have it once, either in your theme function file or in code snippets not in both !
In reply to: Title “Archives: Forum” – change to read “Forums”?so have you got this is your functions files as well ?
In reply to: Login Leads Users To URL For Admin Loginthere is no separate bbpress login. If you login using WordPress on first login bbpress will allocate the role that you have set in
dashboard>settings>forums>roles.
so bbpress does not use a url for login.
so when you say ‘ However, bbpress is using this url for members to login. ‘ where are you seeing this ?
In reply to: How to find if um on a topic pageViewing a single topic
if (bbp_is_single_topic()) {...
and orCheck if current page is a bbPress topic
bbp_is_topic()and also
Check if we are viewing a topic archive.
bbp_is_topic_archive()and
Check if current page is a topic edit page
bbp_is_topic_edit()In reply to: How do I stop spam registrationsand this is also a useful discussion
How to Stop WordPress Registration Spam (Plugins and Tactics)
In reply to: How do I stop spam registrationsnot tested (I manually approve new users, but that is just because of the type of sites I run) but this might help
In reply to: Login Leads Users To URL For Admin Loginbbpress just uses WordPress login, so if you’ve changed the url, just use any WordPress login and ignore the bbpress one.
In reply to: Change font family in topic/reply editorIn reply to: I want to get the parent forum name/ID of any topicok, without getting heavily involved in coding a solution for you (which is my paid day job 🙂 ) I guess that you have hooked to ‘template redirect’ which fires on everypage, so when WordPress displays the test-page it looks again for a value of topic_id, which on the test page does not exist, so returns zero.
if your code is working in that it redirects to test page, then you could try appending the topic id and picking that up in $_REQUEST
eg (untested)
wp_redirect('/test-page/?topic_id='.bbp_get_topic_id());and then on test page use the code
if (isset($_REQUEST['topic_id'])) $topic_id = $_REQUEST('topic_id') ;In reply to: bbpress blockquote text color – how to change?ok, !important stops later css overwriting it, so it was a load order issue.
and yes style pack is my plugin 🙂In reply to: I want to get the parent forum name/ID of any topicyou’ll need to give me the context – ie what are you trying to do, and what code do you have so far
In reply to: bbpress blockquote text color – how to change?my firewall software doesn’t like your site
try
#bbpress-forums blockquote { color: blue !important; }In reply to: bbpress blockquote text color – how to change?nope, does the link in my post above work for you ?
In reply to: bbpress blockquote text color – how to change?you link comes up with ‘can’t reach that page’ – even when I just try the site https://dungeonlair.com/
In reply to: bbpress blockquote text color – how to change?suspect it requires me to be logged in ?
In reply to: bbpress blockquote text color – how to change?would need a link to an example on your site
In reply to: Subscribe All bbPress Usersgreat – glad you are fixed
In reply to: Subscribe All bbPress Userseasiest way is to use
In reply to: I want to get the parent forum name/ID of any topicbbp_get_topic_forum_id( $topic_id) ;In reply to: bbpress blockquote text color – how to change?put this in the custom css part of your theme
blockquote { color: blue; }