• In the plugin file ajax-option.php, the <label> tags were misspelled (“lable”).

    The loading GIF was being returned wrong, using
    plugins_url().'/Ajaxifier/images/'.$ajx_get_opt['ajx_loader']
    wherein the name of the plugin is actually misspelled… I changed that to
    plugin_dir_url(__FILE__).'images/'.$ajx_get_opt['ajx_loader']

    Also the uploaded GIF saves only the first two letters of the file name (with extension). This isn’t an issue, I just noticed when looking into the broken images.

    All easy fixes. Otherwise wonderful plugin.

Viewing 1 replies (of 1 total)
  • Thanks bl1nktank! There were two line with:

    plugins_url().'/Ajaxifier/images/'.$ajx_get_opt['ajx_loader']

    And I changed them with your suggestion:

    plugin_dir_url(__FILE__).'images/'.$ajx_get_opt['ajx_loader']

    All works perfectly now! THANKS!

Viewing 1 replies (of 1 total)
  • The topic ‘Works well, simple configuration, lightweight, small errors’ is closed to new replies.