Search Results for 'theme'
-
Search Results
-
Topic: Group active not yet active
WP 5.2.1, BP 4.3.0, PHP 7.3.5, GhostPool Aardvark Theme 3.5
I can create a group, now since my last post where the theme couldn’t work with nouveau, couldn’t just swap to legacy, had to copy template files to theme BP folder for group single.
Now, strangely it appears to all work, but under admin it says “no admin” and to the right of the photo it says “group active not yet active”
I have WP 5.2.1, BP 4.3.0, PHP 7.3.5, GhostPool Aardvark Theme 3.5
I can create groups, but when I click on the group, it never opens and I get a white page.
I have tried deactivating plugins, didn’t resolve issue.
In error logs I have this:PHP Fatal error: Uncaught Error: Call to undefined function bp_nouveau_group_meta() in /home4/bandarro/public_html/wp-content/themes/aardvark/buddypress/groups/single/group-header.php:24
Stack trace:
#0 /home4/bandarro/public_html/wp-includes/template.php(724): require()
#1 /home4/bandarro/public_html/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(155): load_template(‘/home4/bandarro…’, false)
#2 /home4/bandarro/public_html/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(61): bp_locate_template(Array, true, false)
#3 /home4/bandarro/public_html/wp-content/themes/aardvark/lib/sections/single/page-header.php(112): bp_get_template_part(‘groups/single/g…’)
#4 /home4/bandarro/public_html/wp-content/themes/aardvark/buddypress.php(21): ghostpool_page_header(0, ‘gp-fullwidth-pa…’, ”, ‘320px’)
#5 /home4/bandarro/public_html/wp-includes/template-loader.php(78): include(‘/home4/bandarro…’)
#6 /home4/bandarro/public_html/wp-blog-header.php(19): require_once(‘/home4/bandarro…’)
#7 /home4/ban in /home4/bandarro/public_html/wp-content/themes/aardvark/buddypress/groups/single/group-header.php on line 24Topic: Blurry avatar images
Hi everyone.
Recently I have increased my avatar thumbnail sizes to about 225×225 and full size image to 270×270 but for the sake of the retina, I’m also trying to upload them larger much larger.I have changed my settings to this below but for some reason, the images still come out blurry – even if uploading very his res photo. Is there anything else I should do? I tried this code both in the child theme functions.php and in bp-custom.php but still blurry (both avatar and main image but avatar worse).
if ( !defined( ‘BP_AVATAR_THUMB_WIDTH’ ) )
define( ‘BP_AVATAR_THUMB_WIDTH’, 300 ); //change this with your desired thumb widthif ( !defined( ‘BP_AVATAR_THUMB_HEIGHT’ ) )
define( ‘BP_AVATAR_THUMB_HEIGHT’, 300 ); //change this with your desired thumb heightif ( !defined( ‘BP_AVATAR_FULL_WIDTH’ ) )
define( ‘BP_AVATAR_FULL_WIDTH’,300 ); //change this with your desired full size,weel I changed it to 260if ( !defined( ‘BP_AVATAR_FULL_HEIGHT’ ) )
define( ‘BP_AVATAR_FULL_HEIGHT’, 300 ); //change this to default height for full avatarif ( !defined( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’ ) )
define( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’, 800 );Hello,
I’m working on my WordPress web site and I want to import groups (with groups type as possible) with a csv file or other I can create. The file will come from another database in which I have a lot of data, and I want to transform that data in groups.
I’m working on the theme BuddyBoss with BuddyPress.
Does someone know how to do that?
Thanks in advance,
FelixHi,
We are working on a new dating site with Themosaurus Theme (Gwangi v1.3.1) and it seems that an issue could be related to buddypress. We contact the support of Themosaurus who tell us to contact BuddyPress support. (no issue with twenty nineteen)
We try to capture the discussion on Themosaurus forum :
Regards.
David
I am having an issue with BuddyPress public messaging. When users attempt a public message, the activity form (buddypress nouveau) does not appear on the page. It appears that the requisite javascript files are unable to load. I’ve tested this with default wordpress themes ( twentynineteen). I contacted my hosting service provider, wpengine, and they identified the following database error:
[Fri May 17 17:14:48.061122 2019] [php7:notice] [pid 18420] [client 127.0.0.1:27604] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘( user_id, blog_id ) VALUES ( 1, 1 ) /* From [menastage.wpengine.com//wp-admin/?’ at line 1 for query INSERT INTO ( user_id, blog_id ) VALUES ( 1, 1 ) /* From [menastage.wpengine.com//wp-admin/?wp-cmd=ensure] in [/nas/content/live/menastage/wp-content/plugins/buddypress/bp-blogs/classes/class-bp-blogs-blog.php:127] */ made by require_once(‘wp-admin/admin.php’), require_once(‘wp-load.php’), require_once(‘wp-config.php’), require_once(‘wp-settings.php’), do_action(‘init’), WP_Hook->do_action, WP_Hook->apply_filters, call_user_func_array, WpeCommon->real_ip, WpeCommon->process_internal_command, WpeCommon->ensure_standard_settings, wp_update_user, wp_insert_user, do_action(‘profile_update’), WP_Hook->do_action, WP_Hook->apply_filters, call_user_func_array, bp_blogs_add_user_to_blog, bp_blogs_record_blog, BP_Blogs_Blog->save
Can anyone identify a solution to this issue? Or perhaps anything else I should try?
Topic: Multisite issue
Good Morning,
WordPress 5.2
BuddyPress 4.3.0I’m in the process of creating a multisite which will contain an existing BuddyPress site. Right now I’m just setting up the site. I’ve created a simple top site, then enabled BuddyPress. When I upload bp-custom.php the site starts to throw errors:
The plugin generated 3 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.
Warning: Cannot modify header information – headers already sent by (output started at /home/navalw5/XXX.XXXXwargaming.com/wp-content/plugins/bp-custom.php:7) in /home/navalw5/test3.navalwargaming.com/wp-includes/option.php on line 948
If I remove the bp-custom.php these errors go away.
This is the code in bp-custom:
<?
add_action( ‘init’, ‘remove_xprofile_links’ );
function remove_xprofile_links() {
remove_filter( ‘bp_get_the_profile_field_value’, ‘xprofile_filter_link_profile_data’, 9, 3 );
}
>?
Pretty standard and a direct copy from the production site, I was curious so I just uploaded a blank bp-custom. I still got the errors.I had network activated BuddyPress, so I deactivated and then activated the plugin in the main site.
Still, have the error.
My intention is to have a multisite / BuddyPress installation. where members can be part of several or just one other department of the organization.
site/org1
site/org2
Site/org3each site would have its own groups & forums
All the research seemed to indicate that BuddyPress / bbpress should be network activated.
wp-config. currently looks like:
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, false);
define(‘DOMAIN_CURRENT_SITE’, ‘test3.navalwargaming.com’);
define(‘PATH_CURRENT_SITE’, ‘/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);
define( ‘BP_ENABLE_MULTIBLOG’, true );I’m confused as to the error, should I be using the child theme’s function.php instead? Any help is greately appreciated.
Thanks
