• Resolved jasaweb

    (@jasaweb)


    I have checked HTML, JS, CSS Options, but cant load additional setting even I click Show advanced settings button)

    My website is multi site.

    Any idea what is causing the error?

Viewing 13 replies - 1 through 13 (of 13 total)
  • Plugin Author Optimizing Matters

    (@optimizingmatters)

    probably a JS error due to a conflict with another plugin on the wp-admin side of things.

    you can enforce advanced view by going to the under-the-hood settings-page wp-admin/options.php and setting autoptimize_show_adv to 1 there and submitting that (potentially huge, these are all options of your wordpress install) form.

    frank

    Thread Starter jasaweb

    (@jasaweb)

    Can not find autoptimize_show_adv

    what your suggestions?

    Plugin Author Optimizing Matters

    (@optimizingmatters)

    errr … either temporarily disable the plugin that is causing the backend JS breaking or use this code snippet to create & set that option;

    
    add_action('init','advanced_ao');
    function advanced_ao() {
    	update_option('autoptimize_show_adv','1');
    }
    
    Thread Starter jasaweb

    (@jasaweb)

    ok it works but not all

    If I checked the CSS options (the options below looks blur, I have save it first to make fully appear) and then checked Inline and Defer CSS but the input field (text area) not showed up.

    could you help me?

    Plugin Author Optimizing Matters

    (@optimizingmatters)

    could you help me?

    the only thing you can do is find out which plugin is breaking JS on the backend and kill that (at least temporarily) @jasaweb

    Thread Starter jasaweb

    (@jasaweb)

    already applied the method yesterday, but the problem is persist, and also I got nothing error explanation in console (all clean)

    Plugin Author Optimizing Matters

    (@optimizingmatters)

    no idea what’s might cause that i’m afraid @jasaweb, makes no sense really as the options-page uses pretty standard jQuery functionality to show/ hide nodes based on options clicked … the only solution remaining would be to edit autoptimize’s options in wp-admin/options.php and/ or set new options using the snippet method above.

    Thread Starter jasaweb

    (@jasaweb)

    ok, thank you for your help,

    Any way this plugin is the only choice for cache optimizing for many website I developed for years, hope get another solution in other place for this situation.

    Thread Starter jasaweb

    (@jasaweb)

    Hi bud,

    What is the best folder/file permission for this plugin?

    Need your reply ASAP

    Plugin Author Optimizing Matters

    (@optimizingmatters)

    AO needs write-permissions to wp-content/cache/ in which is will create an autoptimize directory in which cache-files will be written. that’s about it, really ??

    Thread Starter jasaweb

    (@jasaweb)

    ?? I change the permission of every folder of AO plugin to 0755 and the files of AO plugin to 0644, then your plugin now works perfect as usual.

    How do you think?

    Plugin Author Optimizing Matters

    (@optimizingmatters)

    looks OK @jasaweb ??

    Thread Starter jasaweb

    (@jasaweb)

    ok thanks for your support

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Autoptimize Error: Checked HTML, JS, CSS Options, cant load additional setting’ is closed to new replies.