Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 31,926 through 31,950 (of 32,678 total)
  • Author
    Search Results
  • #3957
    patrick10128
    Participant

    I run a small network called the Youth Bloggers Network, a WordPress and bbPress powered site which currently lacks some features that BuddyPress offers. I am wondering if using WordPress MU and BuddyPress is the best option for my network: http://youthbloggers.net/.

    People who join the network usually have their own blog already, so the WordPress MU part is not necessary for me. However, the features BuddyPress provides including Friends, Private Messaging, and Groups appeal to me very much. I am wondering if it is worth switching over to BuddyPress right now. I understand that it is still under development and requires a lot of work to get things up and running – including a theme that matches the current look of my site.

    Are there any BuddyPress users willing to share their thoughts on BuddyPress, and if they think it is right for me?

    #40330
    Archie Webmaker
    Participant

    Here’s one option:

    I used advance excerpt Plugin https://wordpress.org/extend/plugins/advanced-excerpt/

    Activate and set the excerpt word number.

    and place the <?php the_advanced_excerpt(); ?> in the index.php

    This works for me.

    I am trying this plug too http://www.dailyblogtips.com/homepage-excerpts-wordpress-plugin/

    #40280
    Burt Adsit
    Participant

    You should ask johnjamesjacoby about this migrate issue. He’s done something like that recently. I think the answer is you need to export your data, using phpmyadmin or with the native export/import tool in wp.

    http://www.techtraction.com/2007/07/30/move-or-backup-wordpress-data-with-the-built-in-importexport-feature/

    Lots of stuff if you google ‘wordpress export’, ‘wordpress import’

    #40262

    Wow, this is Codex worthy if you ask me. Good find Burt.

    #40259

    In reply to: limit 1 blog per user

    produlz
    Participant

    I found a solution, but I’m not a PHP programmer, It’s a hack of the code of this topic https://mu.wordpress.org/forums/topic.php?id=5930

    Let’s go only if you are using the lasted trunk:

    Open the mu-plugins/bp-blogs/bp-blogs-templatetags.php – Find this code starting at line 682 end at 696

    <?php printf(__("By filling out the form below, you can <strong>add a blog to your account</strong>. There is no limit to the number of blogs you can have, so create to your heart's content, but blog responsibly.", 'buddypress'), $current_user->display_name) ?>

    <?php _e("If you’re not going to use a great blog domain, leave it for a new user. Now have at it!", 'buddypress') ?>

    <form id="setupform" method="post" action="<?php echo $bp->loggedin_user->domain . $bp->blogs->slug . '/create-a-blog' ?>">

    <input type="hidden" name="stage" value="gimmeanotherblog" />
    <?php do_action( "signup_hidden_fields" ); ?>
    <?php bp_blogs_signup_blog($blogname, $blog_title, $errors); ?>

    <input id="submit" type="submit" name="submit" class="submit" value="<?php _e('Create Blog &raquo;', 'buddypress') ?>" />

    <?php wp_nonce_field( 'bp_blog_signup_form' ) ?>
    </form>

    Replace using this newbie code:

    // One Blog Only HACK START
    <?php $blogscheck = get_blogs_of_user($current_user->ID);
    $blogarrayvalue = (get_object_vars($blogscheck[1]));
    $blogsiteURL = "http://locutorpro.com.br";
    if ($blogarrayvalue[siteurl] == $blogsiteURL)
    {
    echo "";
    printf(__("By filling out the form below, you can <strong>add a blog to your account</strong>.", 'buddypress'), $current_user->display_name);
    echo "
    ";
    printf(__("If you’re not going to use a great blog domain, leave it for a new user. Now have at it!", 'buddypress'));
    echo "
    ";
    echo "<form id='setupform' method='post' action='";
    echo $bp->loggedin_user->domain . $bp->blogs->slug ;
    echo "/create-a-blog'>";
    echo "<input type='hidden' name='stage' value='gimmeanotherblog' />";
    echo do_action( "signup_hidden_fields" );
    echo bp_blogs_signup_blog($blogname, $blog_title, $errors);
    echo "<input id='submit' type='submit' name='submit' class='submit' value='";
    printf(__("Create Blog &raquo;"));
    echo "' />
    "; echo wp_nonce_field( 'bp_blog_signup_form' );
    echo "</form>";
    }
    else
    {
    printf(__("Sorry, you can have 1 blog only.", 'buddypress'));
    }
    ?>
    // One Blog Only HACK END

    I hope it help!

    Thank you for all dev team!

    #40251
    Lance Willett
    Participant

    Very cool and useful — thanks.

    #40224
    nicolagreco
    Participant

    Cool! Thanks burt

    #40223
    Per Søderlind
    Participant

    :-D

    Burt Adsit
    Participant

    I ran across this little gem while looking for a php class for ‘modified pre-order tree trasversal’. Try saying that three times real quick. No idea how I arrived at ‘WordPress Hooks & Filters Flow’ but I’m glad I did.

    bp is entirely event driven in nature. Everything responds to or creates events that wp calls actions and filters. This script analyzes a live wp install and dumps all the actions/filters like so:

    wp

    * Priority 1 :

    1. bp_core_set_uri_globals()

    2. bp_core_setup_globals()

    3. bp_activity_setup_globals()

    4. bp_blogs_setup_globals()

    5. friends_setup_globals()

    6. groups_setup_globals()

    7. messages_setup_globals()

    8. bp_wire_setup_globals()

    9. xprofile_setup_globals()

    * Priority 2 :

    1. bp_core_add_settings_nav()

    2. bp_core_setup_nav()

    3. bp_activity_setup_nav()

    4. bp_blogs_setup_nav()

    5. friends_setup_nav()

    6. groups_setup_nav()

    7. messages_setup_nav()

    8. bp_wire_setup_nav()

    9. xprofile_setup_nav()

    10. bp_show_home_blog()

    11. bp_show_register_page()

    12. bp_show_activation_page()

    * Priority 3 :

    1. bp_core_setup_session()

    2. bp_activity_action_sitewide_feed()

    3. bp_activity_action_personal_feed()

    4. bp_activity_action_friends_feed()

    5. bp_forums_setup()

    6. groups_action_join_group()

    7. messages_action_view_message()

    8. messages_action_delete_message()

    9. messages_action_bulk_delete()

    10. xprofile_action_delete_avatar()

    11. xprofile_action_new_wire_post()

    12. xprofile_action_delete_wire_post()

    * Priority 4 :

    1. groups_screen_group_admin_edit_details()

    2. groups_screen_group_admin_settings()

    3. groups_screen_group_admin_avatar()

    4. groups_screen_group_admin_manage_members()

    5. groups_screen_group_admin_requests()

    6. groups_screen_group_admin_delete_group()

    * Priority 5 :

    1. bp_core_directory_members_setup()

    2. bp_core_search_site()

    3. bp_blogs_directory_blogs_setup()

    4. groups_directory_groups_setup()

    * Priority 6 :

    1. bp_core_get_random_member()

    2. bp_blogs_redirect_to_random_blog()

    3. groups_redirect_to_random_group()

    * Priority 10 :

    1. bp_core_catch_no_access()

    2. bp_core_add_js()

    3. xprofile_add_js()

    What you see above is bp’s wake up event ‘wp’, the bp functions that hook it and the sequence they are called. Way cool! In my particular install there are:

    Number of hooks 293

    Number of registered filters / actions : 673

    I get to see all of them live and in person. You can too. From Ozh’s description of this utility:

    WordPress Hooks & Filters Flow

    4 blablas On: 2006/05/16 Viewed: 6774 times

    Basically, a plugin for WordPress creates a PHP function (a filter or an action) which is called when a particular event (a hook) occurs, for example when a post is printed or when a comment is posted (for more info about hooks, filters and action, check the Codex)

    When developping a new plugin, you sometimes encounter unexpected behaviors from your code, which can originate from a filter conflict : another PHP function with a higher priority was triggered before your own function, and processed the same bits you’re trying to pass through your function.

    That’s why when developping plugins, it’s important to be well aware of what I call the Filter Flow : for each hook, which functions are called in which order ?

    So, I wrote this script : WordPress Hooks & Filters Flow

    I thought other developers might be interested.

    http://planetozh.com/blog/my-projects/wordpress-hooks-filter-flow/

    #40218
    nicolagreco
    Participant

    You could wait the integration of bp in wp,

    or (i think it’s better) you could try copying some tables in your new mu install:

    example:

    copy wp_users to wp_users

    wp_postmeta to wp_1_postmeta

    wp_posts to wp_1_posts

    etc etc..

    that’s a bit difficult to do, maybe others could help you better than me.. :)

    Nicola

    #40173
    Gibcosta
    Participant

    unfortunately this did not work for me, i’d also like to use one wpmu install and run multiple separate domains with buddypress on a subdomain and bbpress, using the inove theme.

    see my post on wpmu forum

    https://mu.wordpress.org/forums/topic.php?id=11695#post-70149

    Hi everyone,

    I’m new to BuddyPress and I had a search on this forum before adding this new topic. Unfortunately I didn’t find anything.

    I already have a standard (not MU) WordPress website with almost 100 users. Everyone with their profile and posts. I’m planning to migrate to a social network platform for my users, and I’d like to export users and their data into WordPressMU/BuddyPress.

    Is there any workaround or plugin, to do this?

    Thanks in advance for your help.

    #40159
    cinnemon
    Member

    Thank you for your reply. As I noted earlier, I’m already running a WordPress blog network with active members. Incidentally, the README.txt file for WordPress actually uses the directory /blogs as an example:

    * If you want to have your WordPress MU installation in its own

    subdirectory on your web site (e.g. http://example.com/blogs/),

    rename the directory wordpressmu to the name you’d like the

    subdirectory to have and move or upload it to your web server.

    For example if you want the WordPress MU installation in a

    subdirectory called “blog”, you should rename the directory called

    “wordpressmu” to “blogs” and upload it to the root directory of your

    web server.

    I imagine this may be a problem for others who went in this direction. Are you saying that those of us in this situation are out of luck with BuddyPress unless we reinstall and try to import all of our users’ blogs into the new site?

    Thanks again, I do appreciate your time on this.

    Burt Adsit
    Participant

    get_bloginfo(‘wpurl’).”/wp-admin/profile.php

    should be replaced with a call to: bp_core_get_userurl($bp->loggedin_user->id) which is the url to the currently logged in user. You’ll have to declare ‘global $bp;’ someplace before that in the code.

    #40136
    Burt Adsit
    Participant

    Sounds like a job for wpmu forums. It would really get more attention there from those people who have lots of wpmu experience: https://mu.wordpress.org/forums/

    #3915
    stefanovski
    Member

    I’ve installed wordpress MU and it works correctly. Then i installed buddypress but when i moved the themes into the correct folders and changed them in the ADMIN settings the theme did not change to the buddy press theme. any suggestions?

    #3914

    Topic: smtp plugin?

    in group forum Installing BuddyPress
    Ekine
    Participant

    One of the biggest email service provider (in my country) doesn’t like emails which are not send through smtp. So my question is if there is a working smtp plugin available for wordpress+mu & buddypress?

    thanks

    #3912
    Kunkel
    Participant

    So I have successful installed wordpress mu plus buddy press and absolutely love it. Only one slight problem, I think the htaccess / mod rewrite for the registration urls are messing up

    http://fanbud.com/

    And try and click create a free account or sign up and I end up at

    http://fanbud.com/wp-login.php?redirect_to=http://fanbud.com/register

    Any ideas on how to fix this

    #40105

    Is there any way to get the WordPress Plugin “advanced axcerpt” to work here?

    #40091
    mspecht
    Participant

    Hi Kelly,

    Each blog uses it’s own theme so you will need to write your own actions to do this similar to https://mu.wordpress.org/forums/topic.php?id=8041 and http://premium.wpmudev.org/forums/topic.php?id=653 would be my guess.

    #40087
    hyrxx
    Participant

    there is a way to edit the users data, i have a plugin installed that allows you to go to users and then click a link and it logs you in as the selected user, obviously this means you can edit thier profile, the link only shows up for the site admin

    the plugin is: user switching – https://wordpress.org/extend/plugins/user-switching/

    the only annoyance is that once you switch users it means you must login again to get back to admin or watever, i.e. it doesnt allow switching back and forth between accounts

    it does help greatly though, hope this helps you

    ztas
    Member

    Hello

    http://weblogplaza.com/2009/02/21/updated-to-wordpress-27/

    On this page something goes wrong with the sidebar div, it’s the same problem for other articles when you view them.

    Home, blog itself and member pages work fine.

    I use latest SVN, 1209

    #40041
    Sgrunt
    Participant

    yawn….early morning in Italy. If you first activate the facebuddy home theme, and then select site admin>buddypress>select theme>facebuddy it does not load? i seee that here all works: http://wordpress-blog.nl/

    please be sure to have downloaded the latest version of the zip (it was uploaded yesterday)

    #40021

    In reply to: nginx re-write rules

    Per Søderlind
    Participant

    I’m using this one (found it on mu.wordpress.org/forums). I’m having problems creating new blogs, but I’m not sure if it’s nginx causing the problem (it works fine with wpmu):

    server
    {

    listen 80;
    server_name DOMAIN.COM *.DOMAIN.COM;

    access_log /usr/local/nginx/logs/DOMAIN.COM.access.log;
    error_log /usr/local/nginx/logs/DOMAIN.COM.error.log;

    # rewrite rule for files

    location ~* ^.+.(xml|jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js|swf)$
    {
    root /home/web/DOMAIN.COM/www;
    rewrite ^/files(/.*)$ /wp-content/blogs.php?file=$1 last;
    expires 10d;
    break;
    }

    # rewrite rule for sitemap under the lines that handles upload files

    rewrite ^(.*/)?sitemap.xml wp-content/sitemap.php;

    # rewrite errors

    location /
    {
    #auth_basic "Restricted";
    #auth_basic_user_file /etc/nginx/htpasswd;
    root /home/web/DOMAIN.COM/www;
    index index.php;
    error_page 404 = /index.php?q=$uri;
    }

    #send php requests to fast cgi

    location ~ .php$
    {
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME /home/web/DOMAIN.COM/www$fastcgi_script_name;
    include /usr/local/nginx/conf/fastcgi_params;
    }

    }

    #40018
    sha_munira
    Participant

    thanks, its because im not using wordpress MU…silly mistake..haha

Viewing 25 results - 31,926 through 31,950 (of 32,678 total)
Skip to toolbar