Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 6,601 through 6,625 (of 22,683 total)
  • Author
    Search Results
  • #231712
    valuser
    Participant

    Could be server related.

    I had the same issue with one theme on one server (same theme worked perfectly on local installs and on other servers) though comments and activity posting were disabled. javacripts were not loading on one particular server for this particular theme.

    The solution, provided by the theme developer, that worked for me (for that problem, which may not be yours, so may not be your solution) was to put the function below in functions.php

    add_action( 'wp_enqueue_scripts', 'load_buddypress_js'  );
    function load_buddypress_js () {
    	if (bp_is_group() || is_page( 'activity' )) {
    		wp_enqueue_script('buddypress_query',plugins_url() . '/buddypress/bp-core/js/jquery-query.min.js',array("jquery"));
    		wp_enqueue_script('buddypress_members',plugins_url() . '/buddypress/bp-core/js/widget-members.min.js',array("jquery"));
    		wp_enqueue_script('buddypress_cookie',plugins_url() . '/buddypress/bp-core/js/jquery-cookie.min.js',array("jquery"));
    		wp_enqueue_script('buddypress_scroll',plugins_url() . '/buddypress/bp-core/deprecated/js/jquery-scroll-to.min.js',array("jquery"));
    		wp_enqueue_script('buddypress_js',get_template_directory_uri() . '/buddypress/js/buddypress.min.js',array("jquery"));
    		wp_enqueue_script( 'heartbeat_js', get_template_directory_uri() . '/wp-includes/js/heartbeat.min.js', array(), '4.1', true );
    	}
    }

    The last item, heartbeat.min.js, is a core wp file from the /wp-includes/js/ folder which this server, specialising in WordPress, was apparently, unilaterally and undeclared, refusing to load!!!!

    #231690
    Henry Wright
    Moderator

    Hi @wuvu2

    This is more related to WordPress than it is to BuddyPress. Try asking your question over at https://wordpress.org/ where you may get more joy

    #231687
    disha76
    Participant

    http://demo.rtcamp.com/rtmedia/members/admin/
    They have some themes which provide this. You can also make a request here https://buddypress.trac.wordpress.org/ to incorporate this as all social nets and social scripts are having this feature these days.

    #231683
    Henry Wright
    Moderator

    Hi @nunolopes99

    I’m not aware of anything like this available but Custom Header Extended is a plugin which allows users to set a header image on a per-post basis. You could use that as a starting point for ideas on how to achieve what you’re looking to do.

    #231665
    tatakatte
    Participant

    @Here’s everything that I have in my functions.php

    <?php
    /**
     * @package WordPress
     * @subpackage
     * @author
     * @since 1.0
     */
    
    /**
     * Child Theme Functions
     * Add custom code below
    */ 
    
    function my_login_redirect() {
        if ( is_user_logged_in() && bp_is_register_page() )
            bp_core_redirect( home_url() . '/stream/' );
    }
    add_action( 'template_redirect', 'my_login_redirect' );

    As for @bphelp’s, the slug is really /stream/. I checked it after reading your reply, but it really is /stream/. Also shouldn’t it return a 404-error if it’s a non-existent page? Please correct me if my understanding is wrong.

    #231663
    Henry Wright
    Moderator

    What info is needed

    It’s hard to say with something like this as it could be something as simple as flushing your permalinks (this just involves visiting your permalinks page under Settings) or it could be a problem with your .htaccess file or an issue with how you’ve installed WordPress.

    or would you recommend a fresh installation?

    It depends on how easy it is to set up afresh. If you don’t have anything to lose then go ahead. Else, if you have lots of website users, and a database full of content then it might be worth looking for a solution instead.

    #231647
    aces
    Participant

    @timothylegg
    Just a thought – have you got pretty permalinks set up?

    In WordPress settings > permalinks ( /wp-admin/options-permalink.php )

    Getting Started

    #231640
    Henry Wright
    Moderator

    Hi @timothylegg

    But when I follow the path of Settings -> BuddyPress and then click the Pages tab, I get a page where I associate a WordPress page with each BuddyPress component directory. When I click on ‘View’ for either of the ‘Members’, ‘Activity’, or ‘Groups’, I get a 404 page.

    Check if the members, activity and groups pages are actually created by going to your admin area and then clicking on Pages

    #231636
    Paul Bursnall
    Participant
    #231621

    In reply to: How to "Like" ?

    disha76
    Participant

    Okay I found this https://buddypress.trac.wordpress.org/ticket/5610
    This is really a critically ill-experience for the end-users BUT the milestones are being delayed from 2 to 2.1, then to 2.2 and then to 2.3

    Looks like BP has to be abandoned if this is not provided immediately in the form of a “hack” or plugin. I am unable to execute the patch provided there.

    #231619
    disha76
    Participant

    Go to wp-admin/network/admin.php?page=bp-page-settings
    Find:
    Registration
    Associate WordPress Pages with the following BuddyPress Registration pages.

    Now create a New Page and save it with the name – register
    and then choose it from the drop-down and save settings.

    #231608
    dainismichel
    Participant

    it would be wonderful, if the WPMUDEV team were to come out with its long awaited theme.

    currently, i own “Terso Theme” and WPLMS.

    you can buy premium wordpress themes that just plain break BuddyPress, so it is necessary to try things out.

    i also run a BuddyPress site with the 2012 theme. i don’t know why, but the activity stream is actually nicely styled and works properly, whereas other themes simply turned the activity stream into an ugly mess.

    one criteria for the theme is that certain key functionality has to work in a way that makes sense to users.

    #231602
    shanebp
    Moderator

    Do they also have a profile field for gender?

    You could write custom mysql queries – more info.

    #231590

    In reply to: How to "Like" ?

    Ben Hansen
    Participant

    there has been some discussion of media handling in core I’m not sure the exact status of it but you may want to show up for a dev chat to lobby for your request(s) theres one later today in fact:

    Wednesdays at 20:00 UTC
    #buddypress on Slack

    https://wordpress.slack.com/messages/buddypress

    #231587
    danbp
    Participant

    The Toolbar belongs to WordPress. See WP Codex for how you can rearrange this.

    So far i see, your register button is correctly linked to BuddyPress register page.

    #231583
    florangelie
    Participant

    Thank You so much, I think updating the wordpress fixed the problem

    #231563

    In reply to: Social login

    ShMk
    Participant

    If anyone needs an advice, at the end I’ve chosen this one:
    https://wordpress.org/plugins/wordpress-social-login/
    because it works as needed and doesn’t to connect to a third party website to be managed.

    #231560

    In reply to: How to "Like" ?

    Henry Wright
    Moderator

    @disha76

    Even though Jetpack and BuddyPress and both projects under the WordPress ‘umbrella’, they are separate plugins and haven’t been designed to work in that way. That said, both should always be compatible. For example, if you find something stops working as a result of the plugins being installed together and conflicting then you could file a bug report.

    #231558

    In reply to: How to "Like" ?

    Ben Hansen
    Participant

    as i said before jetpack likes are really more like Facebook likes, you can’t Facebook like something if you aren’t on Facebook any more than you can jetpack like something if you aren’t on wordpress.com the whole idea of jetpack is to give your self hosted blog/site many of the capabilities of a wordpress.com hosted blog/site, so from that perspective how it works is pretty sensible even if most people have no idea about wordpress.com

    #231552

    In reply to: How to "Like" ?

    disha76
    Participant

    Overall it seems Like is not used or not used properly by BP users. Maybe Jetpack Like is used by many individual blogs.

    What is expected usage :
    1) I am speaking of an uniform Like button under a blog post or a photo or any content. I should be able to Like it there. I should be also able to like it from an entry in the activity stream if I so wish. This is how usually Like is handled in almost all social scripts as well as real world social nets.
    2) On hovering or clicking a Like button or a “Liked” link I should be able to see in a scrollable way the names/avtaars of Likers and the total number of Likes
    3) A tab or link in my Profile should show content names / thumbnails of what I liked.
    4) The plugin should disable BP core favorites
    ———-

    When tested with WP4.1, latest BP and Media plugins like rtmedia, the results are:

    • buddypress-like does (4) above , not others
    • love-it.1.0.4 does not work
    • wp-ulike is not a Network plug in at all, its suitable for individual blogs but as a super admin of WP mutlsite you cannot set its features like you can set features of BP – see issues posted by ronia – this and this. While it is nice for Blogs Like buttons do not appear below Media files or Media posts created by Media plugins
    Henry Wright
    Moderator

    Hi @christoph744

    I’m sure there is a way to filter the members loop via BuddyPress but if you want a WordPress approach then check out the WP_User_Query class. Assuming that s2member uses custom fields to distinguish members (I may be wrong on that) you’d want to look at using the Custom Field Parameters

    Ref: https://codex.wordpress.org/Class_Reference/WP_User_Query

    #231546
    djsteveb
    Participant

    @rizar9 – buddypress is a membership plugin (and more) – but you may not need that kind of community (that buddypress essentially creates) – you could use a regular ol’ wordpress site and something like s2member if you are set on a membership plugin.

    If you find a way to encrypt all the data that gets stored in the database, please let me know – I have been trying to find a good secure contact form system that encrypts into sql and stuff – which I think would be needed for the hippa stuff with some of my clients..

    “without a membership plugin, how am I able to keep a record of the past and pending appointment bookings that the person made?” = I am not sure on that really – but I was pointing you to a couple of plugins up above that seem to do some of what you are describing – so maybe you should install those and play with them – see what they report to you and perhaps some small mercenary (paid) modifications of those could piece together what you are describing(?)

    #231541
    djsteveb
    Participant

    rizar you don’t need a membership plugin for that- you needs a points for actions / karma type plugin and an appointment setting plugin. I have heard of one like that, I guess something similar to https://wordpress.org/plugins/mycred/ and these https://wordpress.org/plugins/search.php?q=buddypress+appointments&sort= . From my limited experience dealing with some in the medical field in the states, I am not sure what you are describing is technically ethical or legal – but I don’t know for sure, and I am sure those issues vary by region as well. Just a thought you might want to consider before putting too much into that.

    #231535

    In reply to: How to "Like" ?

    djsteveb
    Participant

    @disha76

    I found a few in the WP repo that may do what you are asking..
    https://wordpress.org/plugins/wp-ulike/
    https://wordpress.org/plugins/voter-plugin/
    wordpress.org/plugins/likebtn-like-button/

    I have not tried any of these, so I’d love to hear from you if you try any and they work for what you are wanting to achieve. I also have not looked to see if any of these have privacy issues (loading images / data from third party sites like jetpack)

    They say they work with posts, pages and BP activity stuff, and show some shortcodes to add most liked this and that, I assume to places in your theme..

    I hope one of those, or similar will do that trick for you. I may decide to play with that like thing again myself in the near future.

    #231534
    Xio.
    Participant

    Note: I am running on the latest version of WordPress (4.1) and version (2.1.1) of BuddyPress.

Viewing 25 results - 6,601 through 6,625 (of 22,683 total)
Skip to toolbar