Search Results for 'buddypress'
-
AuthorSearch Results
-
February 10, 2013 at 7:39 pm #152793
rmdcron
ParticipantHi Hope,
I have a similar problem to solve. I’m importing over 1000 users and need a script to do this. Message me on Skype if you’d like to work together to save time and money to find a solution to this problem
Amit
Skype: misra.amit
Gchat: misra.amitFebruary 10, 2013 at 2:53 pm #152787In reply to: Unable to login site and admin at the same time
@mercime
Participant@thomasboerre yes, something’s missing in your multisite installation. Deactivate BuddyPress. Please resolve the multisite issue before activating BuddyPress again.
Follow precisely the instructions written https://codex.wordpress.org/Create_A_Network
Based on what you’ve posted above at the very least – a) define(‘WP_ALLOW_MULTISITE’, true); should be above “/* That’s all, stop editing! …” not just below DB information and b) you’re missing Step 4 – Enabling the Network – wherein you’re suppposed to add more in wp-config.phpFor more assistance, please post at https://wordpress.org/support/forum/multisite
February 10, 2013 at 10:38 am #152779In reply to: Create private membership site with BuddyPress
Florence
ParticipantAhh, I wanted to achieve something like this as well. Like you, I’m using S2members (which I absolutely love – lets you hide/text menu items, text, posts, pages, downloadable content ect based on user role).
This is what I’ve done: For the registration process I’m using BAW invitation codes. Users need to register for a health course (using Event Espresso), and in the confirmation email they recieve an invitation code they can use to log in and access course materials.
February 10, 2013 at 5:37 am #152775NumberOneComputer
ParticipantI reply that link, I am not sure
Does yo recive link on my website?Best regards
February 10, 2013 at 5:04 am #152769modemlooper
Moderatorlink to site?
February 10, 2013 at 3:22 am #152766NumberOneComputer
Participantbuddypress members
February 10, 2013 at 2:48 am #152764NumberOneComputer
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
-
AuthorSearch Results
