Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 16,001 through 16,025 (of 32,678 total)
  • Author
    Search Results
  • chamaxou
    Participant

    Hi guys,

    I actually have the same issue but I don’t have WP Super Cache installed.
    However I have many other plugins installed…
    Do you know what plugin could cause the same effect ? Or perhaps a set into buddypress or wordpress itself ? (because of the use of permalinks for exemple…? I don’t know, I have no idea on what’s going on, I’m a newbie to wordpress and buddypress ! 😉

    Thanks a lot for your time.
    Max

    Andrew Tibbetts
    Participant

    I have this function that I pieced together a few months back that worked until a recent WP or BP upgrade (not sure which or when). The function adds blog comments as activity items so that I can have them show up in notifications without actually using the activity feed. It no longer works. Does anyone know why this wouldn’t work anymore?

    function rt_bp_blogs_record_comment( $comment_id, $is_approved = true ) {
    global $bp;

    // Get the users comment
    $recorded_comment = get_comment( $comment_id );

    // Don't record activity if the comment hasn't been approved
    if ( empty( $is_approved ) )
    return false;

    // Don't record activity if no email address has been included
    if ( empty( $recorded_comment->comment_author_email ) )
    return false;

    // Get the user_id from the comment author email.
    $user = get_user_by( 'email', $recorded_comment->comment_author_email );
    $user_id = (int)$user->ID;

    // If there's no registered user id, don't record activity
    if ( empty( $user_id ) )
    return false;

    // Get blog and post data
    $blog_id = get_current_blog_id();
    $recorded_comment->post = get_post( $recorded_comment->comment_post_ID );

    if ( empty( $recorded_comment->post ) || is_wp_error( $recorded_comment->post ) )
    return false;

    // If this is a password protected post, don't record the comment
    if ( !empty( $recorded_comment->post->post_password ) )
    return false;

    // Don't record activity if the comment's associated post isn't a WordPress Post
    if ( !in_array( $recorded_comment->post->post_type, apply_filters( 'bp_blogs_record_comment_post_types', array( 'post' ) ) ) )
    return false;

    $is_blog_public = apply_filters( 'bp_is_blog_public', (int)get_blog_option( $blog_id, 'blog_public' ) );

    // If blog is public allow activity to be posted
    if ( $is_blog_public ) {

    // Get activity related links
    $post_permalink = get_permalink( $recorded_comment->comment_post_ID );
    $comment_link = htmlspecialchars( get_comment_link( $recorded_comment->comment_ID ) );

    // Prepare to record in activity streams
    if ( is_multisite() )
    $activity_action = sprintf( __( '%1$s commented on the post, %2$s, on the site %3$s', 'buddypress' ), bp_core_get_userlink( $user_id ), '' . apply_filters( 'the_title', $recorded_comment->post->post_title ) . '', '' . get_blog_option( $blog_id, 'blogname' ) . '' );
    else
    $activity_action = sprintf( __( '%1$s commented on the post, %2$s', 'buddypress' ), bp_core_get_userlink( $user_id ), '' . apply_filters( 'the_title', $recorded_comment->post->post_title ) . '' );

    $activity_content = $recorded_comment->comment_content;

    // Record in activity streams
    $activity_id = bp_blogs_record_activity( array(
    'user_id' => $user_id,
    'action' => apply_filters_ref_array( 'bp_blogs_activity_new_comment_action', array( $activity_action, &$recorded_comment, $comment_link ) ),
    'content' => apply_filters_ref_array( 'bp_blogs_activity_new_comment_content', array( $activity_content, &$recorded_comment, $comment_link ) ),
    'primary_link' => apply_filters_ref_array( 'bp_blogs_activity_new_comment_primary_link', array( $comment_link, &$recorded_comment ) ),
    'type' => 'new_blog_comment',
    'item_id' => $blog_id,
    'secondary_item_id' => $comment_id,
    'recorded_time' => $recorded_comment->comment_date_gmt
    ) );

    // Update the blogs last active date
    bp_blogs_update_blogmeta( $blog_id, 'last_activity', bp_core_current_time() );
    }

    do_action('bp_blogs_comment_recorded',$activity_id);

    return $recorded_comment;
    }
    remove_action( 'comment_post', 'bp_blogs_record_comment', 10, 2 );
    remove_action( 'edit_comment', 'bp_blogs_record_comment', 10 );
    add_action( 'comment_post', 'rt_bp_blogs_record_comment', 10, 2 );
    add_action( 'edit_comment', 'rt_bp_blogs_record_comment', 10 );

    #146156

    In reply to: slider rating plugin

    @mercime
    Participant

    Haven’t seen a WP slider rating plugin yet. Only star rating https://wordpress.org/extend/plugins/gd-star-rating/

    #146155
    @mercime
    Participant
    #146150
    @mercime
    Participant

    You can use https://wordpress.org/extend/plugins/buddypress-docs/ or DIY http://buddydev.com/plugins/bp-simple-front-end-post/ or https://wordpress.org/extend/plugins/wp-user-frontend/

    Implementation would be different for each plugin so check out which one meets your requirements and easiest to carry out on your end.

    #146126
    @mercime
    Participant

    does this migration mean I’ll be moving my group forums to bbpress 2.0 or is it just a way to setup site wide forums?

    @daneglerum The link is working for me. Try to access via another browser perhaps? Or clear browser cache…

    The BP Group Forums are being merged into the bbPress plugin (Sitewide Forums) https://buddypress.trac.wordpress.org/ticket/3598 So at this point, you would be well-advised to start with Sitewide Forums and follow instructions in link posted earlier.

    Roger Coathup
    Participant

    As I said previously, the group_id is passed as the first parameter to the action.

    You need to add the parameters to your function.

    If you are not familiar with writing action functions in WordPress, you should read here: https://codex.wordpress.org/Function_Reference/add_action

     

    #146109
    danbpfr
    Participant
    #146108
    coups101
    Participant

    I have recently tried to install Buddy press on a wordpress site based on a Windows 2003 server running IIS.

    The software appears to install OK and the Template Pack runs Ok however when I activate the plug-ins and the links in the top right hand corner are updated. When I try to use them the system displays a “Page cannot be Found” error and the path appears to be wrong.

    I am using the Permalink structure which includes an index.php in all the URLs of the site but this is not displayed in the links from the top right menu. If I manually add the index.php into the URL then it displays a page but there appears to be no Style Sheet present and then again all sub links don’t work.

    Not sure if there is a setting somewhere to enable this.

    Any help gratefully received!

    #146074
    @mercime
    Participant

    There’s a premium facebook plugin which works with BP and mulitiste for sites I’ve handled http://buddydev.com/plugins/buddypress-facebook-connect-plus/

    Having said that, https://wordpress.org/extend/plugins/socialauth-wp/ looks good as I see that the plugin dev is active in supporting the plugin. I don’t think the plugin provides support for BP as the plugin dev would have added the BuddyPress to the plugin tags. Best place to ask is at plugin’s forums https://wordpress.org/support/plugin/socialauth-wp

    #146070
    Aron Prins
    Participant

    Dane,
    Thanks for your thorough readthrough of the forums and knowing what to put in you posts ;). Welcome to BuddyPress!

    Unfortunatly this is currently not possible. To my knowledge the people of bbPress and BuddyPress ( a select few awesome peeps ) are making bbPress(.org) more compatible with BuddyPress which should enhance it’s features ( if you ask me… ).

    Checkout this plugin: https://wordpress.org/extend/plugins/buddypress-topic-mover/

    Cheers, Aron

    #146069
    zacclay
    Participant

    I have a wordpress multi-site install and then installed http://buddydev.com/plugins/buddypress-multi-network/ so that I could have multiple buddypress networks.

    The problem is that I don’t want a user to be able to join any network they want.

    For example, I have 1.[domain].com and 2.[domain].com. Each one has its own buddypress network. The problem is, even if I have the private buddypress plugin installed, if someone has an account on 1.[domain].com, then they can just login on 2.[domain].com.

    I want to make it so that the user on 1.[domain].com would need to request access to 2.[domain].com in order to use it.

    Also, is there a way for a person to set their avatar once on one network and not have to set it again when they become a user on the other network?

    #146067
    rickkumar
    Participant

    Ok, found two plugins for ‘wordpress’ based on HybridAuth:

    https://wordpress.org/extend/plugins/socialauth-wp/

    https://wordpress.org/extend/plugins/wordpress-social-login/

    Q: Does any of these two plugins work with Multisite and BP?

    Thank you.

     

    #146066
    rickkumar
    Participant

    Thank you @rogercoathup Good to know for future reference when I need this functionality in few weeks.

    I just checked http://hybridauth.sourceforge.net/ and it looks very powerful and free.

    Is there any Multisite/BP plugin already available for this?

     

    Btw, here is the latest about “Social Sign In” using Facebook/Twitter/Google (linkedIn soon) plugin from addthis.com guys:

    https://wordpress.org/extend/plugins/addthis-social-sign-in/

    I asked them few questions as follows on there site:

    Introducing Social Sign In for WordPress

    My Questions:
    Is this for ‘social sign in’ only?
    Any plans to eventually include social sharing and social commenting?
    What kind of cost if any are we looking at?
    Does this plugin supports all the following:
    1. WP
    2. WP MultiSite
    3. BuddyPress
    Please advise.
    Thanks.
    AddThis.com answers:

    Matthew Keesan on November 28, 2012 at 10:00 am said:

    @RK
    1. It’s only Social Sign In. We have a host of other plugins however for some of these tasks. We decided to keep them separate to give you maximum flexibility.
    – Social sharing: https://wordpress.org/extend/plugins/addthis
    – Following: https://wordpress.org/extend/plugins/addthis-follow
    – Welcoming: https://wordpress.org/extend/plugins/addthis-welcome
    2. It’ll always be free! Since we’re just a middleman there’s no significant cost to us providing this service, so we’re happy to pass the savings on to you!
    3. We haven’t tested on Multisite or BuddyPress yet. If you do, I’d love to know what happens.

    —————————————————

    Note: I don’t have a live site yet.I am wondering if someone can test it for Multisite and Buddypress?

    #146057
    @mercime
    Participant

    https://wordpress.org/extend/plugins/buddypress-profile-menu/screenshots/

    @paintermommy k8peterson Create custom menu and use the menu widget for sidebar.

    jnpi
    Participant

    Update:

    As suggested from WordPress I deactivated all plugins and used only the Twenty Eleven theme.

    This is what I’ve got from pingdom.

    http://tools.pingdom.com/fpt/#!/qG7ENwOJN/http://altclass.com

    Waiting time is 730ms out of 930 ms needed to load my page.

    monkfish13
    Participant

    Hi,

    I am not an expert by any means, but this sounds like your host can;t be bothered to help you sort out the problem – i would change hosts.

    I have had issues like this in the past with server hosts, and upon threatening to leave, they have helped sort out the issue, which has always been at their end and nothing to do with the software.

    I doubt it would be wordpress or the other software you have installed that is causing the issue…think of the amount of sites that use this software…they aren’t going wrong.

    Do you have access to your WHM or server control panel ?

    If you do, then there is information in there that you can acquire that will help you.

    You should be able to see your servers status – which will tell you about the health of the systems resources.

    You should also be able to access the server process manager – which will indicate what actions are using those resources.

    Note down anything that has high figures and then use that data to approach your host and get them to help you.

    !! DON’T TRY AND ALTER ANYTHING YOURSELF UNLESS YOU KNOW WHAT YOU ARE DOING !!

    As your service provider, your host should be able figure out what is causing the problems, but I have come across some very awkward hosts in the past when trying to figure out an issue.

    If they are unwilling to help, I would be suspicious of their actions and find a different host, after all you are paying them for the service.

    jnpi
    Participant

    Hello, forum!

    My case is rather urgent due to pressure from my hosting company.

    I have recently tested my website loading time with pingdom and to my surprise I found out that something goes terribly wrong. Most of times waiting time consumes 1/2 – 2/3 of total page load. In the sample URL (http://tools.pingdom.com/fpt/#!/JyyRTtw9l/http://altclass.com) you can see by yourself that 3.2s out of the 4.56s required for loading my website was consumed as waiting time.

    I decided to contact my hosting company and inform them of my issue. They checked their server and claimed that problem occurs only with my account since my website consumes 100% of available CPU. They also warned me that if this persists then my account will be suspended.

    In an attempt to help me solve the problem they suggested the following steps:

    a. Reduce the number of posts on the front page of my blog
    —– As you can see that is not a problem for my front page as it is kept as simple as possible without any images attached —–

    b. Install anti-spam plugins in order to prevent spam-bot from creating load on the server.
    —– I already run the free version of Anti-Splog —–

    c. Optimize my WordPress database.
    —– I have done so through my cPanle tool phpMyAdmin —–

    d. Install a caching plugin such as WP-Cache or WP Super Cache.
    —– I am not sure, but after having checked the W3 Total Cache plugin, I found out that no such plugin should be used until site development is completed – maybe referring only to css? My site is still under construction. —–

    e. Decrease the number of external and internal links on my pages and leave only the most important ones.
    —– You can check it out, but I believe that links on my pages are not that many. It is hard to believe that is the base of my problem. —–

    Lastly, they have insisted that I have to address this problem to WordPress so that experts check my website and find out what is going wrong in my case.

    I am using up-to-date WP-Multisite, BuddyPress, s2Member and bbPress to ensure compatibility. I have never placed a hand on parent files, other than wp-config.php to enable subdomains and debug-mode. Instead I have created a child theme which I have testes with W3 XHTML validator (still 4 errors that I do not know how to fix) and Theme-Check plugin (everything looks fine).

    Can someone please help me with this case? I can not afford getting my hosting account suspended and I am not sure if my hosting company is speaking truth or they are taking advantage of my inexperience.

    My website is

    http://altclass.com

    Thank you in advance for any support. I have also let WordPress know of my issue, since I am not sure how I should proceed…

    #146034
    monkfish13
    Participant

    As BuddyPress is just a plugin that sits on WordPress it shares the same media gallery as that. Now, perhaps you want more functionality than that?

    Unless i am missing something it would appear not to work in that fashion.

    If, as an author, I upload image to a blog post, then go to my buddypress profile page to access my album ( using BP-album plugin ) – the images I upload to the blog post don’t appear in the profile album.

    The same is true vice versa – images uploaded to the BP gallery via a users profile, are saved in a different location, as it asks you to make the folder writable on installation.

    So is there a plugin that correlates the two so they work in unison?

    #146030
    maikelcoke
    Participant

    I installed WordPress 3.4.2 with Buddypress 1.6.1.

    If someone register on my site, he gets the activation mail. After cklicking on the link, my site says, that i try to input an activation key. Also if i copy & paste the key from the url, the activation is not possible.

    I searched this forums but no thread has a solution. At the moment i activate all accounts via the WP pending actionations plugin. But this cant be the way.

    Anyone can help me?

    #146028
    Tammie Lister
    Moderator

    As BuddyPress is just a plugin that sits on WordPress it shares the same media gallery as that. Now, perhaps you want more functionality than that?

    #146022
    danbpfr
    Participant

    Hi,

    you have some plugins who can do that.

    https://wordpress.org/extend/plugins/buddypress-docs/  – for the whole site

    http://lenasterg.wordpress.com/2012/04/17/buddypress-group-documents-for-bp-1-5-and-wp-3-3/ – group by group

    (was initially created by Peter Anselmo and now adapted to work with BP 1.5.5+ )

    #146014
    magoo25
    Participant

    I am using the latest wordpress and buddy press over at http://www.bridleinfocus.com

    This is a membership site using s2member for the back end member management.

    Recently, users haven’t been able to access their ‘settings’ page. Even me as the admin doesn’t get the settings page. Why would it return blank?

    – David

    Wp Master
    Participant

    I had install new buddypress plugin wordpress but when user entered new activity then it will entered twice in database and display twice in listing.

    Please give me suggestion for that.

    #146011
    Roger Coathup
    Participant

    Which theme are you using?

    Find that out, and edit in:  /wp-content/themes/your-theme/members/single/member-header.php

    If you haven’t got your theme structure setup correctly – then you need to do that first of all — have a look at the advice on theme development, theme structures on wordpress.org.  The documentation on buddypress.org also has advice on building child themes from bp-default, and on adapting existing wordpress themes (see template pack pages).

Viewing 25 results - 16,001 through 16,025 (of 32,678 total)
Skip to toolbar