Search Results for '\"wordpress\"'
-
Search Results
-
Hi all,
New install: WordPress 3.5.1 MU joint Network with x7 Mapped domains
New install: Buddypress 1.6.4 Running all sites on Dynamix WP/BP theme
New install: BBPress 2.2.4 With Network & Group forums configured.
Buddypress has been installed ‘without’ the discussion forums tab enabled.
<code>define( ‘BP_ENABLE_MULTIBLOG’, true );</code> Is located in wp-config.
Other plugins installed all network enabled: WP SEO (Yoast), WPMU Domain Mapping, Ultimate coming soon page & Join my multisite.
Followed all Buddypress and BBPress latest instructions to the letter!
I can create new forums, and group forums with no problems. All forums and groups are traceable throughout all MU sites with no problems and I have used bp-custom-php with;
<code><?php
/* This fixes the MULTIBLOG avatar problem */
function nfm_bp_avtar_upload_path_correct($path){
if ( bp_core_is_multisite() ){
// $path = ABSPATH . get_blog_option( BP_ROOT_BLOG, ‘upload_path’ );
$path = ABSPATH . ‘wp-content/uploads/’;
}
return $path;
}
add_filter(‘bp_core_avatar_upload_path’, ‘nfm_bp_avtar_upload_path_correct’, 1);
function nfm_bp_avatar_upload_url_correct($url){
if ( bp_core_is_multisite() ){
$url = get_blog_option( BP_ROOT_BLOG, ‘siteurl’ ) . “/wp-content/uploads”;
}
return $url;
}
add_filter(‘bp_core_avatar_url’, ‘nfm_bp_avatar_upload_url_correct’, 1);
?></code>
To carry user and group avatars throughout all networks.
Problem being, once a forum post is created I’ as keymaster cannot Edit, Close, Stick, Merge Trash or Spam “Any” forum posts. The page just refreshes without any actions taking place.
I have read two other posts relating to this similar/same issue, one from over a year ago, and one from as little as two weeks ago, both without solution, one without any replies.
Further to the above, I have noted that BBPress is not sending emails out on replies to forum posts with the Notify me of follow-up replies via email tab checked.
I sincerely hope someone may be able to help shed some light on this issue as it is really going to render my project useless if I can’t manage to resolve it.
I’m happy to offer a bbpress admin, administrative access to my site if they feel they may be able to assist in some way.
Here’s hoping .. !
Regards,
Sped
Hi!
I’ve make a plugin to work in wordpress comments form for guest but it don’t work with bbpress.
It use this hook:
add_filter(‘pre_comment_on_post’, ‘wp_stopforumspam_check_query’);
How i can make compatible also with bbpress? 😐
Hi there, Am trying to add a captcha plugin for my forum registration. The bbpress forum has been installed as a plugin in my wordpress site.
The problem I’m getting is where to add the captcha plugin? I can only find it if it’s installed in the main wordpress plugin directory, however I then can’t get to settings to enter the keys etc and bbpress doesn’t seem to see its there.
any advice? Thanks in advance
I run a WordPress 3.5.1 Multisite and when i enable bbpress pluigin on my parent site the server goes crazy to over 100 (usually its below 2).
What could be the reason for this?
http://geek.hr is the website.
Thank you
I’m testing bbPost, so obviously I do not know it! I made a tryal here: http://www.coalize.it/wordpress2/
In the sidebar on the right, one can see a link to the forum(s): when you click it not being a User you may read the simple test message of the Forum, while if you enter as a User (via facebook, or Google), you can see nothing more! No message, no Forum, nothing.
Strange enough, the title of the Forum says “Comments Disabled”, and I didn’t willing disable them!
Where do I’m doing wrong?
Thank you.Topic: Private Recent Topic Page
I’m trying to create a page that includes only recent topics which would only be available to a forum role of Participant and a visibility of Private.
Creating a new page and using the short code [bbp-topic-index] doesn’t work, as the Private page visibility is based on WordPress user roles and not bbPress.
Is there a way to create an additional forum template that lists recent topics? This would not replace the main forum list view, but would be an additional page.
Hoping someone can confirm this bug to avoid this issue being skipped for the 2.3 release since it is considered critical
———————–
john the admin creates group1 – jane creates group2 (private)when jane visits group2 to create a forum post, it is posted to group1 and everyone can view the private forum post.
tested twice with new installs wordpress 3.5.1 + buddypress trunk-6779 + bbpress trunk 4761
jane is a standard user (participant)
I am trying to do something which i feel should be pretty simple.
I want to make forum/topics that are only visible and accessible by certain users i can determine myself.
For instance one forum/topic that only 2 forum users say “john” and “paul” have access to along with our admin.
There does not appear to be a way of doing this and i have tried most of the plugins the last 4 days of googling have provided.
Surely im missing something simple?
Im using the latest versions of wordpress and bbpress, just downloaded this week.
The forum in question – though not live, can be seen here: http://69.195.124.85/~youngmo7/12/shortcode-forums/
Any help or advice is greatly appreciated.
Thanks
Topic: Multiple Forums with my Site
Hi, I have BBPress installed in my wordpress GEO Theme. My site is US nationwide which means people can post their place listing for every State and City. I would like to offer the option to the place listing owners to create a private forum for their place. So, it will more than likely be thousands of private forums within my site. Is this possible with BBPress?
I’m working at a WordPress site in which I want to use the bbPress plugin. Now, I want to create a link between the normal WordPress comment function and bbPress. I just want to do one thing. Under my standard WordPress blog entries, the users of my site can post comments. The comments are listed under the respective blog article. Next to each comments there the picture of the user that creates the comment. Now I want to create a link between the picture of the commentator and his bbPress profile page. When someone presses the picture of the commentator, there should be a forwarding to the bbPress profile page of the commentator. Observer of my blog can get a few informations about the commentator by that. Unfortunately I’m not able to create the link.
This is the code of my functions.php, that describes the comments setup of my normal WordPress commenting system:
And this is the bbPress php code which creates the user avatar link to the profile page:
Can somebody tell me the way how I have to modify the WordPress functions.php?
Even now, many thanks for your Help!