Search Results for 'wordpress'
-
AuthorSearch Results
-
September 15, 2015 at 3:28 pm #244411
In reply to: Buddy press won’t work with my theme
djsteveb
Participant– it’s the (or one of the) “default” wp themes ( https://wordpress.org/themes/twentyfourteen/ )
about the only way you will get any kind of support with bp or / and rtmedia..it’s not the easiest thing to mod – but at least it works, and bp has some stylesheets included that massage it into something better than the average theme for some bp pages..
I finally got deep into it to style some changes at the various media queries / screen sizes..
btw – did you try changing your premium themes style.css to those changes to see if they work?
if you search the bp forums for other premium themes you will see that even ones selling as “the best or the most popular buddypress theme” – seem to have issues and lack good support.. search the forums for “kleo” for example – lol
I am sticking with twenty fourteen ’till things mature a bit (recent changes in wp and bp have made things complex in some ways) –
September 14, 2015 at 10:04 am #244366In reply to: Buddypress Register / Activate problems
Prabin
Participantmay be it’s a permalink issue. Try editing your htaccess file.
September 14, 2015 at 8:30 am #244361In reply to: Buddypress site for kids that is COPPA Compliant
danbp
ParticipantNo idea really, but see here if you find something
https://wordpress.org/plugins/search.php?type=term&q=cookie+lawSeptember 13, 2015 at 9:08 pm #244347danbp
ParticipantSee this plugin, which is made for that:
https://wordpress.org/plugins/buddypress-sitewide-activity-widget/WP’s comment widget is for main blog comments, not activity comments.
September 13, 2015 at 12:24 pm #244338In reply to: Group Post support
danbp
ParticipantBuddyPress is a plugin dedicated to members, not blogs. On a multisite install, each member can get his separate blog, without limitation. These member blogs are then refrenced on a blog directory. An each membrer profile will show a blog directory with that member’s blog(s).
Groups is a component to group members, not blogs. If you need a group blog, instead or in addition of individual member blogs, you can use BuddyPress Groupblog. Such blog will be for all group members and each group can have only one blog. But each group member can have his own blog. In this case, the network will have a main blog, group blogs and individual blogs.
Whatever solution you use, a blog is always part of WordPress and will work exactly like the main site blog where you installed BuddyPress.
This means that it’s the responsability of each member with a blog to admin his blog, even if the main site admin has priority and can allow/disallow plugins and themes. Usually disallowed, so members can only use what main site admin decided they can use.Enhancement can be asked on Trac. Read here about user participation and contribution to BuddyPress.
September 13, 2015 at 5:29 am #244331In reply to: No pages, posts or comments in Activity
thenetking
ParticipantOmg I just had a whole wall of text written up and while researching a link from earlier I found this:
https://gist.github.com/jonasnick/6125869
and it made my comments show up in activity, hopefully it’s what others need. Why I had to fight with buddypress and search the net for hours to make wordpress comments work is beyond me. I still don’t know if it’s supposed to out of the box or not, which I’ve tested.
September 12, 2015 at 10:18 am #244318In reply to: Fatal error
djsteveb
Participant@collinkemp – in this kind of situation I either ftp in or get to cpanel file manager.. either download a copy of your wp-content folder with http://ftp.. or make a zip / compressed folder of your wp-content folder to have a backup.
Then go into your wp-content/plugins/
– delete rtmedia err “buddypress-media” folder. Check if site comes back.
– if not start deleting other plugins and checking.. and or
– delete the non-default themes your have in you wp-content/themes folderThis should get you back to basic wordpress and buddypress and default theme – then you should be able to get into your wp-admin section and go to appearance – themes and select one of the defaults..
you may figure out what the hiccup was during the delete and check process.
sometimes when my rtmedia updates I have to go into permalinks – change them, save, then change them back and save again.. don’t know why, but 50% of the time rtmedia updates causes a bunch of my static “pages” to be “404 not found” and the permalinks change then change back and save fixes it.. it’s a weird bloated plugin.. but glad it’s here.
September 11, 2015 at 8:45 pm #244305In reply to: Suspending user accounts
danbp
ParticipantAfaik there is nothing out to do this.
As start point, this snippet which let you hide a profile by user_id. Add it to bp-custom.php
function bpfr_hide_user_profile() { global $bp; // hide user_id 35 if(bp_is_profile && $bp->displayed_user->id == 35 && $bp->loggedin_user->id != 35) : wp_redirect( home_url() ); exit; endif; } add_action( 'wp', 'bpfr_hide_user_profile', 1 );Also, from here
https://buddypress.org/support/topic/temporarily-blocking-a-user-while-keeping-their-datanetwork/
https://wordpress.org/plugins/buddypress-verified/September 11, 2015 at 8:35 pm #244304danbp
ParticipantI’m wondering what is a username for you.
WP register only a user by username (aka pseudonym), email and password. BP add a Name field in which you can add anything: username, first or lastname. In the user table, there is also display_name, wich is the combination of first and last name from a WP user profile, before BuddyPress was installed or if you allow your users to enter the dashboard, and they start to play with their profile settings. IMHO, it’s better they haven’t that access when BP is activated. 👮
When on the members directory, you (connected or not) can search a member by using his username.
If you use WP’s site search from toolbar or the search widget (same thing), it doesn’t work, as members are not post types… 👣
For now, i’m unsure what you want to fetch. Do you mean display_name ?
All search forms available in BP are contextualized, as @henrywright expected.
A BP class can be extended, a core function with a filter can be extended. You simply add your own to it.
In other cases, like forbp_core_action_search_sitefunction (in bp-core-classes.php)
there is an action and a filter. Wow. 💪You can rewrite the whole function and use the action hook or only change a part of it by using the filter.
remove_action( 'bp_init', 'bp_core_action_search_site', 7 ); function my_custom_core_action_search_site() { bla bla bla.... } add_action( 'bp_init', 'my_custom_core_action_search_site', 7 );or
add_filter( 'filter_name', function_name');Theorie here:
https://buddypress.org/support/topic/how-to-override-core-function/But before hacking to deep, read here:
Maybe you could find some interesting things about
includeorsearch_temsoptions. 👀If all this is too much for you, consider this plugin:
https://wordpress.org/plugins/buddypress-global-search/
@prabin04, @henrywright
🚧 i’m really not an expert in matter of BP search, but thank you for your consideration.September 11, 2015 at 7:09 pm #244299In reply to: Unable to access Groups
ithawk
ParticipantI was messing around with the parent of the Group page to see if that would fix it. Same result if the URL is shareit/wordpress/groups/test
Wordpress is installed to inetpub/wwwroot/wordpress so to get to my test site you need to go to http://shareit/wordpress on my network.
September 11, 2015 at 7:02 pm #244297In reply to: Unable to access Groups
danbp
Participantshareit/wordpress/sample-page/groups/testthis path looks strange.In which directory are WP/BP installed ?
Each component page must stay blank and without any template models or parent page…
Permalinks must be enabled, using any option except “default”.September 11, 2015 at 6:55 pm #244295In reply to: Suspending user accounts
danbp
ParticipantConsider this plugin:
https://wordpress.org/plugins/disable-users/Works like a charm from within user profile admin.
dashboard > users > username > modify and check Disable User AccountSeptember 11, 2015 at 5:14 pm #244288danbp
ParticipantSearch by username is not possible yet with the mentionned plugin.
https://wordpress.org/support/topic/search-by-usernameIf you’re comfortable with coding, see this gist.
Site search source code is in bp-core-functions.php:2236
September 11, 2015 at 3:54 pm #244280In reply to: Is default post deletion possible?
Henry Wright
ModeratorBy post do you mean a WordPress post?
September 11, 2015 at 12:17 pm #244274Henry Wright
ModeratorI’m not sure that the standard member search looks for usernames. @danbp can you shed any light on that?
You may need to use the BP Profile Search plugin.
September 11, 2015 at 9:44 am #244269djsteveb
Participant@varun404 – first thing I would do is go to settings -> permalinks.. make note of what they are.
Then change them to something else.
save.
then change back to pretty permalinks.
save.then check your url – is it working then?
if not.. then make sure you have created pages that bp needs, and associated them:
if that is all set write, I would check my htaccess to make sure it is writable and wordpress is indeed adding code to make permalinks work.
September 10, 2015 at 1:02 pm #244235In reply to: How to force Buddypress to Update Activity Stream
Tafmakura
ParticipantBTW this can be used to modify the heartbeat but that does not solve my issue https://wordpress.org/plugins/heartbeat-control/
September 10, 2015 at 11:31 am #244230In reply to: How to force Buddypress to Update Activity Stream
danbp
Participanthi @tafmakura,
As first, did you activated Activity auto-refresh in BP settings ?
Second, as it concern a custom feature of yours, you have to check for ajax requests on your action post variable.
That said, there is a latency of 15 seconds before “load more” will show up a new activity. Not sure if this can be modified.Seach on Trac for some hints about Ajax and activity.
Perhaps those tickets #5328, #6195 can help you.September 8, 2015 at 10:42 pm #244174shanebp
ModeratorIf you think you’ve found a bug in 2.3.3, you can submit a ticket here.
Be sure to include some screenshots.September 8, 2015 at 8:56 am #244159sharmavishal
Participanthttps://wordpress.org/plugins/bp-xprofile-wp-user-sync/ might help. have a look
September 6, 2015 at 10:53 pm #244138In reply to: required Username twice at Registration
nilje
ParticipantNo, there is no other plugin which could cause it
I’ve made a screenshot
http://www.danielaholl.de/Apublic/Unbenannt-1.jpg
I think the left side is the WordPress registration and right the one for buddypress.. there are my custom profile fields too.September 6, 2015 at 9:30 pm #244129In reply to: required Username twice at Registration
nilje
Participantthanks… thats not really compareable, the double password entering is just for precaution.
I’ve never seen anywhere to enter my username twice.. And what if they enter two different ones, they don’t know for sure with which one they could login. That’s just odd for everyone who don’t know it’s about WordPress and Buddypress.Your link couldn’t help me, the topics are about not using usernames at general, I need it, but not twice. I dont’t trust the Plugin Simplr Registration Form Plus+, sounds good but there are many who had problems with their databases after using it..
September 6, 2015 at 7:35 pm #244125In reply to: required Username twice at Registration
danbp
ParticipantYou think right. BuddyPress need this field to sync with WordPress.
It’s really confusing for the user to set the username twice.
And what about entering password twice ?Read from here:
https://buddypress.org/support/topic/hide-the-username-and-display-firstnamelastname/September 6, 2015 at 7:49 am #244114danbp
ParticipantInvite Anyone is a separate plugin. Related question should be asked on the plugin support.
September 6, 2015 at 6:02 am #244113Tafmakura
ParticipantFound the solution, by placing buddypress.js in my child theme file (childtheme/buddypress/js/buddypress.js) as advertised, the problem was the activity privacy plugin https://wordpress.org/plugins/buddypress-activity-privacy/ this conflicts with my overide, afteruninstalling it my buddypress.js works!!!
-
AuthorSearch Results