Search Results for 'wordpress'
-
AuthorSearch Results
-
January 10, 2015 at 1:22 am #231712
In reply to: Sidebar Pushed to Bottom
valuser
ParticipantCould 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!!!!
January 9, 2015 at 7:05 pm #231690In reply to: List of posts in a category – filtered by author
Henry Wright
ModeratorHi @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
January 9, 2015 at 5:03 pm #231687In reply to: Custom profile cover image
disha76
Participanthttp://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.January 9, 2015 at 12:15 pm #231683In reply to: Custom profile cover image
Henry Wright
ModeratorHi @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.
January 9, 2015 at 1:56 am #231665tatakatte
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.
January 9, 2015 at 1:42 am #231663In reply to: 404 Page for Activity, Groups, Members
Henry Wright
ModeratorWhat 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.
January 8, 2015 at 11:29 pm #231647In reply to: 404 Page for Activity, Groups, Members
aces
Participant@timothylegg
Just a thought – have you got pretty permalinks set up?In WordPress settings > permalinks ( /wp-admin/options-permalink.php )
January 8, 2015 at 9:05 pm #231640In reply to: 404 Page for Activity, Groups, Members
Henry Wright
ModeratorHi @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
January 8, 2015 at 6:39 pm #231636In reply to: How to force login screen before accessing site?
Paul Bursnall
Participant@jruffellsmith I’d recommend this – https://wordpress.org/plugins/jonradio-private-site/
January 8, 2015 at 3:15 pm #231621In reply to: How to "Like" ?
disha76
ParticipantOkay 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.3Looks 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.
January 8, 2015 at 3:06 pm #231619In reply to: Registration Page not working
disha76
ParticipantGo 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.January 8, 2015 at 8:34 am #231608dainismichel
Participantit 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.
January 7, 2015 at 11:14 pm #231602In reply to: Display filtered overview of members
shanebp
ModeratorDo they also have a profile field for gender?
You could write custom mysql queries – more info.
January 7, 2015 at 4:11 pm #231590In reply to: How to "Like" ?
Ben Hansen
Participantthere 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 SlackJanuary 7, 2015 at 2:39 pm #231587In reply to: how to remove the wordpress login bar on every post
danbp
ParticipantThe 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.
January 7, 2015 at 12:11 pm #231583In reply to: Buddypress text field is overlapping on firefox
florangelie
ParticipantThank You so much, I think updating the wordpress fixed the problem
January 6, 2015 at 7:32 pm #231563In reply to: Social login
ShMk
ParticipantIf 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.January 6, 2015 at 6:05 pm #231560In reply to: How to "Like" ?
Henry Wright
ModeratorEven 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.
January 6, 2015 at 4:42 pm #231558In reply to: How to "Like" ?
Ben Hansen
Participantas 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
January 6, 2015 at 12:41 pm #231552In reply to: How to "Like" ?
disha76
ParticipantOverall 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
January 6, 2015 at 11:37 am #231551Henry Wright
ModeratorI’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_Queryclass. 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 ParametersRef: https://codex.wordpress.org/Class_Reference/WP_User_Query
January 6, 2015 at 8:46 am #231546In reply to: Urgent! looking for a membership plugin
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(?)
January 6, 2015 at 7:20 am #231541In reply to: Urgent! looking for a membership plugin
djsteveb
Participantrizar 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.
January 6, 2015 at 3:21 am #231535In reply to: How to "Like" ?
djsteveb
ParticipantI 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.
January 6, 2015 at 2:56 am #231534In reply to: Register page broke after installing BuddyPress
Xio.
ParticipantNote: I am running on the latest version of WordPress (4.1) and version (2.1.1) of BuddyPress.
-
AuthorSearch Results