pejalev
Forum Replies Created
-
SOLVED:
before the $wp_ulike_class->get_template( $parsed_args, 0 ); and the apply_filters(‘wp_ulike_login_alert_template’, … there is — return — in the code, but these works with echo.Must replace the line 765 in wp-ulike/inc/general-functions.php:
return $wp_ulike_class->get_template( $parsed_args, 0 ); —-> to
echo $wp_ulike_class->get_template( $parsed_args, 0 );… and also the second after else.
Now works perfect!
Okay, I solved for myself with network deactivated WP_Ulike and an own plugin what auto activate the WP_Ulike network_wide… But I think in the latest version of your plugin it’s somewhere a mistake about network wide activation and ultimate members integration (maybe in this time your plugin network wide function also dont working with the buddypress for new WP_Ulike users (Maybe the error does not occur on sites, where the network wide activation is done before your latest plugin update)), or maybe I dont understand what is exatly the network wide function of the WP_Ulike… However your plugin one of the best plugins which I ever worked, thank you your great work!
The problem solved now, It was enough reset the general settings to defaults, but that’s why resettings the all options and this is for sure push back in the engines… The worst, I dont know when it happens again…
Okay, the problem was in my case, that my SEO plugin (All In One SEO Pack) overwrote my Ultimate Member SEO settings:
User Profile Title: {display_name} | {site_name}In similar cases the solution is very easy, go to your user page (/wp-admin/edit.php?post_type=page and choose you user template), and in your SEO settings (All In One or whatever you use) choose: Disable on this page/post.
I have such problem with user profile page titles… On my site these page’s title are User | My Site Title … (So User in any case, not the current author name)
Now I try to solve with this (in wp-includes/general-template.php below line 1003):
} elseif ( is_page( ‘user’ ) ) {
$title[‘title’] = $author->display_name;where the user is my user page’s slug, but nothing…
I also try with these:
‘user/’ . $author .”
‘user/’ . $author->display_name .”
‘128’ (what is my user pages’s ID)
To someone an idea?