Search Results for 'wordpress'
-
Search Results
-
Topic: Permalinks
Hi,
Every couple of weeks the buddypress forum stops working on http://www.Livelikeaviking.com. I have to “flush” the permalinks and everything is fine.
I don’t know that it isn’t working until one of our subscribers complain – not a good situation.
Please try to supply answers to the following questions.
1. Which version of WordPress are you running?
Wordpress 5.2.2
2. Did you install WordPress as a directory or subdomain install?
It is an add-on domain at SiteGround3. If a directory install, is it in root or in a subdirectory?
4. Did you upgrade from a previous version of WordPress? If so, from which version?
Yes – have upgraded since 4.8 however the issue was occurring then also.
5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
Yes – everything works perfectly.
6. Which version of BP are you running?
2.5.14
7. Did you upgraded from a previous version of BP? If so, from which version?
8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
Yes – a lot of them9. Are you using a standard WordPress theme or customized theme?
Using the Voce theme have a child theme10. Which theme do you use ?
Voce theme – http://www.wpstudio.com11. Have you modified the core files in any way?
No12. Do you have any custom functions in bp-custom.php?
NO13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
14. Please provide a list of any errors in your server’s log files. https://codex.wordpress.org/Debugging_in_WordPress
No errors
15. Which company provides your hosting?
SiteGround
16. Is your server running Windows, or if Linux; Apache, nginx or something else?
Apache
17. Which BP Theme are you using?
18. Have you overloaded any BuddyPress template files.
No
19. Any other site customisations that might have a bearing on the issue?
No
I’m looking for a way to remove or replace […] at the end of blog post excerpts on the Activity Stream. I’ve found a way to replace […] on the blog page by using the following code.
function new_excerpt_more( $more ) {
return ”;
}
add_filter(‘excerpt_more’, ‘new_excerpt_more’);excerpt_more is a WordPress filter. It helps with the blog page, but not the BuddyPress Activity Stream.
I found another filter, bp_get_activity_content_body but so far I haven’t been able to make the filter do what I want it to do.
Can someone please point me in the right direction? What BuddyPress filter can I use to remove or replace […] on the Activity Stream?
Thx!
Hi everyone, I developed this problem some weeks ago and I don’t know to solve it.
Whenever i access my website I see nothing but a white blank page, I asked some people who told me the issue is called White Screen of Death, but one of them told me he could only help with me paying him a few bucks and I believe its justs a minor issue i can fix myself with a little guide since I am a little broke.
So any help would be appreciated.
Thanks!Topic: BuddyPress Customizations
I am new to WordPress and Buddypress. I have a couple of items I am struggling with and would love a little direction.
1. In Buddypress, when you visit a group that is private, you receive a default message that says “This is a private group. To join you must be a registered site member and request group membership.” I would like to add a button directly below this message that says “Register”. This would need to be connected with the default message in some way so that the register button appears every time (and for every different group) the default message is displayed. I tried before but it seemed to connect the button only to one particular group. How can I go about adding this to the default message and what file and where in that file would I edit such a thing?
2. Once they press the button to register, how do you get them to redirect back to the group they were originally linked to?
3. In Buddypress, is there any way to turn off the public, private, or hidden options when creating a group and just make all groups private automatically?
I would really appreciate any assistance. Thank you.
I am new at asking for assistance in these forums. So, bear with me please. I am working on a WordPress site that involves BuddyPress groups as well as the membership system that PMPro provides. I am using these on the Kleo theme. I am looking to have a site that has many users who will make groups for their needed purpose. What I need to figure out is, once that group is made the user will send a link to the group they created to the guests they want to join said group. The guest that received that link will click on it and be sent to the group, however, they will still need to sign up to the site to access the group.
What I would like to know how to do:
1. The guest will be able to see the group (from clicking on the sent link) but I would like there to be a button on that page prompting user to sign up to the site to join the group.
2. Immediately after registration, which will be a form on its own page, the guest will be redirected back or to the same group page as the link clicked.I am fairly novice at this kind of thing and not really even sure where to even start, so I hope that I explained it well enough and I appreciate any assistance greatly. Thank you!
We are trying to redirect the users after registration on our site to a specific page (https://ficando.com.br/obrigado), without success. They are always sent to the site main page.
We could get the user to be redirected on his first login to the page above, from a code from PMPro site, working fine.
We are able to redirect the user after login to the desired page, no problems either.
We tried this on functions.php, nothing changes:
function wpse_19692_registration_redirect() {
return home_url( ‘/obrigado’ );
}add_filter( ‘registration_redirect’, ‘wpse_19692_registration_redirect’ );
We tried a modification on bp-custom.php file, also without success:
<?php
/**
* @package WordPress
* @subpackage Seeko
* @author SeventhQueen <themesupport@seventhqueen.com>
* @since Seeko 1.0
*/add_action( ‘bp_complete_signup’, ‘buddydev_redirect_after_signup’ );
function buddydev_redirect_after_signup() {
$page = ‘obrigado’;
bp_core_redirect( site_url( $page ) );
}?>
No matter what we do, nothing changes. Any ideas on how to achieve that?
Any help is much appreciated.
WP: 5.2.2
BP: 4.3.0
Theme: Seeko v. 1.1.5I’ve been spending my time searching for a way to add Custom User Role in a Group whenever the Administrator (or anyone with access) add new member into that specific Group in WordPress but there’s no luck.
what I’m trying to do is for example in WordPress, I have a user name “Kevin” with default user role “Contributor”. I want to add Kevin into a group named “Dev Team” with custom role as “Web Designer” specific only for that group. currently if I add users into a group, it will display default role as “Members” only. and I like to display custom user role for each member in a group.
so the default will be like:
Group: “Dev Team” Members:
Michael (Administrator)
Kevin (Moderator)
Keith (Member)
Lisa (Member)while what I want to achieve is:
Group: “Dev Team”. Members:
Michael (Administrator)
Kevin (Web Designer)
Keith (Programmer)
Lisa (System Analyst)Group: “Marketing Team”. Members:
Michael (Administrator)
Kevin (Marketing Operator)
Keith (Database Administrator)
Lisa (Customer Service)is there any way to achieve this?
Topic: Hook on New Topic or Reply
WordPress Version: 5.2.2
BuddyPress Version: 4.4.0
bbPress Version: 2.5.14Hello, I’m looking for a hook to grab data of new topics and replies as they are added.
I was thinking this would do the trick, but it does not trigger my curl request.
add_action('groups_forum_new_topic_after', 'group_was_posted_on', 10, 2); add_action('groups_forum_new_reply_after', 'group_was_posted_on', 10, 2);Then I tried this:
//new topic was created add_action('bp_forums_new_topic', 'group_was_posted_on', 10, 2); //new post was created to a topic add_action('bp_forums_new_post', 'group_was_posted_on', 10, 2);Still no luck. What actions/hooks do I need to use for:
User creates a new topic
User creates a new reply to a topicThanks for your help
Hi,
My goal is to grab the buddypress private messaging part and include this in another page such that this can be used as a single messaging feature without the complete buddypress profile.
I am somewhat familiar with customizations of templates and usage of hooks in wordpress.
My wordpress version is 5.2.2 and my buddypress version is 4.4.0.So when digging into buddypress I found the bp_templates folder and figured out that to for example load the message composition part we should use
bp_get_template_part( 'members/single/messages/compose' );. This included the part but without any styling while the stylesheet of buddypress does seem to be included when looking into the developer tools of Chrome.Therefore my question is: How to include the complete private messaging part on another page with the styling included?
Kind regards,
JustvdvHere is my profile
https://nature-photo-travel.co.uk/members/radar/I am admin and I chose “radar’ to add an extra level of security. hat security is compromised because my ‘hard-to-guess’ admin name is displayed on my public profile and even in the url.
What a gift for the hackers!!
I have ‘Tony Prower’ set as my display name in my wordpress profile. How do I get that to reflect in my buddypress profile?
