Search Results for 'buddypress'
-
AuthorSearch Results
-
February 10, 2013 at 2:48 am #152764
NumberOneComputer
ParticipantThank you my problem becomes solved.
Best regards
February 10, 2013 at 2:33 am #152763modemlooper
Moderatormake sure the BuddyPress plugin folder is named buddypress
February 10, 2013 at 12:07 am #152756Renato Alves
ModeratorHi Hamedharry,
see this:
https://buddypress.org/support/topic/buddypress-1-7/#post-149853
It is related to your question.
February 10, 2013 at 12:04 am #152755In reply to: Create private membership site with BuddyPress
k.gray
ParticipantI am looking to do the same thing and installed WP-Members. I find that it allows me to moderate members signing up which is great, but even though I have it set to block all pages and posts from non-members they are still showing. I’m using the BP default theme.
Anyone have suggestions?
Here is the site – http://forums.saintelia.com/
February 9, 2013 at 8:16 pm #152752modemlooper
Moderatorhope, it’s not finished.
February 9, 2013 at 8:16 pm #152751In reply to: Why buy plugin? I want to convert my own A/V
Hugo Ashmore
ParticipantI’m closing this thread it’s feeling antagonistic and unproductive now.
I’m not really clear on what was required here but essentially WP/BP have nothing to do with video file conversion and formats, other than attempting to render some where possible. Your reference to a plugin earlier has little to do with BP or WP but more to do with working as an addon for an actual plugin:
This plugin adds automatic video conversion support for BuddyPress Media plugin.
Regardless you are asking a question in the wrong forum, the question is outside the remit of this support forum for the core BuddyPress application.
February 9, 2013 at 8:15 pm #152750modemlooper
Moderatorno, it will be opened for the community to use and develop
February 9, 2013 at 8:10 pm #152749In reply to: Create Account Page Help (see pic)
MeRuud
ParticipantNot sure if this is what your looking for, but there is a plugin that converts all instances of displayname to username.
Link: https://wordpress.org/extend/plugins/buddypress-usernames-only/
.It hasn’t been updated in a while, but last time I used it it worked fine.
February 9, 2013 at 8:03 pm #152748shanebp
Moderator@modemlooper re BE – Nice start.
Recently created a custom import script – wasn’t too hard, but I had full control over the import format.
Will BE remain public or move to being a taptap product ?
February 9, 2013 at 7:29 pm #152746Hope
ParticipantThank you guys for your quick responses…
Actually it’s not a Ning site, It’s a student information system & I want to export its users (who are students) in a format that could be imported into buddypress; so I can create them accounts with the specified fields that i already defined in Buddypress (program, term , year, etc..)I installed BuddyExport on my test site, there’s Buddypress Import option but not accomplished yet as appears (nothing appears when clicking on it) or I missed something?
February 9, 2013 at 7:26 pm #152745In reply to: Edit "new post"-activity content
MeRuud
ParticipantNot sure why but this forum keeps cutting out links / random parts of my post.
The second piece should be, for the content above to make sense:
`remove_filter( ‘bp_create_excerpt’, $length, $options );
function pnb_excerpt(){
$lenght = 500;
$options = array(
‘ending’ => __( ‘ […]’, ‘buddypress’ ),
‘exact’ => false,
‘html’ => false,
‘filter_shortcodes’ => $filter_shortcodes_default);
}
add_filter( ‘bp_create_excerpt’, $length, $options );
`Either way tried both of them.
Thanks,
RuudFebruary 9, 2013 at 7:18 pm #152744In reply to: Edit "new post"-activity content
MeRuud
ParticipantSo I think I found the part that creates / modifies the excerpt. It is in bp-core-template.php. Starting at line 353.
`/**
* Truncates text.
*/
function bp_create_excerpt( $text, $length = 225, $options = array() ) {
// Backward compatibility. The third argument used to be a boolean $filter_shortcodes
$filter_shortcodes_default = is_bool( $options ) ? $options : true;$defaults = array(
‘ending’ => __( ‘ […]’, ‘buddypress’ ),
‘exact’ => false,
‘html’ => true,
‘filter_shortcodes’ => $filter_shortcodes_default
);
$r = wp_parse_args( $options, $defaults );
extract( $r );// Save the original text, to be passed along to the filter
$original_text = $text;// Allow plugins to modify these values globally
$length = apply_filters( ‘bp_excerpt_length’, $length );
$ending = apply_filters( ‘bp_excerpt_append_text’, $ending );// Remove shortcodes if necessary
if ( $filter_shortcodes )
$text = strip_shortcodes( $text );``remove_filter( ‘bp_create_excerpt’, $length, $options );
function pnb_excerpt(){
$lenght = 500;
$options = array(
‘ending’ => __( ‘ […]’, ‘buddypress’ ),
‘exact’ => false,
‘html’ => false,
‘filter_shortcodes’ => $filter_shortcodes_default);
return apply_filters( ‘bp_create_excerpt’, $length, $options );
}`I also tried with apply_filter, and without the remove_filter.
How do I overwrite the defaults? (The $length, and the $options array).Thanks in advance,
RuudFebruary 9, 2013 at 7:13 pm #152743modemlooper
ModeratorBoone’s plugin is outdated, I’m creating a base import export for BP and creating a conversion script for Ning to convert ning files. The plugin on github is in flux as it get’s developed. You can use it on a test site. You will only be able to import if there is a proper script to convert files. If a site is not a major inline service no script will be available unless you code it yourself.
February 9, 2013 at 6:35 pm #152742In reply to: Unable to login site and admin at the same time
Thomasboerre
ParticipantYes,
I did the steps written in this link only, https://codex.buddypress.org/user/buddypress-site-administration/deleting-buddypress/.
But issue is still there. Also, one thing is that in my admin panel I can see that multisite is disabled, while I’ve enabled it in wp-config.php
Is this could be the issue? If yes, then let me know how to remove this thing.
Have a look on my wp-config.php and let me know your feedback. Removed original credentials.`
<?php
/**
* The base configurations of the WordPress.
*
* This file has the following configurations: MySQL settings, Table Prefix,
* Secret Keys, WordPress Language, and ABSPATH. You can find more information
* by visiting {@link https://codex.wordpress.org/Editing_wp-config.php Editing
* wp-config.php} Codex page. You can get the MySQL settings from your web host.
*
* This file is used by the wp-config.php creation script during the
* installation. You don't have to use the web site, you can just copy this file
* to "wp-config.php" and fill in the values.
*
* @package WordPress
*/// ** MySQL settings – You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', database name);/** MySQL database username */
define('DB_USER', user name);/** MySQL database password */
define('DB_PASSWORD', password);/** MySQL hostname */
define('DB_HOST', 'dbp12.meebox.net');/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');/**#@+
* Authentication Unique Keys and Salts.
*
* Change these to different unique phrases!
* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
* You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
*
* @since 2.6.0
*/
define('AUTH_KEY', 'put your unique phrase here');
define('SECURE_AUTH_KEY', 'put your unique phrase here');
define('LOGGED_IN_KEY', 'put your unique phrase here');
define('NONCE_KEY', 'put your unique phrase here');
define('AUTH_SALT', 'put your unique phrase here');
define('SECURE_AUTH_SALT', 'put your unique phrase here');
define('LOGGED_IN_SALT', 'put your unique phrase here');
define('NONCE_SALT', 'put your unique phrase here');/**#@-*/
/* Multisite */
define('WP_ALLOW_MULTISITE', true);/**
* WordPress Database Table prefix.
*
* You can have multiple installations in one database if you give each a unique
* prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = 'wp_';/**
* WordPress Localized Language, defaults to English.
*
* Change this to localize WordPress. A corresponding MO file for the chosen
* language must be installed to wp-content/languages. For example, install
* de_DE.mo to wp-content/languages and set WPLANG to 'de_DE' to enable German
* language support.
*/
define ('WPLANG', 'da_DK');/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*/define('WP_DEBUG', false);
/* That's all, stop editing! Happy blogging. */
/** Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');`February 9, 2013 at 6:27 pm #152741Hugo Ashmore
ParticipantHowever ‘export’ is not the same as ‘import’
Importing data not the easiest thing to do, you need a script that reads the format of the data to be imported and then knows how to transpose the data to fields that make sense to another DB and table.
As far as I’m aware there’s no general purpose script to do this, as generally they need to be custom written, I wrote one to read data from one table format to WP user fields but it was unique for the circumstances and wouldn’t work generally.
If this were a Ning site? you had the data in I think Boone wrote a conversion script but not sure what happened to it .
February 9, 2013 at 6:24 pm #152740In reply to: Unable to login site and admin at the same time
@mercime
Participant@thomasboerre how did you “delete” BuddyPress? Did you read BP Codex page https://codex.buddypress.org/user/buddypress-site-administration/deleting-buddypress/ first before removing “all” BP tables?
February 9, 2013 at 6:20 pm #152739@mercime
ParticipantThere’s this plugin by @modemlooper but has warning not to use on live site, i.e., for testing environment only https://github.com/modemlooper/BuddyExport
February 9, 2013 at 5:44 pm #152732In reply to: [Resolved] toolbar disappears for users
@mercime
ParticipantWhat theme are you using? Have you tried changing to BP Default theme to see if issue is resolved?
What plugins are installed? Have you tried deactivating all plugins except BuddyPress to check if wp-admin shows up as expected? If that works, activate plugins one by one to check which is causing the mystery of the missing toolbar.
February 9, 2013 at 5:03 pm #152726In reply to: [Resolved] Plain Red Page
b2550
Participant@mercime I have changed the .htaccess. index.php? I will take a look at your links but the way you are explaining is nonsense.
I will restart BuddyPress and see what happens.
I am on CentOS
February 9, 2013 at 4:54 pm #152723In reply to: [Resolved] Plain Red Page
@mercime
Participant@b2550 the forums page is the tip of the iceberg.
#.URZ6pmf_34E is appended to the URL’s of many of your pages including WP’s archive pages and BP’s user profiles, and I find xxx/index.php/xxx in one of your site URL’s.I can only conclude that you are on a Windows server and something went awry with additions to the site’s .htaccess file in addition to using the option of adding index.php to your permalinks for pretty permalinks. That is not going to work with BuddyPress.
Please deactivate BuddyPress and resolve permalinks before activating it again.
– https://codex.wordpress.org/Using_Permalinks#Permalinks_without_mod_rewrite
– http://www.cypressnorth.com/blog/web-programming-and-development/setting-up-url-rewrites-for-wordpress-under-iis-on-a-windows-server/
– For more assistance in resolving the pretty permalinks issue, please post at https://wordpress.org/support/forum/how-to-and-troubleshootingFebruary 9, 2013 at 4:37 pm #152722Tux Kapono
ParticipantI posted a straightforward book link on Amazon.
My greatest regret is that the people working on the gamification elements of BuddyPress 1.8, nor anyone else reading the forum, benefitted from knowing that this newly published resource even exists.
Thank you for reinstating my account.
February 9, 2013 at 12:25 pm #152718In reply to: [Resolved] Plain Red Page
Hugo Ashmore
ParticipantWell you have provided no code to study nor a link to the problem so it’s hard to help you really, could endlessly speculate but that’s not very productive.
All themes? Doubt that but then..
Deactivate all plugins just run WP then run through the default themes, add back in BuddyPress, add back in plugins, basic troubleshooting i.e try to establish at point the issue occurs and what if any condition exists such as a specific plugin etc.
February 9, 2013 at 9:32 am #152713In reply to: Buddypress 1.7
brayjason
Participantnevermind, I got it (newb status)
February 9, 2013 at 7:48 am #152710In reply to: Buddypress 1.7
brayjason
Participant@chrisclayton How do you rename the directory? do you just rename the zip file? I am very excited to try 1.7 out. @takham did you ever figure out the forum issue?
February 9, 2013 at 2:22 am #152699In reply to: Admin bar loads slow
myladeybugg
Participant@mercime I am using a child theme of the bp-default theme, so it could be something I have done. I just can’t think of what I could of done that would be the cause. I am hosted through Hostgator on their baby plan and am using the most recent versions of both WP and Buddypress. Here is a link: http://shoutkey.com/windmill
-
AuthorSearch Results