Forum Replies Created
-
In reply to: Forums footer is missing
ok, 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
In reply to: Latest Topic Widget With THUMBNAILS plzok, so as I understand it
fro each topic/reply, you want the widget to search for then first video/picture within that topic or reply, and show that as a thumbnail – is that correct?
If so I know of nothing that would do that, and it would be quite a lot of code to create it.
In reply to: Page can’t be displayedThanks for posting back – really appreciate it, both as it helps us understand possible solutions, and helps others reading previous threads.
Pleased that you are fixed.
Thanks again
In reply to: BuddyPress + bbPress breaks bbPress search widgetIt 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: Plugins for easy thread creation?my style pack will put a link on the forum top
In reply to: sidebar not automatically showing on new user Topicsok that’s definitely a template for a full screen, the earlier one is for a page with sidebar.
The problem is that your theme is doing stuff I have no idea about.
Suggest you raise it with then theme author
In reply to: Mobile – avatar overlapping topic title!link to your site please
In reply to: sidebar not automatically showing on new user TopicsThe “blank space” where it goes is still there, it just does not display.
Great – that was the bit of information I was after.
Ok, so the code above is from your page.php file saved as bbpress.php in your theme – yes?
If so then try changing<?php generated_dynamic_sidebar(); ?>
to
<?php get_sidebar(); ?>
This may not work, I’m just guessing at how your theme is designed !
In reply to: sidebar not automatically showing on new user Topicsso is the content showing full page, or is just the sidebar missing?
In reply to: New topic from Index, Redirect to loginThanks, That’s my plugin – I’ll respond on the plugin page
In reply to: participant reply or topic confirmsorry still don’t understand.
Have you done
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
In reply to: Mobile – avatar overlapping topic title!setting top to zero fixes that !
#bbpress-forums div.bbp-topic-author img.avatar, #bbpress-forums div.bbp-reply-author img.avatar { position: relative ; top : 0px ; }