Search Results for 'theme'
-
Search Results
-
Hello! I am creating a social network with buddypress 5.0 and last wordpress update with the theme went and Seventeen Version: 2.2 and I am creating custom fields and I need to put photo gallery and video in the custom profile fields for the professional profile and the user profile! Is there any way or plugin that can put photo and video gallery? Please help
Topic: post in the profile
462/5000
Hello! I am creating a social network with Buddypress 5.0 with the latest WordPress update! In the Twenty Seventeen Version: 2.2 theme in the user profile that I have created and professional does not allow me to write a post from the profile itself instead of from the start or home page of the social network! How can I do so that both profiles (user and professional) can be written from the profile as or similar to Facebook?Topic: Cannot remove group invites
Hi folks,
we have a private group where a user sent out some invites. The list under “pending invites” (like here: checking for pending invites) offers a “delete” or “remove” button. However, clicking on it won’t remove anything but give the generic error message “Group invitation could not be removed”. This happens with expired invites as well as with new invites.Running on Buddypress 5.0.0 on WordPress 5.2/5.3, additional BP-Plugins Group Email subscription, and the Woffice Theme (nothing special about invitations here, I think).
Is there – besides this screen – any option to remove pending invites to renew an invitation? And: do invitations really expire? At this point I’m not sure it’s a user issue, but I can reproduce the “cannot remove” issue with new invitations as mentioned.
Thanks for any hint!
regards
ekaFor the past week, my site has not being showing subscriber accounts the activity feed. However, it show just fine for admin accounts. I have played with themes, CSS, and plugins to detect the error, but nothing is changing. What could the issue be?
I’m simply just trying to use xprofile_get_field_data with no success inside a child theme.
I have tried so many different things. I’ve tried…
- adding global $bp;
- creating a new instance: $bp = buddypress();
- echo $bp->loggedin_user->id (returns nothing);
- hardcoding data for xprofile such as: xprofile_get_field_data(4,3053)
- include_once to the plugins page that contains the function
- using add_action(“bp_loaded”, “my_function”). (Didn’t fire my function)
- I get “TRUE” if testing if (function_exists(‘xprofile_get_field_data’))
What else can I be doing? Seems simple enough, yet, doesn’t want to work.
Using @mentions in any text box (posts, replies, messages, etc) completely fails to pop up an auto-complete box with member suggestions. From what I’ve seen, this is supposed to be an automatic feature of BuddyPress, but I ain’t got it.
I can only assume that one of my plugins or theme customizations has disabled the feature? Can anyone help me out? It would be an extremely useful feature to have in the community I manage.
Thanks!
Hello, we’re using WordPress version Version 5.3, BuddyPress version 5.0.0 and our website is https://www.lightstalking.us. The theme we’re using is called Performag (Version: 1.409).
Two days ago we suddenly started to have this issue regarding posting images in forum threads – our forum participants can’t post images. They can upload them and hit the send button, but the images simply won’t show up in the thread.
The issue is not due to plugin incompatibility because it’s still there even when I disable all the plugins we have.
Let me know if there’s anything we can do to solve this.
Best,
JasenkaTopic: Error showing members list
Hi,
I’m using woffice + buddypress.
When trying to show the members directory I get this error:
Notice: Trying to get property ‘member’ of non-object in ../wp-content/themes/woffice/inc/buddypress.php on line 1360Any fix?
Thanks.Hi
When I upload a profile picture it will upload the picture but will not allow me to crop it. The is a tiny black box in the top left corner which when hovered over gives the ‘change size’ arrows, but when clicked it gets even smaller and the arrows do not appear.
I am using the latest versions of WordPress and Buddypress.
I have tried the following:
* Used default 2017 theme
* Disabled all plugins except buddypress
* Used different browsers: Firefox, Chrome, Edge, SafariWhen searching this forum I have seen that this is a known problem but have been unable to find any solution.
Any assistance would be greatly appreciated.
Hey All,
I just upgraded to the latest WP. ~and Im trying out TwentyTwenty theme… and.. its awful..
i dont even know where to begin..
i guess first of all its too narrow?!!!
*Why cant there be a ‘beautiful’ out-of-the-box theme?
on a tangent… i wish CBOX (commons-in-a-box) had taken off…
on another tangent.. i wish @buddyboss themes were free (or have a free version)Hi,
I am working on the login form on the home page and I use “WordPress Login Form”. To avoid being redirected to login.php after entering the wrong data and when the form fields are empty, I pasted the following code. I have a question, how do I add a login error message to a custom login page „WordPress Login Form”?
ps. I think the added code does not have to be divided into two parts. Can it be shortened?<?php //Is the data correct function my_front_end_login_fail( $username ) { $referrer = $_SERVER['HTTP_REFERER']; // where did the post submission come from? // if there's a valid referrer, and it's not the default log-in screen if ( !empty($referrer) && !strstr($referrer,'wp-login') && !strstr($referrer,'wp-admin') ) { wp_redirect( $referrer . '?login=failed' ); // let's append some information (login=failed) to the URL for the theme to use add_action( 'wp_login_failed', 'wp_login_form'); exit; } } //if the fields in the form are empty add_action( 'wp_authenticate', '_catch_empty_user', 1, 2 ); function _catch_empty_user( $username, $pwd ) { $referrer = $_SERVER['HTTP_REFERER']; if ( empty( $username ) || empty( $pwd )) { wp_redirect( $referrer . '?login=failed' ); exit(); } } ?>