user listing trouble
-
Hi,
https://brokenbikes.club/polzovateli/german/profile/
when i click on “listing” i have a blank page, pls helpThe page I need help with: [log in to see the link]
-
Hi,
a completely blank page indicates some kind of PHP fatal error. Please try opening file wp-config.php and adding there this linedefine( "WP_DEBUG", true );and refresh the page, now aside of white page you should also see an error message which you can copy and paste here i should be able to help then.https://monosnap.com/file/Ium9jtHxbenmjQPOJqcylikqydNQqw
i don’t see admin menu π
and…
https://brokebikes.club/polzovateli/alyona/
how to change Default Members Profile Landing Tab on listing?
In wp-config.php you have the WP_DEBUG defined (at least) twice on lines 80 and 92 it should be there once only, also the line 92 does nothing because the WP_DEBUG was already defined and you are using it once WordPress already run wp-settings.php.
Remove the line 92 and change ‘false’ to ‘true’ on line 80.
I am not familiar with BP_DEFAULT_COMPONENT constant but it seems it is not working in BP 4.0+ https://stackoverflow.com/questions/54068617/custom-buddypress-profile-page-set-as-landing-page-bp-default-component
-
This reply was modified 7 years ago by
Greg Winiarski.
link trouble, i think
i found some interested
i probably use GOOGLE CHROME
in normaly mode:
https://monosnap.com/file/G5VnDc9n3RT1Wn5IEip1HShZ5xk9B2in INKOGNITO mode
https://monosnap.com/file/G5VnDc9n3RT1Wn5IEip1HShZ5xk9B2i don’t understand
https://brokebikes.club/polzovateli/alyona/adverts/
https://monosnap.com/file/UB6FsS8GaZalrGmAkIYG34e7IjKhQr
i’m find the troube, but i don’t know how to decide this
I’ts ADBLOCK, he’s defaul blocked class: adverts === advertisements
how to decide this?
Hi,
add in your theme functions.php the code below it should fix it‘
add_filter( “body_class”, “my_body_class” );
function my_body_class( $classes ) {
if(($key = array_search(“adverts”, $classes)) !== false) {
unset($classes[$key]);
}
return $classes;
}
‘pls help, i dont understand whitch is my “body_class” or βmy_body_classβ, may u tell me a ready code for paste for my site?
Please Greg!
The code i pasted is incorrectly formatted as i used incorrect formatting tag, please remove it and copy and paste this one instead
add_filter( "body_class", "my_body_class" ); function my_body_class( $classes ) { if(($key = array_search("adverts", $classes)) !== false) { unset($classes[$key]); } return $classes; }Thanks Greg, your the BEST!
-
This reply was modified 7 years ago by
The topic ‘user listing trouble’ is closed to new replies.