@bbwpsupport
If we are talking about boss-sensei
plugin, you should know about these few bugs:
1) Forums in groups don’t working with new version of BuddyPress.
Solution:
File: boss-sensei/templates/sensei-buddypress/buddypress-group-single.php
Line 318 should be commented or deleted.
2) sensei-course-progress widget don’t working.
Log:
PHP Warning: Invalid argument supplied for foreach() in /site/wp-content/plugins/boss-sensei/widgets/widget-boss-edu-course-progress.php on line 272
PHP Notice: Undefined variable: course_lessons in /site/wp-content/plugins/boss-sensei/widgets/widget-boss-edu-course-progress.php on line 272
Solution:
Replace variable in foreach from $course_lessons
to $non_module_lessons
File: boss-sensei/widgets/widget-boss-edu-course-progress.php
on line 272
Example:
// foreach ( $course_lessons as $lesson_item ){ // before
foreach ( $non_module_lessons as $lesson_item ){ // after
3) Old version of fontawesome (as I wrote before).
Solution:
File: boss-sensei/widgets/widget-boss-edu-course-progress.php
Replace:
fa fa-circle-o
–> far fa-circle
fa-sort-desk
–> fa-sort-down
And you need to check other files and icons.
Bonus:
4) CSS Error: color: 322
is not a color value.
Solution:
File: boss/buddyboss-inc/buddyboss-framework/options/custom-css.php
Line 693
Replace boss_cover_profile_size
to boss_links_color
and save settings of theme.
Example:
color: <?php echo esc_attr( boss_get_option( 'boss_links_color' ) ); ?>;
5) You should check it.
File: boss/buddyboss-inc/init.php
Line 233:
wp_enqueue_style( 'redux-google-fonts-boss-options', $google_fontlink, array(), '1.0' );
Variable $google_fontlink
can be empty (if user not selected any fonts) and then result will be looks like this:
<link rel='stylesheet' id='redux-google-fonts-boss-options-css' href='https://fonts.googleapis.com/css?family&ver=1.0' media='all' />
This line will create a connection error.
More errors and warnings you can find in https://validator.w3.org/
Like
The type
attribute is unnecessary for JavaScript or CSS resources.
and others.
-
This reply was modified 6 years, 3 months ago by AiratVibe.
-
This reply was modified 6 years, 3 months ago by AiratVibe.
-
This reply was modified 6 years, 3 months ago by AiratVibe.