Search Results for 'wordpress'
-
AuthorSearch Results
-
August 31, 2014 at 8:35 am #188802
danbp
ParticipantHi @yamaryam,
What is recommended ? No clue ! Don’t make mistake ? Don’t forget the milk bottle ? 😉
The theory
1) install / configure WordPress
2) activate 2014 theme
3) checking every thing is ok
4) activate network
5) checking every thing is ok
6) install / configure BuddyPress
7) checking every thing is ok
8) enjoy your dashboard: one for the main site and one for the network
9) don’t forget the milk bottleHeadache ?
August 31, 2014 at 8:26 am #188801In reply to: create a group – name label
danbp
Participantgolden rule: never change a core file.
If you want to customize things you should use a child theme. And to ad/remove or modify core functions, you should use your child theme’s functions.php or bp-custom.php
In create.php are 18 hooks you can use to add some custom explanation !
In your case, you may hook intodo_action( 'bp_before_group_details_creation_step' );https://codex.wordpress.org/Child_Themes
https://codex.buddypress.org/plugindev/bp-custom-php/August 31, 2014 at 8:06 am #188798In reply to: Installing BP and creating new pages?
danbp
ParticipantIs that correct? YES !
The rest of your topic, even if respectable, is a bit due to your inhabitude of BP i guess. And probably also of some WP usage around pages.
You can create as many pages as you want with WP. The difference between a page and post in WP is tiny, but very important. Both are post, but not with the same type ($post_type->post and $post_type->page). All this is detailled on the WP Codex.BuddyPress is a plugin and use his component pages only for internal puprpose – because WP need them to work with BP… and conversely!
BP is shipped with some widgets, including a member’s widget with 3 filters letting you do exactly what you discribe.
For other custom use of buddypress, you can search for dedicated buddypress plugins on the plugin repo.
August 31, 2014 at 7:25 am #188792In reply to: Creating User Contents
danbp
Participantif you have only one blog, you can give a author status to desired members.
If you have a multisite install, each member can create his own blog.Updates are acessible to any member and can be used with videos and photos.
If you need some fake content to see how BP&bbBP are working together, use BP Default Data plugin.
August 30, 2014 at 1:06 pm #188775Henry Wright
ModeratorHi @beenvy2
The colour can be changed via CSS. If you’re not familiar with CSS, take a look at this tutorial to get you started.
Info specific to WordPress can be found in the CSS Codex article.
August 30, 2014 at 10:21 am #188772In reply to: [Resolved] Display a membership number
Henry Wright
ModeratorI wouldn’t advise editing the user IDs in the database as I have no idea what would happen when WordPress wants to allocate an ID to the next newest member and you’ve already used that particular ID.
Which number would you like to start at? If it’s not very big then you could always create some dummy users yourself which would take up the first few IDs? Once real users begin to sign up you can delete the dummy users. To my knowledge, the dummy user IDs won’t get recycled.
August 30, 2014 at 9:09 am #188771In reply to: [Resolved] Change Private Message email sender
August 29, 2014 at 9:51 am #188690In reply to: Notify a user about a page is viewed
Henry Wright
ModeratorHi @bacigaloop
Posts are displayed by single.php. Take a look in your theme to see if there is a hook available in that file. If not you could always add one yourself by creating a child theme.
August 28, 2014 at 11:20 pm #188678In reply to: [Resolved] remove sidebar
danbp
ParticipantRemove get_sidebar from the template ! Must be done on a child theme / check first your theme support.
Get an idea of how to do this here (as example)August 28, 2014 at 5:51 pm #188665In reply to: Invalid Activation Key
danbp
Participantit’s an old topic related to BP 1.7. And @mercime already answered to the same question as yours.
Read about troubleshooting on the BP Codex.FYI wp codex gives also general advice on how to debug. You may also find many related topics on this forum.
Please open a new topic and give your install type, theme name and used plugin and explain your problem, when it arrived, what you already tried, etc
August 28, 2014 at 5:42 pm #188663In reply to: [Resolved] Adding generated link after Group name
danbp
ParticipantHi @jabbajabba,
create first a child-theme and add this snippet into functions.php or bp-custom.php
We are going to use one of the existing action hook in the group header template and add it a custom function.
function jabbajabba() { echo '<a href="#">click here</a>'; } //add_action( 'bp_before_group_header_meta', 'jabbajabba' ); //add_action( 'bp_group_header_actions', 'jabbajabba' ); add_action( 'bp_group_header_meta', 'jabbajabba' );The snippet has 2 commented action, so you can choose the best place for your link button.
Reference file is
buddypress/bp-templates/bp-legacy/buddypress/groups/single/group-header.phpAugust 28, 2014 at 1:09 pm #188648In reply to: Conflict with my plugin
Mathieu Viet
Moderatoroopsy spoke too quick, sorry. doing_action( ‘admin_init’ ) is only available since WordPress 3.9
August 28, 2014 at 1:04 pm #188646In reply to: Conflict with my plugin
Paul de Wouters
ParticipantReferencing ticket: https://buddypress.trac.wordpress.org/ticket/5843
August 28, 2014 at 8:56 am #188626danbp
ParticipantHi @presis_carsten,
could effectively be a translation issue. Why ?
For translation, we (i translate BP into french) mostly use HTML entities for special characters.
In brief, accented letters in HTML. For instance, if you want to typeéényou would typeéén.The only part this should never be used is in the messages, as gettext doesn’t handle mail content.
And so far i see, the dutch phrase contains such an accented letter (beëindigen)
buddypress-nl_NL is here. And you’re free to modify it on Glotpress and of course in your copy, with poEdit or similar.
I checked WP & BP’s nl_NL version on Glotpress and didn’t find the phrase you mention. Could it be you use a very old translation or some notification plugin ?
August 28, 2014 at 8:35 am #188623DarkPsy
ParticipantHello Dan,
I’m using it in the exact same way I was a week back when everything was working just as expected, suddenly it stopped working.
I also have this message being displayed
Notice: bp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 1.7.) in ~wordressdir~/wp-includes/functions.php on line 3245 Warning: Cannot modify header information - headers already sent by (output started at ~wordressdir~/wp-includes/functions.php:3245) in ~wordressdir~/wp-includes/pluggable.php on line 1121The bbPress plugin isn’t something I feel this is related to. Basically I’m baffled cos it was working a week back and now it’s not. everything is the same way. Even on a clean install it backfires.
Buddypress 2.0.2.
WP 3.9.2August 28, 2014 at 7:43 am #188615In 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.
-
AuthorSearch Results