Forum Replies Created
-
In reply to: Forums footer is missing
I wasn’t worried about what was showing in the body, I was only interested in whether the widget in the footer disappeared.
Can you confirm that it does with both the codes you tried?
In reply to: Edit bbress login formsorry but you’ll need to post existing and new again as we can’t see them
In reply to: Spacing after Forum titleglad you’re fixed !
In reply to: Forums footer is missingok, I can now see the issue, and have looked at both a forum page and a non forum page.
From the web browser tools available to me, I can’t immediately see what the core issue is.
as an experiment can you try on of the other bbpress shortcodes eg `[bbp-topic-index]
`to see if this is bbpress or just that shortcode
In reply to: Popular Topics on Sidebar By Specific Forumyou’re welcome
In reply to: Stuck at Join section on custom importlong time since I’ve done one, but here are my detailed notes from a custom. I haven’t re-read, but I do talk about this in part 3
https://bbpress.org/forums/topic/documented-import-from-snitz-access-database/
Hopefully it will help
In reply to: Forums footer is missingok, I can see the footers and adverts and have a brittany ferries ad where yu say there is stuff missing, so I can’t see what you think is missing. Just giving me a blank space doesn’t help – I need a shot of how it should look
In reply to: What is Username displayed by default?@netweb On my test site it does firstname/lastname. Am I going mad?
In reply to: What is Username displayed by default?I’m about to add this feature to my style pack !
In reply to: bbpress breaks links in JS Support Ticket Pluginand have you logged a ticket with their suppprt?
In reply to: bbpress breaks links in JS Support Ticket PluginIn reply to: Forums footer is missingok, I can se a page with a footer or two.
But I have no idea what I am expecting to see, so can you help with
‘on this link you can see xx, but on this link it is missing.’
In reply to: bbpress breaks links in JS Support Ticket Pluginsuggest you turn on debugging and see what come up
In reply to: Popular Topics on Sidebar By Specific Forumload up my stylepack plugin and use latest activity widget
In reply to: Multiple Databases one one sitesupport for that plugin looks non-existent, and there are doubts on it working with 4.4.x
In reply to: Auto Subscribe after ReplyGreat – glad you’re fixed !
suspect this is what you are after – add it to your functions page in your child theme
add_filter( 'register_url', 'my_register_page' ); function my_register_page( $register_url ) { return home_url( '/register/' ); }https://codex.bbpress.org/functions-files-and-child-themes-explained/
In reply to: Multiple Databases one one siteok, given your answer, sorry but I don’t think you are going to achieve this.
To do what you want would require a level of wordpress and PHP knowledge that you don’t have – don’t take this as a criticism, I know virtually nothing of say Joomla, or deep sea trawling, or brain surgery. That doesn’t make me stupid, I just don’t have the knowledge on these things to be able to do these things. Nor could someone talk me through this in a forum.
I’d suggest you hire someone to achieve what you want.
In reply to: Multiple Databases one one sitenot really a bbpress question, but this should help – in effect you do each query/set with the connection details.
$user="xxx"; $password="yyy"; $database="zzz"; $host="aaa"; $con=mysqli_connect($host,$user,$password,$database); $query="select user_email from wp_users where ID=".$id ; $result = mysqli_query($con,$query) or die("failed to get result1");or
to update
$update= "UPDATE wp_posts SET post_content =\"".$post2."\" WHERE ID=".$id2 ; mysqli_query($con,$update) ;In reply to: Auto Subscribe after ReplyIn reply to: Setting up a Simple(r) Single-Page Forumok I wouldn’t worry about the structure, just create the forums and use multiple shortcodes to build your page
eg
[bbp-single-forum id=3] [bbp-single-forum id=6] [bbp-single-forum id=8]That way you control the flow
I’d then switch off breadcrumbs and use the sidebar as navigation.
In reply to: bbpress ignores custom CSScan you give us a url to a sample page
In reply to: child theme ignored after bbPress installok, suggest you follow Pascal’s thoughts
In reply to: child theme ignored after bbPress installNot one I’ve heard of before
So if you deactivate bbpress, do the child theme styles come back?
In reply to: Hide private forum topics from public search?my plugin creates private groups and prevents search