Thank you!
Hello,
for everyone with this problem, you have to:
disable newspaper theme and delete the folder. Disable td composer and all plugins related to newspaper theme. Delete all.
Go to wp-content/plugins and search wp-zexit or wp-swamp.. delete folders
we will Install a fresh wordpress.. backup your wp-content folder to not lose your uploaded files, etc… backup wp-config.php, and any other file you find important inside your site folder. We will erase the folder. Backup your database.
Delete all files inside your site folder.
Download WordPress from wordpress . org/latest.zip , unzip it in the site folder. Please note that it will create a wordpress/ folder, and you need to copy all files to your root folder
restore your wp-config.php and wp-content folder that you have backed up
Now you have to check if your database is compromised, probably it is
on your wordpress database, check on wp_users if it have an user that is not created by you, probably with the name “greeceman”. Using command line code is ‘select * from wp_users;’
Delete user.. if the Id of the hacker user is for example 19, then use ‘delete from wp_users where ID=19;’ if you are using command line. Please don’t ever use SQL commands without the where clause.
Check if there’s something on ‘td_live_css_local_storage’ using ‘select option_value from wp_options where option_name = ‘td_live_css_local_storage’;’, probably is full of obfuscated sh1t.
Clear with ‘UPDATE wp_options SET option_value = ” WHERE option_name = ‘td_live_css_local_storage’;’
Any ideea?

Thank you Satwik. i already did that.
I’m looking forward for the developers answer!
With my old theme with a traffic of 400 visitors on the same time on server, my cpu was 0.9 – 1.3 maximum…
Nagarig, what version of php do you run on your server?
And if i installed the theme on a test domain ( other than the domain where ill going to put it when i finish) in order to build the site, what should i do when i want to transfer the theme on my client domain?
Momentan am pus tema pe un domeniu de test pentru a putea configura atat vizual cat si tehnic site-ul. In curand am vreau sa pun tema pe serverul clientului care bineinteles are alt domeniu. Ce trebuie sa fac pentru o tranzitie transparenta si usoara.
-
This reply was modified 6 years by
Kpkna.
Solved!
add_action( 'do_meta_boxes', 'eliminbox' );
function eliminbox(){
if ( ! current_user_can( 'administrator' ) ) {
remove_meta_box( 'td_post_theme_settings_metabox', 'post', 'side' );
}
}
In your case you have to add this code too (in the same location)
.tdi_18_cc8 .td-module-meta-info {display:block;}
Hi,
here is a fix for this issue. Please an moderator to confirm it and why not to put it in the next theme update.
So, you have to put the below code into the theme settings -> custom code -> custom css
html[class*=ie] [class*=td_flex_block_] .td-image-container{
float:left;
margin-right:10px;
}
Let me know đ
-
This reply was modified 6 years by
Kpkna.