Search Results for 'buddypress'
-
AuthorSearch Results
-
August 29, 2015 at 12:45 pm #243838
In reply to: Profile looks weird
danbp
ParticipantFor sure you can, but without my help now. This is a BuddyPress support, not a theme support and you have to learn and do your home work on your side.
August 29, 2015 at 11:12 am #243834In reply to: Video oembeds in Profile Field
Paul Wong-Gibbs
KeymasterDon’t want to vouch for security without actually testing it, but I like the idea of allowing field values to be parsed for oembeds, so I’ve created a ticket to capture the idea: https://buddypress.trac.wordpress.org/ticket/6603
August 29, 2015 at 11:08 am #243833In reply to: Database error after upgrade to WP4.3/BP2.3.3
Paul Wong-Gibbs
KeymasterHmm. Related to https://buddypress.trac.wordpress.org/changeset/9716/trunk/src/bp-core/admin/bp-core-admin-schema.php and https://buddypress.trac.wordpress.org/changeset/9695
@reggie3 what version did you upgrade from?August 29, 2015 at 11:01 am #243831In reply to: xProfile Rich Text Field plugin
Paul Wong-Gibbs
Keymaster@ajarnonline Please don’t create duplicate topics: https://buddypress.org/support/topic/buddypress-xprofile-rich-text-field/
You’re only going to get the same answer.
August 29, 2015 at 8:05 am #243822In reply to: Profile looks weird
danbp
ParticipantYou may adjust existing menus or use the buddypress menu.
August 29, 2015 at 8:02 am #243821In reply to: BuddyPress and Global Hide Admin Toolbar
danbp
ParticipantPlugin author stopped support on wp.org repo since a few weeks.
sLaNGjIs Team do not provide support on wordpress.org forum and reviews system!If you get an issue, you have to ask here now https://github.com/sLaNGjI
This is also the reason why nobody answered to your question on support….FYI, i found this in the plugin review ! You’ve nothing to loose to try that.
In plugin’s ReadMe, it’s stated that:
* Work on all WordPress version from 3.1+ to 4.2+
* Compatible with bbPress and BuddyPress (for front-end hide).BuddyPress settings has an option to show/hide the Toolbar to users, which is working properly since a while. I’m not aware of any toolbar trouble who should be resolved in BP’s core in regard of a third party plugin.
Conclusion: don’t use a plugin who has no decent support. Do it yourself or search another plugin. Sorry !
August 29, 2015 at 7:31 am #243819In reply to: Profile looks weird
danbp
ParticipantOk, let’s try something different.
Add a file called functions.php to child root
/child/functions.php
Copy/paste this, including php tags<?php // enqueuing the child to parent - don't remove */ function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); } add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); /********************** CUSTOM STUFF **********************************/ // other custom function ?>Inside child’s BuddyPress folder, you can remove anything except CSS and JS folder.
August 28, 2015 at 6:23 pm #243810In reply to: Allow users to post other things than just status
shanebp
ModeratorYou want to create an event via the update form on the activity page?
afaik – that is not possible.You can create events that will also generate an entry in the activity stream.
This plugin will do that: https://wordpress.org/plugins/buddypress-simple-events/August 28, 2015 at 4:27 pm #243799In reply to: custom profile fields
danbp
Participantare you sure you want to show a list of over 80 cities ? Have you ever scrolled such a long list on a mobile (usage 2014) ?
Please, read here:
https://buddypress.org/support/topic/list-of-countrystatecity/August 28, 2015 at 4:10 pm #243798In reply to: Profile looks weird
danbp
ParticipantGardenia is not BP ready.
Create first a child theme. Add a new folder to wp-content/thems/
wp-content/themes/gardenia-child/
Now add a new file and call it style.css
Copy this header comment into it (/* & */ included):/* Theme Name: Gardenia-child Description: child theme Version: 1.0 Author: XXX Template: gardenia */Save.
In that folder, add another one called
buddypressand another one in this folder calledcssGo to wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/css/ and copy buddypress.css file into the css folder you created in the child theme.
In legacy/buddypress/ directory, is a js folder. Copy the whole folder into child’s buddypress directory.
End result should be:
/gardenia-child/
/gardenia-child/style.css/gardenia-child/buddypress/css/buddypress.css
/gardenia-child/buddypress/js/buddypress.js
/gardenia-child/buddypress/js/password-verify.jsGo to dashboard > Appearrance > Theme and activate Gardenia-child.
Done ! The theme shows BuddyPress properly.
August 28, 2015 at 3:33 pm #243797In reply to: Video oembeds in Profile Field
bigkahunaburger
ParticipantFound it. The internet is written in ink. 😛
While you are here… It seems to be working great. It’s a bit old. Do you think it will cause any security or other issues with the current version of BP?
Thanks again.
August 28, 2015 at 3:07 pm #243792In reply to: [Resolved] Double profile fields??
Naisai
ParticipantYou know what! Hahaha I didnt know you could scroll the code-box. So, I saw the word ‘country when I posted it into the buddypress editor. Silly me…
But unfortunately…it didnt work There are no delete buttons to the profile fields.
August 28, 2015 at 1:40 pm #243779In reply to: How to merge friends and followers to personal
danbp
ParticipantAugust 28, 2015 at 1:39 pm #243778In reply to: How to merge friends and followers to personal
navyak
ParticipantIf we do bp_has_activities( bp_ajax_querystring( ‘activity’ ).’&scope=just-me,friends,following’) we are getting user and friends activitybut we are not getting following activity stream
Followers is coming from buddypress-followers pugin..
August 28, 2015 at 1:30 pm #243777In reply to: How do I refer to a member’s name in their profile?
danbp
ParticipantSee here:
https://buddypress.org/support/topic/bp_field_has_data-show-message-when-empty-field/The snippet is checking for empty fileds. This is not what you want. Simply remove ! before $data, so it will check that
if $dataexist, do something. Exclamation point means “not”.Use
add_filter( 'bp_before_member_header_meta filter', 'your_function_name' );to add custom things to profile header and
add_filter ( 'bp_directory_members_item', 'your_function_name' );for members directory.August 28, 2015 at 1:13 pm #243775danbp
ParticipantAugust 28, 2015 at 1:03 pm #243770In reply to: How to merge friends and followers to personal
navyak
ParticipantThanks for the reply, Yes your right we have filtering option of Personal,Mentions,Following,Favorites,Partners,Groups differently in acivity stream of buddypress so in that we need to merge Personal, Following and Friends to personal activity order by date
So when we have activity in friends or following both will come to personal(Activity) by this when we click on Activity we will get Personal, Following and Friends activities.
I have searched more but i didn’t get , merge of Following to personal.
August 28, 2015 at 12:29 pm #243766In reply to: Remove ratings and #item-header-content
danbp
Participantratings and reviews button are not part of BuddyPress. Search in your plugins or theme.
CSS rules for something like#item-header-contentare generally added via style.css of a child-theme or via specific theme settings.August 28, 2015 at 8:59 am #243760ctuxboy
ParticipantHello,
– I activate the original WP twentyfifteen-theme, and i see no errors in the developer console (Chrome browser)
Is this an issue? Have more people this?
Can i adding manually the private button links?This are the installed plugins:
– All In One WP Security
– Black Studio TinyMCE Widget
– Bowe Codes
– BP Registration Options
– Bp Stickers
– BuddyPress Members only
– BuddyPress
– Child Theme Configurator
– Contact Form 7
– Duplicator
– Events Manager
– FB like notification for buddypress
– Loco Translate
– Page Builder by SiteOrigin
– Peter’s Login Redirect
– Really Simple CAPTCHA
– SiteOrigin Widgets Bundle
– User Switching (deactivated for the moment!)
– WP StatisticsThe strange thing is that all the buttons showing correctly in the user profiles when nothing a friend.
(sorry for my bad english!)
August 28, 2015 at 7:45 am #243756In reply to: Restrict User to join BP Groups
danbp
Participant@sharmavishal,
read from here:
https://buddypress.org/support/topic/resolved-restricting-users-to-one-group/See if you can do something with 2nd plugin mentionned in topic. If not able, you have to ask for on Group Hierarchy support.
We only support BuddyPress here.
August 28, 2015 at 6:51 am #243751In reply to: Profile looks weird
danbp
ParticipantHi @repterra,
if you use a child theme with 2015, please read here about the new (since 2.3) Companion Style Sheet:
August 28, 2015 at 5:23 am #243748djsteveb
Participant@jrunfitpro “there wasn’t a good answer for my question” –
I think you should of imply replied to your previous (not dupe) thread – would keep things more tidy.
Also you never reported back what your optimize press people had any details about the issue.anyhow, with your setup I wonder..
“not pulling from certain pages ”
– what exactly is not being pulled?
from pages?
posts?
multi-site sub blogs?
Pulled from media comments?If you switch to default 2014 theme – does it work then?
If you use 2014 theme and disable all other plugins (and mu-plugins and bp-custom if you have those) aside from BP is the issue resolved?
If “not pulling from certain pages” still does not work with 2014 and all other plugins removed, then you may find the answer on the other threads and solution hunting things posted:
(and those items linked in comments from there)If “not pulling from certain pages” does work fine with 2014 as theme and other plugins disabled – then it’s an issue with your other theme or plugins (or combo of them).
August 28, 2015 at 12:26 am #243743djsteveb
Participant@jrunfitpro
Why you start new thread for exact same question as before you?!
( https://buddypress.org/support/topic/has-anyone-figured-out-how-to-use-optimize-press-2-and-bp-site-tracking/ )maybe delve into searching the forums..
similar questions and answers 4 days ago -https://buddypress.org/support/topic/post-comments-not-appearing-in-activity-stream/
or point your optimize press to search the forums and codex here and find the fix if you can’t figure it out.
I don’t think you will find a lot of help here with a premium theme and it’s specific issues. Especially since there has been no new information provided.
August 28, 2015 at 12:24 am #243742Henry Wright
ModeratorxProfile data is a BuddyPress thing and user meta is a WordPress thing. Which one you use will depend on whether you plan to always use BuddyPress. If not then taking the user meta approach will ensure your plugin will work on all WordPress installs (even when BuddyPress is deactivated).
August 28, 2015 at 12:20 am #243740In reply to: BuddyPress Sitemap?
Henry Wright
ModeratorThe best advice I can give is to look at how some of the already-available plugins do it. XML Sitemaps is a good one to learn from. It might not cover BuddyPress pages but I’ve used it in the past and it worked great for me.
-
AuthorSearch Results