Search Results for 'theme'
-
Search Results
-
Topic: 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.
Topic: Buddypress error with WP
Bonjour à la communauté Buddypress,
Je rencontre un problème avc le plugin, je l’ai installé via un thème appelé thrive. Il y a eu un problème apres l’installation du thème, lorsque j’essaie de créer un compte avec “Subway login”, la création du compte fonctionne mais lorsque l’on clique sur terminer l’inscription, le wordpreess indique que le site rencontre des difficultés et je recois par mail ce message :
”
Bonjour !Depuis WordPress 5.2, une fonctionnalité native permet de détecter si une extension ou un thème cause une erreur fatale sur votre site, et vous notifie avec cet e-mail automatique.
Ici, WordPress a trouvé une erreur avec l’une de vos extensions, « BuddyPress ».
Détails de l’erreur
======================
Une erreur de type E_ERROR a été causée dans la ligne 643 du fichier /home/iyohflr/lastna/wp-content/plugins/buddypress/bp-members/classes/class-bp-signup.php. Message d’erreur : Uncaught Error: Call to undefined function bp_xprofile_fullname_field_id() in /home/iyohflr/lastna/wp-content/plugins/buddypress/bp-members/classes/class-bp-signup.php:643
Stack trace:
#0 /home/iyohflr/lastna/wp-content/plugins/buddypress/bp-members/classes/class-bp-members-admin.php(1567): BP_Signup::resend(Array)
#1 /home/iyohflr/lastna/wp-includes/class-wp-hook.php(286): BP_Members_Admin->signups_admin_load(”)
#2 /home/iyohflr/lastna/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(”, Array)
#3 /home/iyohflr/lastna/wp-includes/plugin.php(465): WP_Hook->do_action(Array)
#4 /home/iyohflr/lastna/wp-admin/admin.php(231): do_action(‘load-users_page…’)
#5 /home/iyohflr/lastna/wp-admin/users.php(11): require_once(‘/home/iyohflr/l…’)
#6 {main}
thrown
”J’ai essayé de désintaller et réinstaller le module mais rien n’y fait, il semble qu’il ne trouve pas les bons fichiers ou la bonne fonction.. Je n’aarrive pas à contaacter le thème il ne me repond pas sur leurs supports… Cela me bloque totalement, alors si l’un de vous peut m’apporter une solution je suis preneuse
Merci par avance pour votre retour,
Elsa
Topic: Problem with Newspaper theme
Hi, I have installed BuddyPress for a few days and I found a problem with my Newspaper theme. Unfortunately some writings (comments, biography and others) are not seen because they are of a color similar to the background of my theme … Furthermore, using Buddypress Nouveau, the user screen is predetermined with a white background that does not sit well with the rest of the site.
Is it possible to change these colors?
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 have a website in which i want to change theme which look like professional and easy to use because i am not a web developer so please tell me how to change theme for my site.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(); } } ?>