Can you post the block of code you changed?
I had the same problem. The issue for me was that when it was looking for the local file it was running esc_url on the file path. If you are using the nd-shortcode plugin the file is
wp-content/plugins/nd-shortcodes/inc/settings/import-demo/index.php
Line: 83 & Line 191
$nd_options_xml_url = esc_url( get_template_directory().’/import/demos-options.xml’);
CHANGE TO
$nd_options_xml_url = get_template_directory().’/import/demos-options.xml’;
-
This reply was modified 5 years, 8 months ago by djrazysk8er.
-
This reply was modified 5 years, 8 months ago by djrazysk8er.