Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 11,051 through 11,075 (of 22,660 total)
  • Author
    Search Results
  • #144074

    In reply to: Architecture Advice

    r-a-y
    Keymaster

    1) Here’s a great tutorial post about Multisite and how to map subsites to domains:
    http://wp.tutsplus.com/tutorials/wordpress-multisite-beyond-basics-essentials-and-domain-mapping/

    2) As for BuddyPress on the niche sites, you might want to look into a BuddyPress multi-network plugin.

    There are a few plugins out there that do this.

    Here are some examples:
    https://wordpress.org/extend/plugins/bp-multi-network/
    http://buddydev.com/buddypress/introducing-buddypress-multi-network-plugin-create-multiple-separate-social-networks-on-a-single-buddypress-install/

    3) This would require using switch_to_blog() function and using some BP-specific code on the main site I believe.

    4) If you use the steps in point 2, then I believe so. If you want to share the same BP data across all your sites, then don’t do point 2 and you won’t have to use a different registration page.

    Note: This is all off the top of my head and I could be wrong in a few areas!

    Hope that helps somewhat!

    Sean Infinitee
    Participant

    Hey guys-hoping you can help me figure out what I’m doing wrong…if I can’t hide or remove the “community” tab then it would seem to be a pretty simple concept to change the order of the tab, but no luck with the above…not that php or css savvy but the instructions here are pretty straightforward so any help is appreciated!

    Using latest wordpress version and just installed buddypress yesterday so I would assume it is also the latest version.

    My website is http://www.defendersofturntablism.org

    I added the line `define( ‘BP_DEFAULT_COMPONENT’, ‘preferred_default_tab’ ); to wp-config.php above ‘//MySQL settings – You can get this info from your web host **//`

    Created bp-custom.php in plugins folder and added

    `function bbg_change_profile_tab_order() {
    global $bp;

    $bp->bp_nav = 10;
    $bp->bp_nav = 20;
    $bp->bp_nav = 30;
    $bp->bp_nav = 40;
    }
    add_action( ‘bp_setup_nav’, ‘bbg_change_profile_tab_order’, 999 );`

    Unfortunately all this has done is add the above line of code to the header of my site…can anyone help me figure this out??! Seems like it should be very simple. Ideally I want to have see the community tab go away and have the members section contain the buddypress activity, groups, forums, etc.

    Thanks in advance!!

    @mercime
    Participant

    @kookidooki WPMU is old school and has been merged with WordPress way back version WP 3.0. If you want to allow your users to create blogs, you’d have to create a Network (go Multisite) https://codex.wordpress.org/Create_A_Network

    I would suggest deactivating BuddyPress and other plugins, plus changing to Twenty Eleven theme before creating a network. Please make sure that your multisite installation is working as expected before activating BuddyPress again. If you have any issues going multisite, please post at https://wordpress.org/support/forum/multisite

    #144027

    In reply to: Hookable Notifications

    Paul Wong-Gibbs
    Keymaster

    Best place for this is https://buddypress.trac.wordpress.org — log in with your username and password from this site. If you’ve got a patch, or more specific details on exactly what you want added, attach it to the ticket :)

    Kookidooki
    Participant
    #143996
    evagorasc
    Participant

    @modemlooper thanks! I used a combination of your tips and info I found here https://bpdevel.wordpress.com/2012/03/16/profile-field-visibility-in-bp-1-6/ to make this work for me. I now have any custom field in Buddypress show up in my forums loop and it shows up conditionally as well for the appropriate users only.

    #143991
    #143975

    In reply to: Theme Compatibility

    ahmedselim
    Participant
    @mercime
    Participant

    @ouyagamingsource to make your Alyeska theme compatible with BuddyPress, you need to install/activate the BP Template Pack plugin, the go through Appearance > BP Compatibility process as you’ll see https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/

    You’re in luck, we’ve helped another person some months ago with Step 3 for the Alyeska theme at https://buddypress.org/community/groups/installing-buddypress/forum/topic/customising-alyeska-theme-for-buddypress/

    If you have any issues re Compatiblity Process, please post at that thread.

    #143970

    In reply to: Theme Compatibility

    @mercime
    Participant

    == I am not sure if i can get away with the creation of the three “-buddypress.php” files or if I need to modify the 16 files and which code I need to copy. ==

    @ahmedselim IT all depends on the HTML structure of your WP theme. You just cannot copy the code given for other themes because each has distinct structures and in all probability, not applicable to your theme’s. Have you looked if your theme is listed among the template-packed themes at https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#template-packed-wordpress-themes

    #143951
    9087877
    Inactive

    I already have a plugin my friend and it is free.
    https://wordpress.org/extend/plugins/buddypress-friendpress/
    I can customize it to your liking for some beer money lol!

    #143934
    9087877
    Inactive

    Then check the other fields. Here is a copy of one of my local sites wp-config.php:
    <?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’, ‘bpdev’);

    /** MySQL database username */
    define(‘DB_USER’, ‘root’);

    /** MySQL database password */
    define(‘DB_PASSWORD’, ”);

    /** MySQL hostname */
    define(‘DB_HOST’, ‘localhost’);

    /** 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’, ‘gKR[~e-<4 |Jj1DVfT-RM.m(|=M7(OB;tp/bfQt9+9[+FcIK<Gdp[(*u~2@-_H*J');
    define(‘SECURE_AUTH_KEY’, ‘_$y7AKT$.Zz`XHS3 DxndhyLGd/3ITTfE3oJqphSGS:x1*TH@45D 6NIjU7y64om’);
    define(‘LOGGED_IN_KEY’, ‘i6[pr$z#c,0E&EI]j]:K}cG9N`J[:JsL]wgy%[coeV>h(<c#W%Ye');
    define(‘NONCE_KEY’, ‘@GH9@ITlC&Py&cG3O5sKaVrm;vqP/4mKYz#=n>K?`%:C.q56yFO4WEaY:g^Rs+>+’);
    define(‘AUTH_SALT’, ‘QulXiJdP`zXXz*D*]RbfXfH[$C6 Z;:n>pLwcrSZvkY!7|*mHxyS>#n^qqiD2noO’);
    define(‘SECURE_AUTH_SALT’, ‘3/{(F|iduMA;QfF%OPY:jHTH:D8jcmWB&h`gfs$K4L&uTVhg1.05nz~h.COtvf+7’);
    define(‘LOGGED_IN_SALT’, ‘YG?P2/ <+A,W8L:r<0^9~n1c<aO-w|OTl~.o^T39ZPp)tz7&V~[x57X&n,(*(iA0');
    define(‘NONCE_SALT’, ‘|G0,AO(>,Ak @y a/A;Kf3it9W~Lv[/q*?,Pe!Dqf~WDzKzD?JJQ+V%.:]icGtzq/’);

    /**#@-*/

    /**
    * 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’, ”);

    /**
    * 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’);

    #143929
    ryan_dolan
    Participant

    Heres my WP-Config file

    <?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’, ‘ryanpaddlesite’);

    /** MySQL database username */
    define(‘DB_USER’, ‘root’);

    /** MySQL database password */
    define(‘DB_PASSWORD’, ‘password’);

    /** MySQL hostname */
    define(‘DB_HOST’, ‘localhost’);

    /** 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’, ”);

    define(‘WP_ALLOW_MULTISITE’, true);

    define(‘WP_MEMORY_LIMIT’, ’512M’);

    /**#@+
    * 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’);

    /**#@-*/

    /**
    * 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’, ”);

    /**
    * 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’);

    #143922
    9087877
    Inactive
    #143901
    9087877
    Inactive

    I just noticed a comment about BP FriendPress plugin. The answer is yes it is still supported. The stars rating system on here does not work accurately because there is no way my BP Buddybar back is scoring higher than my BP FriendPress plugin so instead of looking at stars go on WordPress and search for support for the plugin. If you see no support issues it is a good sign the plugin functions correctly.

    #143896
    ript247
    Participant

    Hi @PAUL GIBBS I apologize that I trolled into your topic yesterday, as I was not about to create a new topic. Far as the other topics they were within the same support criteria that I needed. And you are right I haven’t discovered an answer.

    I am using the latest version of buddypress and WordPress 3.4.2,which I installed via the dashboard and after review I do not have have within my editor/ftp directory called bp-custom.php file.

    EthanVan
    Spectator

    I just had success on a different domain. I’m starting to think it’s the WordPress update process is what is causing this bug/error. I thought we had done a 100% fresh WP 3.4.2 install when in fact it was an update.

    So, in order to avoid this bug you MUST install a completely fresh copy of WP 3.4.2 first then BP 1.6.1!

    Performing an update to your old WP will rustle jimmy and cause the BP 1.6.1 install to throw this error.

    Sigh… I hope WP fixes their update process because this is probably the most infamous and common bug known to the BP community. It’s also a pain in the boot.

    Thank you for your response. It was very much appreciated.

    #143885
    Paul Wong-Gibbs
    Keymaster

    Please please stop posting this on multiple topics. If you haven’t had a reply yet, it means no-one’s sure what the fix is.

    How did you install BuddyPress? What versions of WordPress and BuddyPress are you using? Do you have a bp-custom.php file (if so, what’s in it)?

    #143883
    modemlooper
    Moderator

    Turn resend.php into a page template and place it in your theme folder. create a page and attach the page template to it

    #143873
    mairaj
    Participant

    This plugins seems to be saying what I’m trying to achieve. However its not updated for more than a year and not working now.

    https://wordpress.org/extend/plugins/quote-cart/

    shanebp
    Moderator

    Please submit a ticket to https://buddypress.trac.wordpress.org/

    #143865
    @mercime
    Participant

    @dyst4f Based on the HTML structure of your theme, you need to change 16 template files within the 6 BP folders transferred to your continuum theme folder in server during the compatibility process.

    #143835
    9087877
    Inactive

    Try @modemloopers plugin:
    https://wordpress.org/extend/plugins/buddypress-extended-settings/
    By the way I need a prayer request so I am interested in your site.

    #143833
    9087877
    Inactive

    Edit:
    I am not trying to personally attack you but there is a pecking order and you have not earned the right to charge for a plugin yet. I program stuff like this while I am asleep so I have no use of your code other than testing it so non-programmers may benefit. People I respect are @mercime @hnla @r-a-y @djpaul @boonebgorges @johnjamesjacoby They never charge for helping a soul.
    Your a developer just like me so please do not use the word “we” to address me. You are an individual trying to sell a single plugin with with no credentials at all so don’t mislead people into thinking your some big corporation by using that word. Its condescending to speak to a fellow developer in that manner. @modemlooper has already made plugins free of charge and he has a ton of experience more than I have, and probably more than you as well. His plugins are solid so I am inclined to give links here for the sake of open source:
    This is a awesome plugin for free:
    https://wordpress.org/extend/plugins/buddypress-profile-menu/
    This is another awesome plugin for free that allows you to do many things including changing order of buddypress profile items among other things.
    https://wordpress.org/extend/plugins/buddypress-extended-settings/
    All credit goes to @modemlooper for his dedication and contributions to open source software. @r-a-y also has some awesome plugins that still are functional.

    #143828
    9087877
    Inactive

    Yes that is the latest version. See: https://wordpress.org/support/topic/plugin-bp-adminbar-for-admins-only-extra-space-after-php-closing-tag
    I cant see any white space but maybe I am overlooking it.

Viewing 25 results - 11,051 through 11,075 (of 22,660 total)
Skip to toolbar