Search Results for 'wordpress'
-
AuthorSearch Results
-
August 28, 2014 at 7:43 am #188615
In reply to: [Resolved] Can I create a website like facebook?
danbp
ParticipantAjaxim related:
On the software install instructions page, there is a important notice.Unlike Ajax IM 3.41 which was written in PHP, Ajax IM 4.0 uses Node.js. Node.js was chosen for scaling and extensibility but it also requires you to be on a VPS or dedicated server. Node.js and, thus, Ajax IM 4.0 will generally not work in shared hosting environments.
https://groups.google.com/forum/#!forum/ajaxim
My subject knowledge HTML and CSS only!!
I suggest that you search some chat plugin on the WP repo, as it would be a less problem if you have no php knowledge.
https://wordpress.org/plugins/search.php?q=chat
https://wordpress.org/plugins/chat/
https://wordpress.org/plugins/bp-group-tinychat/
etc…August 28, 2014 at 2:37 am #188609In reply to: [Resolved] Can I create a website like facebook?
Anonymous User 13661254
InactiveHello @nexia
Thanks for your reply.
I have understood that there is need for a server of great power.
I am willing to take two hosting accounts and host the messaging in one and the website on other.
Although I may have only 10-20 members at a time.
I have searched for chat scripts on google and the first result was ajaxim
Can I use this and integrate with my wordpress site?
If possible please give me an instruction or any link which explains how I can do that.Please also state me if there is any other alternative.
My subject knowledge HTML and CSS only!! 🙂
Thanks
August 27, 2014 at 10:22 pm #188603In reply to: New User – Invalid Key – The Solution
r-a-y
Keymaster@antimuffin (or anyone else) – Can you try the fix I posted here?
August 27, 2014 at 8:15 pm #188599In reply to: Hide Admin from Members and Activity
Jean-Pierre Michaud
Participanti know some guys do not like codecanyon and the likes, but here is a guess on what you did not search yet:
http://codecanyon.net/search?utf8=%E2%9C%93&category=wordpress&term=hide+admin
August 27, 2014 at 6:09 pm #188592In reply to: [Resolved] Can I create a website like facebook?
danbp
Participant@anivarth,
thesis:
We have many plugins […]Is there any other for free?
anti thesis:
I want to create a social networking site like facebook
Are you a poor ambitious dreamer ? 😉
See here what buddypress already can do, and read/learn here what you can do to approach something similar to FB.
It exist also some theme à la FB. One from many others.
August 27, 2014 at 5:56 pm #188590In reply to: [Resolved] Add a button to all topics
danbp
ParticipantDo you have a similar one for creating a child template?
No comprendo ?!!! Do you mean a tutorial for creating a child theme ?
https://codex.wordpress.org/Child_Themes
http://code.tutsplus.com/tutorials/child-themes-basics-and-creating-child-themes-in-wordpress–wp-27475Did you read both Codex articles ?
Do you know that search engines exist ?
August 27, 2014 at 3:20 pm #188567danbp
ParticipantFYI – bp 1.2: https://buddypress.trac.wordpress.org/ticket/1909
Also some other tickets about private content and visibility:
https://buddypress.trac.wordpress.org/search?q=private+activitiesthe last activity of the member you’re asking was 1 year, 11 mounth ago.
and BuddyPress is now on 2.0 cycle.Post is now closed.
August 27, 2014 at 2:41 pm #188558In reply to: [Resolved] Add a button to all topics
danbp
ParticipantBuddyPress works together with the bbPress plugin when you use a forum.
If you want to add an extra button or a link or whatever, you simply check for the hook you want to use in one of the bbPress template files (bbpress/templates/default/bbpress/…) and attach a custom function to it.
As example of use, this snippet will add some text above the topic editor. You add it into your child theme functions.php or into bp-custom.php
function my_test_insert() { echo '<strong>My awesome <a href="#">link</a> to third party app</strong>'; } add_action( 'bbp_template_notices', 'my_test_insert' );If you don’t understand what’s going on on this topic, here’s a brief tutorial about hooks and filters.
August 27, 2014 at 2:19 pm #188556In reply to: [Resolved] Create users Pages
danbp
Participantby default, WP users cannot publish pages, but only post.
See here for roles and capabilities.A Premium plugin exist who let you do this, FormidablePro, also avaible in a free version. More here.
And to add a FB like button, search on the plugin repo.
August 27, 2014 at 2:14 pm #188555In reply to: [Resolved] Create users Pages
Henry Wright
ModeratorHi @bloodslayer
wp_insert_post()is a function provided by WordPress which lets developers add pages to the database without the need to access the WP admin area.So, as an example, you could use it like this:
$post = array( 'post_content' => 'This is some content', 'post_name' => 'this-is-the-page-slug', 'post_title' => 'I am the title of this page', 'post_status' => 'publish', 'post_type' => 'page', 'post_excerpt' => 'This is the excerpt' ); $post_id = wp_insert_post( $post );Notes:
$post_idwill be the ID of the new page or ifwp_insert_post()failed (for whatever reason) it will be 0.So that’s how you create a new page programmatically. It’s more of a WordPress thing than a BuddyPress thing.
August 27, 2014 at 10:43 am #188550In reply to: [Resolved] Add a button to all topics
heilyn
ParticipantI’m not really sure what button you are looking. Is it something like this kind of plugin?
https://wordpress.org/plugins/buddyforms-posts-to-posts-integration/
August 27, 2014 at 10:09 am #188549In reply to: [Resolved] Add a button to all topics
lmolenje
ParticipantIt is essentially a link that I want to add to every forum. Many plugins have this but they only apply to posts and pages. The link will connect to a third party app. I have some custom code that I can embed into the php so that I can link wont take me off my site. However, I am unable to find the forum.php for buddy press in my installation.
I am looking for it in:
/apps/wordpress/htdocs/wp-content/themes/buddyAugust 27, 2014 at 10:02 am #188548namrons
ParticipantThanks for getting back to me @danbp. I’m using the theme “SocialBuddy” mostly but I have tested this on different themes/versions of Buddypress/versions of WordPress as well as different servers – dedicated and shared and the result is the same everywhere so it appears to be a bug.
I would be curious to know if you could replicate this:
1) Inside a PRIVATE group add a status update and then comment on this update. (or add a few comments). All good so far.
2) Now go to “My Groups” feed and you will see your status update as well as the comments. Try comment on any of the comments and see if they post correctly.For me these comments only show up once I have refreshed the page.
August 27, 2014 at 7:54 am #188544In reply to: [Resolved] Create users Pages
Henry Wright
ModeratorIn the absence of a plugin, you would need to create a front-end form and a server-side processing script which makes use of
wp_insert_post().Ref: https://codex.wordpress.org/Function_Reference/wp_insert_post
August 26, 2014 at 10:17 pm #188539danbp
Participantyou jumped in a post started over 4 years ago ! Do you really expect to reuse a snippet given over 3 years back, without having any issue ?
Big changes came up between BP 1.0 and 2.0.2. The most change is that Notification is now a component and not a simple functionnality.
Please open a new topic or give a try to
BuddyPress Notification Manager. A bit old too, but it is already working with current BP.August 26, 2014 at 6:10 pm #188526In reply to: where to translate these words in memberpage
danbp
Participantbuddypress/bp-languages/buddypress.pot
Don’t use DW to read, modify or save a translation. Use a text editor (not word) like notepad or notepad++The NL translation is on Glotpress and the translation you need to put on your server is buddypress-nl_NL.mo
This is a compiled file used by gettext. You cannot read or modify it. If you want to do so, see poEdit.
https://translate.wordpress.org/projects/buddypress/dev/nl/defaultYou can find many other related topics if you search a little on the forum.
August 26, 2014 at 3:09 pm #188511namrons
Participant@hk12onos Did you ever manage to fix this? I know it’s an old post but I have the identical issue when commenting on updates of a private group. I’ve tried it on various themes/versions of WordPress/versions of Buddypress and I get the same result.
August 26, 2014 at 1:22 pm #188505In reply to: Register CSS Style
danbp
ParticipantAugust 26, 2014 at 8:48 am #188492In reply to: [Resolved] Group Edit Dashboard broken
danbp
ParticipantIs it a fresh instal you working on ? Are you on a local server ?
If you test only with a private group, nothing will appear publicly.Assuming all active components have all their dedicated pages and that you set pretty permalinks an use Twenty Fourteen.
If so, install BP Default Data which will install 50 fake members, groups and many other things and see if you get a result.
August 25, 2014 at 9:22 pm #188472danbp
ParticipantHi @doremdou
BP group activities notifier perhaps ?There is also Buddypress Notification Manager which make this for groups
- A member invites you to join a group
- Group information is updated
- You are promoted to a group administrator or moderator
- A member requests to join a private group for which you are an admin
it does not send notifications when SOMEONE JOINS the group and I need it
You need it ? Well, but that isn’t enough !
Who should receive the notif ?Both are old, and the 2nd is still working with 2.0.2.
August 25, 2014 at 8:33 pm #188467In reply to: most active users
danbp
Participantbuddypress doesn’t handle the blog(s), it only show them à la BP.
BP comes up with some witget and you can activate them from the widget dashboard. The most relevant, even if he doesn’t exclusively handle author’s post, is Recently active members, who let you choose from 3 different filters: active, recent, popular.You can also search on the WP plugin repo if a more accurate plugin exist
August 25, 2014 at 4:18 pm #188454Halo Diehard
ParticipantThanks so much for your response! First I created bp-custom.php and pasted
define( ‘BP_ENABLE_USERNAME_COMPATIBILITY_MODE’, true );into it, then I put it in my plugins folder, and I got the same 404 except this text was across the top of the page:define( ‘BP_ENABLE_USERNAME_COMPATIBILITY_MODE’, true ); Warning: Cannot modify header information - headers already sent by (output started at /homepages/33/(database here)/htdocs/(mywordpressfolder)/wp-content/plugins/bp-custom.php:1) in /homepages/33/(database here)/htdocs/(mywordpressfolder)/wp-includes/pluggable.php on line 1121By sheer luck I recognized that the ‘ and ‘ were the curly ones, and I had JUST read about that last week, so I deleted the apostrophe’s and typed them in myself in notepad++, crossing my fingers. But when I saved and ftp’d the new file, I had the same thing across the top, just with the fixed code!
define( 'BP_ENABLE_USERNAME_COMPATIBILITY_MODE', true ); Warning: Cannot modify header information - headers already sent by (output started at /homepages/33/(database here)/htdocs/(mywordpressfolder)/wp-content/plugins/bp-custom.php:1) in /homepages/33/(database here)/htdocs/(mywordpressfolder)/wp-includes/pluggable.php on line 1121I went and took a peek at pluggagle.php, line 1121, and it is the third line up from this:
/** * Filter the redirect status code. * * @since 2.3.0 * * @param int $status Status code to use. * @param string $location The path to redirect to. */ $status = apply_filters( 'wp_redirect_status', $status, $location ); if ( ! $location ) return false; $location = wp_sanitize_redirect($location); if ( !$is_IIS && php_sapi_name() != 'cgi-fcgi' ) status_header($status); // This causes problems on IIS and some FastCGI setups header("Location: $location", true, $status); return true; } endif;So 1121 is this bit:
header("Location: $location", true, $status);That block of code is just above “Sanitizes a URL for use in a redirect”, using function wp sanitize redirect.
Not sure if any of that points to any clear problem, but it’s pretty much Greek to me 🙁
August 25, 2014 at 4:16 pm #188453In reply to: How can I add some users/members to BP site?
@mercime
Participantbut I want to add more users for testing … I looked at the ‘Demo Data Creater’ plugin
@simple-man check out https://wordpress.org/plugins/bp-default-data/
The number of users and groups created are limited so it’s much easier to delete test users by batch in wp-admin/users.php laterAugust 25, 2014 at 3:59 pm #188451In reply to: Members Page search box missing
@mercime
Participant@mjc82in I think you still need to install https://wordpress.org/plugins/genesis-connect-for-buddypress/ for theme compatibility.
August 25, 2014 at 1:32 pm #188438 -
AuthorSearch Results