grard
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Appointments] How do I bulk delete appointments?Agree! Bulk delete is needed for connections!
Regards
I noticed that this problem is hosting service dependent. I tried on another web hosting and it works OK there. So the issue is about some server settings.
Any thoughts which server side settings could cause this?
Thnx.
The main thing I would like to know now is how to clean out all UM settings from the site to bring the system to a condition like UM was never installed. Because I can see that some settings are still kept even after uninstalling. I wish I knew where they are stored to clean them.
I also tried deactivating all other plugins and leave UM only – to make sure that it’s not a conflict with some other plugin resulting this login problem.
I can say that the problem persists even when all other plugins are off.
Now I made another reinstall. This time the installer created the default pages.
When a user logins – he’s redirected to his account page. But next time he clicks on any Member only page – he’s again redirected to login page.
It looks like plugin cannot “remember” the logged-in user.
Hi Champ Camba!
I uninstalled UM and all pages involved. Then installed the latest version of the plugin. But the problem is still there.
Another thing I must mention is that after reinstall – no pages were auto-created (like Members).
Please, tell me how can I uninstall UM completely with all settings.
I did “Reset all” in UM settings, but it didn’t help.
After login I’m still being redirected to login page again.Please, tell me how to make a clean reinstall of UM?
Unistalling UM and reinstalling afterwards – doesn’t help. Because all user settings are still there and not set to default. It seems like they are stored somewhere in the DB.
How can I make a full reset of UM settings?
Hi,
if I set “Allow Backend Login Screen for Guests” to Yes – then I can view the default wp login page /wp-admin. But still can’t login.
Hi,
“Allow Backend Login Screen for Guests” is set to No
“Disable Admin Login via Frontend” is set to NoIs that correct?
But login not working still…
Thanks for reply. But is this option supposed to be on in a free version?
In my case it’s on and grayed out.
It seems it was off by default…Forum: Plugins
In reply to: [Rating System] Counters displayed in excerptI have solved this issue by writing two functions and adding them to functions.php:
function my_post_length($text = null) {
$text = trim( strip_tags( get_the_content() ) );
$word_number = preg_match_all( ‘~\s+~’, “$text “, $m );
return $word_number;
}add_filter( ‘the_excerpt’, ‘my_trim_excerpt’ );
function my_trim_excerpt( $excerpt )
{
$content = apply_filters( ‘the_content’, get_the_content() );
if (my_post_length() < 34) {
$lastSpacePosition = strrpos($excerpt, ‘ ‘);
$excerpt = substr($excerpt, 0, $lastSpacePosition);
return $excerpt;
}
else return $excerpt;
}You just have to set your actual excerpt length. In my case it’s =34.
Forum: Plugins
In reply to: [Rating System] Buttons show up only when 'Keep custom text enabled'I found it was a theme issue.