Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 10,176 through 10,200 (of 22,644 total)
  • Author
    Search Results
  • #152928
    @mercime
    Participant

    I want to assign my Site Tracking to a different page.


    @km-schafer-1

    1. wp-admin Pages > Add New and title it “Sites” then click Publish
    2. wp-admin Settings > BuddyPress > Pages and assign the new Sites page to site tracking

    Also, every time I create a new site, when I click on it, I am taken to another installation of WordPress.

    Something’s gone awry with your multisite installation. Did you follow instructions at https://codex.wordpress.org/Create_A_Network ?

    At this stage, deactivate BuddyPress then create a subsite. If you are still being redirected to another WP install, please post the issue at https://wordpress.org/support/forum/multisite

    Please make sure that your multisite issue is resolved before re-activating BuddyPress.

    #152923

    In reply to: BuddyPress Compatible

    @mercime
    Participant

    @patrykos360 https://buddypress.trac.wordpress.org/roadmap – 8 more tickets at this time for BP 1.7. Yes, you will no longer have to edit the BP template files.

    You can test BP 1.7 out by downloading trunk version via:
    SVN – svn co https://buddypress.svn.wordpress.org/trunk/ OR
    ZIP file – https://buddypress.trac.wordpress.org/browser/trunk then click on “Zip Archive” near bottom of page and download to computer hard drive. Rename the zip folder from trunk-xxx to buddypress before uploading.

    Kevin M. Schafer
    Participant

    I figured it out! Yay for me. I just kept missing the menu to find this in My Sites/Network Admin/Sites.

    I was able to delete the unwanted site.

    #152876
    @mercime
    Participant
    #152866
    modemlooper
    Moderator

    Unfortunately, you have a theme that is heavy handed with it’s css and is forcing it’s style over the BP css. Theme compatibility is working it’s just that your theme has css that is styling the BP markup in an unflattering light.

    Theme compatibility is not perfect. It’s main goal is to get BuddyPress inside a WordPress and function. How it looks can rely on the WordPress as in your case.

    You will need to change some of the css in your theme to fit BP inside better.

    #152849
    arredoannunci
    Participant

    Hello Hugo, you are very helpful to people like me who want to learn,
    could you tell me how to do?
    I followed the procedure twice for my template (http://bpsocialnetwork.wordpress.com/2013/01/22/u-design-theme-themeforest/)
    but both times I have always the same error:
    Parse error: syntax error, unexpected ‘<' in / members / miproduco / wp-content / themes / u-design / header-buddypress.php on line 199

    Now as you can see I reinstalled everything (without modification) but not good
    please help me

    #152809
    omgbud
    Participant

    Hi, I am using this useful plugin named “Custom Profile Filters for BuddyPress” to remove link of any fields I want.

    This plugin dont come with admin panel, so need to edit the custom-profile-filters-for-buddypress.php file.

    After this line:
    `$no_link_fields = array( // Enter the field ID of any field that you want to appear as plain, non-clickable text. Don’t forget to separate with commas.`

    You can add in the field (field name must match) that need to be linkless:
    `’bio’,
    ‘something’ ,`

    This plugin allows you to setup social field too like just enter facebook username or id and it will auto generate the url.

    https://wordpress.org/extend/plugins/custom-profile-filters-for-buddypress/

    Note: this plugin is old and not update, there is an error with the social field url, but just need to apply this fixed:

    https://wordpress.org/support/topic/plugin-custom-profile-filters-for-buddypress-new-profile-fields-in-16-ruins-the-functionality-of-this-plugin

    Hope it helps.

    Saurabh
    Participant

    @sahil1802

    This is a very very late answer. Might be irrelevant now, but BuddyPress Media has evolved from being a Kaltura port.

    It is now a powerful stand alone media manager for BuddyPress.

    Regards.

    #152787
    @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.php

    For more assistance, please post at https://wordpress.org/support/forum/multisite

    NumberOneComputer
    Participant

    Thank you my problem becomes solved.

    Best regards

    modemlooper
    Moderator

    make sure the BuddyPress plugin folder is named buddypress

    Renato Alves
    Moderator

    Hi Hamedharry,

    see this:

    https://buddypress.org/support/topic/buddypress-1-7/#post-149853

    It is related to your question.

    #152749
    MeRuud
    Participant

    Not 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.

    #152744
    MeRuud
    Participant

    So 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,
    Ruud

    #152742
    Thomasboerre
    Participant

    Yes,

    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');`

    #152723
    @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-troubleshooting

    #152711
    userabuser
    Participant

    @modemlooper,

    Its not a BP component, its actually a page under the page post_type.

    I’ve now got my code working, it was conflicting with the BP custom profile menu plugin (or vice versa). After disabling that plugin and applying the suggestion as provided by Shane, it now works.

    However when using the BP custom profile menu plugin, whatever pages were added (as per the normal WordPress Menu system) would correctly load themselves upon navigating to said URL.

    With the manual method I am using above, the URLs do 404 on me.

    So using the screen_function callback I can run a query for the page named account – which is fine, happy to do that.

    But I’d like to know whether there is a particular method I need to apply (rewrite rule) to have the links work (navigate to their permalink destination) without having to use the screen function?

    Anyway, for now thanks for the assistance and to Shane for providing the insight I needed to get this working correctly.

    #152696
    Ben Hansen
    Participant

    small update still no final resolution as of yet but they did reiterate that this issue is not normal so they wouldn’t be holding us to the inflated number in terms of billing so that’s definitely good and i do feel somewhat safer in recommending them. i would say that given the fact that i am personally 2 for 2 at this point i would definitely inform a client of the possibility prior to recommending them. i would say they have been very attentive in pretty much every support situation i have had so personally i have faith at this point at least they will turn out to be as i have suspected almost from the beginning the sort of ultimate managed hosting environment at least as it pertains to wordpress.

    #152641
    ssmedia
    Participant

    Also, wordpress version: 3.5.1 and buddypress version: 1.6.4

    #152635
    houfton
    Participant

    @mindyjoy do you have access to the database, eg through your Control Panel and phpMyAdmin?

    It might help to look in there to see what is going on.

    In the wp_users table there is a ‘user_status’ column. I don’t think WordPress uses it but BuddyPress does and so do these plugins (I believe). Active Users are ‘0’ unactivated are ‘2’.

    There is a ‘user_activation_key’ column but I think the relevant keys are found in the wp_usermeta table. Search the ‘meta_key’ column in that table for ‘activation_key’ and the keys will appear in the ‘meta_value’ column.

    Hopefully those tables should tally with what is shown by the plugins. Or else you could email your users with the keys…

    #152621
    Asynaptic
    Participant

    @Florence, you seem to have it up and running thanks to @modemlooper ‘s help. Just in case, have you seen this plugin? it is probably the most popular one and it was made to work with BP (Boone wrote it):

     

    https://wordpress.org/extend/plugins/invite-anyone/

     

     

    Stephen Edgar
    Moderator

    I have a feeling it may be related to Step #6, when the bbPress repair tool ‘Repair BuddyPress Group Forum relationships’ works only the first time it is run, subsequent attempts will not actually update bp_groups_groupmeta.id with the correct forum ID.

    Details of this are in bbPress ticket #2089

    If and ONLY if in your WP database tables `wp_bp_groups.slug` is an exact match with the associated post for the forum in `wp_posts.post_name` then the 2089.2.diff patch will work as long as this forum was one of the group forums originally imported.

    Diving into phpMyAdmin and looking at these values and manually updating them I think will be the best solution.

    Erlend
    Participant
    • WordPress 3.5.1
    • BuddyPress 1.6.4
    • bbPress 2.2.4

    After we had converted our legacy forum to bbPress 2, I created a new forum category called “Projects” and made all the remaining group forums parent to that category. By remaining, I mean that the other group forums had now been re-purposed as ordinary forums with no group attached. I did not re-link the remaining group forums with their respective groups until a few months (and probably a BuddyPress and bbPress update in between) after the initial forum conversion.

    We have a simple hierarchy. 3 main categories (Troubleshooting, Development and Projects) act as parents for all underlying forums. The ‘Projects’ category holds all old and new group forums. We followed the BP Docs to do the conversion right.

    #152608
    Florence
    Participant

    There’s no code field showing up on my registration page. I have used BAW before in combination with S2members, and it worked just fine. I posted about this in the wordpress support forum, but I didn’t get a reply.

    #152589
    Ben Hansen
    Participant

    indeed, something tells me that this maybe a common problem amongst the managed wordpress hosts (pure conjecture nothing really to back that up) as they all charged based on visitors. i can say that the service itself has been great and having actual phone support as well as the fact that you don’t have to explain how wordpress works or what buddypress is every time you call in or start a ticket is very nice. there are a few quirks to the system that take a little getting used to but if it weren’t for this one issue i would have no hesitation to fully endorse them. anyway i’ll definitely update the thread once i have some kind of final resolution.

Viewing 25 results - 10,176 through 10,200 (of 22,644 total)
Skip to toolbar