Search Results for 'questions'
-
Search Results
-
Topic: NEED HELP PLEASE!
Hello, Im Actually new on WordPress, and I’ve been working on my web page which is http://www.elparchestereo.com and the thing is that i saw your plugin and I thought that’s actually what i need it, because my web address is about a Radio Station, and what i want is to have like a socal site , that all my listeners can register and be there, do like a regular social media, and i have few questions to resolve that I haven’t been able.
first is that,when that ppl register and comes out the message that check the email to activate the account, i want that message to be in spanish and english, how can i translate that?..
Second: when the ppl recieved the email and clicked where it says to activate, it automatically transfer to a page that says 404 you got to the wrong place …. something , something.
How can i fix that?..
And Also I have this message on my desk “Each BuddyPress Component needs its own WordPress page. The following WordPress Pages have more than one component associated with them..” How can I fix those components, how its supposed to go, because i tried and that just made a worst mess, and since then i havent been able to fix it, i think thats the main reason for everything.Sorry for so much, but I dont have anybody else helping me with this and i have done the best i can fixing my page , but this has been making me crazy trying to figure it out.
Thank you!
Hi guys,
I’m asking a lot of questions that I’m sure I could figure out for myself if I just knew how to access the templates that build the loops for the activity streams.
I can’t find how to do this in the codex and would really appreciate it if somebody could just point me in the right direction. I just don’t know where to look?
Do I have to set up some hooks in my functions.php?
If so what are they are where can I find them?Or can I just over-ride the existing templates with my own?
If so where are the original ones for the activity stream?Is the activity stream even being built with a template?
I can’t even find the answer to that!Maybe i’m not getting any replies because i’m using the wrong terminology?
If so please tell me where i’m going wrong.Many thanks 😉
Topic: Activity page template?
Hey guys,
Couple of questions…
1) Where is the template for the site wide Activity page located?
I’ve looked in here but it doesn’t mention anything about the code anywhere – https://codex.buddypress.org/administrator-guide/activity-streams/
2) I’d like to create my own Activity page called something other than Activity. Is this possible by replicating whatever code is in the current template or will it totally break BuddyPress? Does the core only look for a page called “Activity”?
Can’t seem to find the answers anywhere else.
Cheers!
Hi,
I’ve found some info about turning off email notifications by default for new users (here: https://buddypress.org/support/topic/how-to-disable-email-notification-to-all-newly-registered-users/) and would like to check 4 things.
The 2 code options referenced there are these, added to the child theme functions.php:
1.function bp_set_notification_default( $user_id ) { $keys = array( 'notification_activity_new_mention', 'notification_activity_new_reply', 'notification_friends_friendship_accepted', 'notification_friends_friendship_request', 'notification_groups_admin_promotion', 'notification_groups_group_updated', 'notification_groups_invite', 'notification_groups_membership_request', 'notification_messages_new_message', 'notification_messages_new_notice' ); foreach ( $keys as $key ) { update_user_meta( $user_id, $key, 'no' ); } } add_action( 'bp_core_signup_user', 'bp_set_notification_default', 100, 1 );2.
add_action('bp_core_signup_user','bp_set_notification_default',100,1); function bp_set_notification_default($user_id) { $keys = array('notification_activity_new_mention','notification_activity_new_reply','notification_friends_friendship_accepted','notification_friends_friendship_request','notification_groups_admin_promotion','notification_groups_group_updated','notification_groups_invite','notification_groups_membership_request','notification_messages_new_message','notification_messages_new_notice'); foreach($keys as $key) { update_user_meta($user_id,$key,'no'); } }So my questions are:
1. which code should be used?
2. Is this code still OK since the recent BP updates?
3. Does it turn off email notifications to admin for new user signups too?
4. If so, how can I keep just that functionality on?Many thanks.
Some of my users’s profiles are not loading completely on my live site and end below the
<!-- .item-list-tabs -->line in the source. When I try it out on my local server, I get the following error message:Fatal error: Maximum execution time of 30 seconds exceeded in /opt/lampp/htdocs/sbwp/wp-includes/plugin.php on line 212I looked up the plugin.php file and the error points to a line in the apply_filters function.
I use a custom theme but I checked under Twenty Fifteen as well and got the same result.
I deactivated all other plugins and the problem persists.
Here are the obligatory questions answered;
1. Which version of WordPress are you running?
4.1.1 (but the problem has been around for a while)2. Did you install WordPress as a directory or subdomain install?
Directory3. If a directory install, is it in root or in a subdirectory?
Root on server / subdirectory on localhost (I have two copies for emergencies like this but this time both are behaving badly)4. Did you upgrade from a previous version of WordPress? If so, from which version?
Yes, 4.15. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
Yes6. Which version of BP are you running?
2.2.17. Did you upgraded from a previous version of BP? If so, from which version?
Yes, 2.18. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
Yes: AddThis for WordPress / Edit Author Slug / Login With Ajax / Popular Widget / Video Thumbnails / Better Delete Revision / Hyper Cache / Login Bot Stopper / Wordfence Security (disabled all plugins save for BuddyPress and the behavior continues)9. Are you using the standard BuddyPress themes or customized themes?
Customized, but problem persists with standard as well10. Have you modified the core files in any way?
No11. Do you have any custom functions in bp-custom.php?
Yes (2 lines – excluding php open and close tags):<?php
add_filter( ‘bp_use_wp_admin_bar’, ‘__return_false’ );
define ( ‘BP_DISABLE_ADMIN_BAR’, true );
?>12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
Not running bbPress13. Please provide a list of any errors in your server’s log files.
None14. Which company provides your hosting?
nearlyfreespeech.net15. Is your server running Windows, or if Linux; Apache, nginx or something else?
Linux: Apache (both localhost and server)Hi all, I know this is probably out of scope for these forums to many users but im asking the question here because im interested in anyones experience with using a cluster of servers for their buddypress setup.
I can see the question has came up a few times about how scalable is buddypress etc, now i do realize true scalability boils down to the hardware and the software config you have to throw at it.
The goal i have set at the minute is to have one dedicated server serving as a dedicated database server, another server acting as a load balancer and 2 other servers running in unity to serve the website itself, now i also want this cluster of servers to be expandable (meaning i can add extra servers into the equation at will, for instance i may want to setup 2 more dedicated servers in future to serve as dedicated file servers for media uploaded by users).
So i have a few questions to those of you that may be in the know,have you any tips or tricks i may need to consider with this kind of setup, do you have any experience using apache mesos and if so would you say this is a good way to go? have you any experience in running memcached with multiple servers running in a cluster as i have read that you can implement memcache to run this way efficiently?, are there any recommended guides or routes i should take that you could suggest to help me explore all of my options?
Thx in advance.
Howdy all,
Can anyone tell me what happens when an account is deleted? What happens to the Buddy Press / bbPress content that the user created? Is it also deleted? Or does it remain? If it remains is it still associated with the content?
I setting up a WP site with BuddyPress, bbPress for group forums, and S2 Member.
What I want to do is let anonymous visitors read everythting in the BuddyPress section of the site. But because they are not logged in, the cannot post. If they buy a membership through S2Member/paypal, they will be allowed to create an account and therefore they will be able to post status and make forum posts etc. So far that sounds easy. I don’t have to set any restrictions in S2 Member. If you have an account, you can post. If you don’t have an account, you can only read.
But when the user’s subscription expires, S2Member can be configured to demote the user to level 0 / subscriber or the account can be deleted.
Demoting the user to subscriber doesn’t work in my case because the user can still login and because he can still login, he can continue to post to BuddyPress and bbPress.
So I’m thinking about seting the S2Member to “delete” the account when the membership expires. But that raises some questions:
— When a user’s account is deleted, is all of their posted content also deleted? i.e. all the status messages, forum posts etc?
— Is the user ID available again in the future or is it blocked. For example, suppose John smith signs up, creates the ID JSmith and uses the service for a few months. Then he lets his membership expire and S2Member “deletes” the account. If Jason Smith comes along and pays for an account, can he create an ID JSmith? Or is it no longer available to him because it had previously been used by john Smith?
Any light that could be shed on this scenario would be appreciated!
Thanks
Calvin