Kyouri
Forum Replies Created
-
Forum: Plugins
In reply to: [Ocean Extra] Ocean Extra 1.5.10 Crashes CustomizerThank you, Amit.
All the plugins were updated to latest version.
The issue was persistent so I deactivated all plugins and the customizer was still having issues on one of the three domains.
Contacted my hosting provider, and while awaiting their response, I reinstalled WordPress 5.2.2 then slowly reactivated plugins. All seems fine now.
Just for information, my host reached out to me this morning and mentioned that I was running php7.2 fastcgi and recommended changing the file to php7.2 cgi.
As of right now, all seems fine with all 3 sites, so I will not be changing the php.
Apologies for the subject line of this thread. I’ve been using OceanWP for years and it, along with the plugins, are the only theme I use. Props to the team! It is however, the only plugin that I initially deactivated and got the customizer to work. It seems, in my opinion, it was server side, not plugin related.
Thank you again, for responding.
Forum: Plugins
In reply to: [Ocean Extra] Ocean Extra 1.5.10 Crashes CustomizerAddendum: All 3 sites running WP 5.2.2
Forum: Plugins
In reply to: [Appointment Booking Scheduler] Menu ConflictApplied. Menus still active. Re-activated plugin. Menus disappeared. Cleared cache. Same issue. Deactivated plugin. Menus reappeared.
Sorry this is causing issues. Thank you for trying, though.
Forum: Plugins
In reply to: [Appointment Booking Scheduler] Menu Conflicthttps://toukaisha.com – free version of OceanWP.
Thank you for checking into this.
Forum: Reviews
In reply to: [Voyage] Alot of paid functions for freeUpdate of the support – Stephen responded in under 2 hours. Still working on the issue, but prompt response by theme creator is another plus for this theme.
*Edit –
Problem resolved.. sort of. Not a theme issue, a Chrome issue.Excellent service!
Support – A+
Forum: Plugins
In reply to: [Featured Category Widget] [Plugin: Featured Category Widget] Internal CSSI completely forgot about this post, my apologies! Thank you, tepelstreel, for your reply.
@ zauriel
I’m no guru at CSS, but maybe try:
div #editoriale .widget-title h3 { background-color: #2656A4; color: #FFFFFF; }It’s fixed now. Went through my c-panel. Changed the title of the plugins folder to ‘plugins-disabled’, created a new folder titled ‘plugins’ and started individually dragging and dropping each plugin back in. While the All-in-one-Events plugin was updated and is working, the lag in the reactivation of the plugin at the time of the update rendered 3 of my other plugins inoperable. It’s not really a big deal as I can reupload those plugins and start fresh with them. It was just more of a pain that the update lagged so badly that a refresh cut out the whole site.
Nonetheless, I’ll mark this topic as resolved.
Thanks, Ulrich. I removed the plugin directly from my c-panel, refreshed, but unfortunately the issue still persists.
I even tried to find pluggable-function.php in order to receive a password reset email, but no luck. Checked pluggable.php but again not sure if what I found in a different topic would apply to that file as I cannot find “mime” anywhere in there. Perhaps I’m looking in the wrong place?
http://ww.wp.xz.cn/support/topic/how-does-wp-send-the-user-registration-email/page/2?replies=58
The function looks something like this:
if ( !function_exists(‘wp_mail’) ) :
function wp_mail($to, $subject, $message, $headers = ”) {
if( $headers == ” ) {
$headers = “MIME-Version: 1.0\n” .
“From: ” . get_settings(‘admin_email’) . “\n” .
“Content-Type: text/plain; charset=\”” . get_settings(‘blog_charset’) . “\”\n”;
}return @mail($to, $subject, $message, $headers);
}
endif;For Brinkster, you want to rewrite it like this:
if ( !function_exists(‘wp_mail’) ) :
function wp_mail($to, $subject, $message, $headers = ”) {
// if( $headers == ” ) {
// $headers = “MIME-Version: 1.0\n” .
// “From: ” . get_settings(‘admin_email’) . “\n” .
// “Content-Type: text/plain; charset=\”” . get_settings(‘blog_charset’) . “\”\n”;
// }
//
// return @mail($to, $subject, $message, $headers);require(“c:\php\includes\class.phpmailer.php”);
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->Host = “sendmail.brinkster.com”;
$mail->SMTPAuth = true;
$mail->Username = “[email protected]”;
$mail->Password = “your-pass-here”;
$mail->From = “[email protected]”;
$mail->FromName = “User”;
$mail->AddAddress($to);
$mail->IsHTML(true);
$mail->Subject = $subject;
$mail->Body = $message;$mail->Send();
}
endif;Update: On FF
The page isn’t redirecting properlyFirefox has detected that the server is redirecting the request for this address in a way that will never complete.
This problem can sometimes be caused by disabling or refusing to accept cookies.