mehrdad1
Forum Replies Created
-
thank you, And have a nice day too
I did not uninstalled any plug ins, but start working fine now…
Thank you so much.hi,
thank you so much. 🙂 here is the links:
https://new.vanclean.ca/test-this-is-title/
after click submit,shows error, i even tried with booking simple captcha and it is same result.
Thank you
MikeForum: Fixing WordPress
In reply to: Can't upload images to websitethanks,,,
777 worked for me 🙂Forum: Fixing WordPress
In reply to: 3 sites on one host but getting 404 with only my own IP addressthank you.
they send me an email and asked me if i can ping couple different ip’s and moved to other server i think,,but took a long time to find the problem,,
thanks again:)Forum: Plugins
In reply to: Redux Framework how to removehi, I had this problem as well..drove me crazy..
finally I edit file uninstall.php at plugin and then i saw delete option at WordPress dash:
—————————
* Fired when the plugin is uninstalled.
*
* @package ReduxFramework\Uninstall
* @author Dovy Paukstys <info@simplerain.com>
* @since 3.0.0
*/// if uninstall.php is not called by WordPress, die
if (!defined(‘redux-framework’)) {
die;
}$option_name = ‘wporg_option’;
delete_option($option_name);
// for site options in Multisite
delete_site_option($option_name);// drop a custom database table
global $wpdb;
$wpdb->query(“DROP TABLE IF EXISTS {$wpdb->prefix}mytable”);