Hello!
How can I disable the "Import Dummy Data" button on my working site to avoid that someone accidentally press it?
Hello!
How can I disable the "Import Dummy Data" button on my working site to avoid that someone accidentally press it?
Hi,
Go to wp-content\themes\propulsion\includes\admin and open register-admin-options.php. Look for this code
$avia_elements[] = array(
"slug" => "avia",
"name" => "Import Dummy Content: Posts, Pages, Categories",
"desc" => "If you are new to wordpress or have problems creating posts or pages that look like the theme preview you can import dummy posts and pages here that will definitley help to understand how those tasks are done.",
"id" => "import",
"type" => "import");
Replace it with
/*$avia_elements[] = array(
"slug" => "avia",
"name" => "Import Dummy Content: Posts, Pages, Categories",
"desc" => "If you are new to wordpress or have problems creating posts or pages that look like the theme preview you can import dummy posts and pages here that will definitley help to understand how those tasks are done.",
"id" => "import",
"type" => "import");*/
Regards,
Ismael
You must log in to post.