Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 6,801 through 6,825 (of 22,621 total)
  • Author
    Search Results
  • #228028

    In reply to: Live Notifications

    Henry Wright
    Moderator

    From a regular users point of view, I find it unlikely they’ll even bother to acknowledge new email notifications,

    Agreed but I think it depends somewhat on the community. I can see email alerts being highly useful in some communities and not so useful elsewhere.

    BuddyPress is first and foremost a platform. It puts foundations in place for people to build on (hence why we have plugins and themes). The Live Notifications plugin is a good example. It makes use of the bp_notifications database table put in place by BuddyPress. If a webmaster wants to have ‘live’ notification functionality, then they can use that particular plugin. Keep in mind some webmasters may have no need for live notifications and may not want them on their site. Each (WordPress) AJAX request makes a call to admin-ajax.php – which results in a very slight delay in page load speed due to the extra processing required. This delay might not be very noticeable on sites with low activity or extremely powerful servers, but could be very noticeable on a site using a clunky hosting infrastructure or on a site with tons of activity. Imagine packing feature after feature into core by default – it would bloat the plugin unnecessarily.

    #228022

    In reply to: Live Notifications

    Henry Wright
    Moderator

    Hi @style960

    Email notifications are fired off instantly (unless queued by your mail server). Web notifications (as you’ve noticed) need a page refresh by default. Ajax would need to be put into place in order for them to become ‘live’. You can request this feature over at Trac but there’s no guarantee the functionality will make it into core.

    Hope that helps!

    #228015

    I’m facing the same problem. Just installed WP on Virtualbox with Vagrant (VVV WordPress), created WPMU and then added the BuddyPress Multi Network plugin. All plain and clean, latest versions, no other whistles and bells.
    Admin is marked as spammer, but status is green (active, not red(spammer)).

    #227997

    In reply to: Change Favorites Text

    Henry Wright
    Moderator

    BuddyPress Like might not be what you want but I thought I’d point it out. You can customise the ‘like’ text via the WordPress admin area.

    #227995
    Paul Wong-Gibbs
    Keymaster

    We don’t have our own option for that. Use WordPress’ “allow registration” option which I think is in wp-admin > Settings > Reading.

    Regarding the bar, no. Again, it’s WordPress’ bar, and there are probably helper plugins which will turn it off for you (or code snippets); you should be able to find something on Google pretty easily.

    #227993

    In reply to: Language

    Paul Wong-Gibbs
    Keymaster

    Contribute to the translation on https://translate.wordpress.org/projects/buddypress/dev and then, eventually, your WordPress will download the updated translation automatically. 🙂

    #227980
    shanebp
    Moderator
    #227970
    Emineminero
    Participant

    @shanebp yes, its enabled but nothing happens.
    The filled fields on WordPress profile arent showing on buddypress profiles :/

    Tanner Moushey
    Participant

    Great, glad that fixed it! You can see the list of WP actions here: https://codex.wordpress.org/Plugin_API/Action_Reference.

    To limit this redirect just to the home page update it to something like this:

    add_action( 'template_redirect', 'redirect_visitors' );
    function redirect_visitors() {
        if ( !is_user_logged_in() && is_front_page() ) {
    	wp_redirect( site_url() . '/my-site-registration' );
            exit;
       }
    }
    Tanner Moushey
    Participant

    Hey @professornate! Thanks for posting in the forums!

    The issue you are seeing here is a result of some BuddyPress assets not loading. The site is throwing a Javascript error and that is preventing the page from loading.

    First thing to try here is to deactivate and reactivate the BuddyPress plugin. If the issue persists, try changing your theme to one of the default WordPress themes (say, twentytwelve). I’m virtually certain that one of those steps will fix the issue. Let me know if it doesn’t.

    If the issue is fixed by switching the theme to twentytwelve, try switching it back to your current theme. If the issue comes back, then there is something up with the theme and you should try re-installing it.

    #227953
    kitchin
    Participant

    More fun with “bp_setup_current_user was called incorrectly.” I tracked it down to the plugin Buddypress Wall in our site. See: https://wordpress.org/support/topic/dashboard-warning-and-fix-bp_setup_current_user

    #227945
    ElectroMagnetic
    Participant

    Hi garciasanchezdani.
    Great site dude, I can see you spent a lot of time on this…Great!!
    Like Paul said 2.4 megs for a home page, Phew thats huge.
    Also 117 requests, also way to many.

    Try use http://www.jpegmini.com/main/shrink_photo to compress “all” your jpeg images
    And https://tinypng.com/ to compress all your png images

    they are both free to use or you can sign up and buy ( sorry I’m not promoting them, I use them for all my sites)
    Also add the following to the begining of your htaccess file…before the wordpress code; and it should help with some of your Yslow speeds.

    ////////////////////////////////////////////////////////////////////////////////////////////////

    AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xhtml+xml
    AddOutputFilterByType DEFLATE application/x-javascript application/javascript text/javascript text/css

    <FilesMatch “\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$”>
    ExpiresActive On
    ExpiresDefault “access plus 1 year”
    </FilesMatch>

    Header unset ETag
    FileETag None

    ////////////////////////////////////////////////////////////////
    I would try as far as possible to keep my pages down below 600k
    and request to less than 50

    #227944
    Henry Wright
    Moderator
    markou
    Participant

    Hi, Thanks for responding. Yes I have. I have used tested it with many themes including the twenty twelve and the twenty fourteen. Buddypress is the only plugin I have installed. I’m using wordpress 4.0 and buddypress 2.1.1. I’m running on a localhost MAMP. I just installed the server along with everything else a few hours ago on this computer.

    #227931
    shanebp
    Moderator

    also – your links point to:

    <a href="http://www.JenniferMFitness.com/groups/new-year-new-you/">New Year, New You</a>

    Note the capitals in the href.

    You might want to try changing them to lower case in wp-admin/options-general.php
    in the WordPress Address (URL) and Site Address (URL) fields.

    #227927
    shanebp
    Moderator

    Then it may be your .htaccess file.
    It should look like this:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress
    
    #227905
    nolls
    Participant

    Hi,
    you’ve got a lot of plugins in your site. Please check for example with this plugin
    https://wordpress.org/plugins/p3-profiler/ which plugin slow down your side.
    Then I would reflect if I need all plugins realy….

    #227846
    Henry Wright
    Moderator

    Hi @ddt

    This isn’t a problem I’ve come across myself. Can you provide some links to where you’ve read about BuddyPress not liking WordPress in its own directory (as opposed to the root dir)?

    #227828
    louboulos
    Participant

    @milenushka
    BuddyPress 2.1.1
    Wordpress latest

    #227812
    shanebp
    Moderator

    Perhaps those styles are no longer being used ?

    You can download older versions of BP here.

    Make a backup of your database.

    Then deactivate the BP plugin.
    Then upload another version of BP and activate.

    #227738
    danbp
    Participant

    Better a child theme and to start, read here first:
    https://codex.wordpress.org/Child_Themes

    and once you understood how it works, you can read again
    https://codex.buddypress.org/themes/building-a-buddypress-child-theme/

    and search on the forum for topics related to theme. 😉

    #227732
    mohammad-mursaleen
    Participant

    Try deactivating all plugins and then check if this issue still continues.

    Explanation:
    Mostly it happens if some plugin is interfering in registration process because the way BuddyPress registers a user is a bit different then what happens in WordPress by default for which usually plugins are designed.

    #227731

    In reply to: Separate Business User

    navinachettri
    Participant

    Hi Henry

    Thanks for giving me the direction. Being a novice, it will take time but I will follow your guidelines.

    I was thinking that I would need a multisite installation of wordpress but I guess I was way off target.

    #227729

    In reply to: Separate Business User

    Henry Wright
    Moderator

    Hi @navinachettri

    1. Have you searched the plugin directory?
    2. This can be done via hooks. It will need some custom code (not much, just a few lines).
    3. You could hide or show xProfile fields according to role. How exactly roles are created and managed will be dependent on point 1
    4. Again, to distinguish business users from ‘normal’ users, you’d use the roles created via the plugin you’re using from point 1. The jobs and adverts could each have their own custom post type
    5. This will need to be custom coded

    Hope that helps?

    #227382

    In reply to: Facebook-esk Features

    danbp
    Participant

    Hi julia,

    it seems that you’re in a deep reflexion about your site, here 2-3 things.

    Wait a little before doing more to get your site a clone of FB. It’s not possible, and comparison will always exist if you try to do that. You’re not FB. As simple as that i guess. 😉

    People need a little time to accept new rules. You decided to create a site for them. They have to respect that when they decide to follow you in this new adventure.

    members don’t feel like that’s the same. With reason, as it is not the same.

    The question will more be, why do they come to your site ? Because it looks like FB or because you have some good content ?

    Have you tried this plugin ?

Viewing 25 results - 6,801 through 6,825 (of 22,621 total)
Skip to toolbar