urshobhit
Forum Replies Created
-
Forum: Plugins
In reply to: [Wallet for WooCommerce] Wallet payment issuetera wallet balance is not applying on tax, facing the same issue.
the same issue is also there with the free version. you made these 2 changes in 1.6.1 update
* Fix – Fixed small bug with filter prefixes
* Fix – Fixed validation for URL prefixes
which is causing this issue, can you please tell how can we revert these changes or resolve this issue ?.class-wp-cache.php can be deleted using this
find path -name “.class-wp-cache.php” -delete.json can be deleted using this
find path -name “.json” -delete
commands to remove WPTemplatesOptions options malware
First Run this command to get a list of infected files
find -name “*.php” -exec grep -l “WPTemplatesOptions” {} \; > output.txt
Then Run this command to delete malware files
find public_html -name “.*.php” -deleteFinal command to remove WPTemplatesOptions strings from website files
find public_html -type f -exec sed -i ‘/WPTemplatesOptions/,+2 d’ {} \;