wilkouk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: no editor in 6.7 for SafariInterestingly, the problem seems to have disappeared. Perhaps the latest OS X update (15.1.1) sorted something out.
Good News !Forum: Fixing WordPress
In reply to: no editor in 6.7 for SafariI note this has a ‘resolved’ tag. What was the resolution?
Forum: Fixing WordPress
In reply to: no editor in 6.7 for SafariSame for me. Select Edit Post. Blank Screen – JavaScript Error
“You’re using Safari 18.”[Error] TypeError: undefined is not an object (evaluating ‘tu.unstable_scheduleCallback’)
n (react-dom.min.js:10:105894)
(anonymous function) (react-dom.min.js:10:129075)
Global Code (react-dom.min.js:10:129109)
Downgraded to 6.6 – same symptomsSo effectively your plugin has no way of passing any parameters to an API which returns CSV data to your plugin to generate the graph? No way of changing the URL ‘on the fly’ before the ‘call’ to the URL is made?
So I can place a php variable directly into the URI?
e.g.
Forum: Plugins
In reply to: [WP Custom Admin Interface] Newest update gives error messageWell done @northernbeacheswebsites. Thanks for jumping on this so quickly. We’ll update the plugin and report back.
Forum: Plugins
In reply to: [WP Custom Admin Interface] Newest update gives error messageNot my problem if you can’t code. Perhaps, I wasn’t explicit enough. REMOVE THE WHOLE LINE or put // infront of add_action(‘admin_init’,’helloworld’); i.e.
//add_action(‘admin_init’,’helloworld’);
Forum: Plugins
In reply to: [WP Custom Admin Interface] Newest update gives error messageFind the plug-in code (wp-content/plugins/wp-custom-admin-interface/wp-custom-admin-interface.php) open the PHP file and find the following function
function helloworld(){
//current user
$current_user = wp_get_current_user();
//current user ID
$current_user_id = $current_user->ID;//get key variables
$current_user_roles = $current_user->roles;$current_user_roles = array_values($current_user_roles);
var_dump($current_user_roles);
}
add_action(‘admin_init’,’helloworld’);Remove the ‘add_action’ and that will solve the issue until the dev updates the plug-in.
- This reply was modified 4 years, 12 months ago by wilkouk.
Forum: Fixing WordPress
In reply to: Add Media Button Does Not WorkI’ve had this issue for months and have only just solved it. Check that you do not output anything before the <HTML> tag in the header. I had a comment that output the remote IP address e.g. <!– xxx.xxx.xxx.xxx –>, this was the cause of the problem. This innocuous comment was being included in the JSON being used by the Add Media AJAX calls to find the images. As soon as I’d spotted it, removed it. Hey Presto! The images then re-appeared. Hope this helps.