Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey – I’ve just been working with this plugin and come across the ‘reload’ situation.

    location.reload();

    If you place your code within the admin panel ‘reload’ section – it get’s placed here:

    "[yoursite.com]/wp-content/plugins/advanced-ajax-page-loader/reload_code.js"

    I’m making the assumption (without looking into the plugin code) that the anchors are triggered/binded with $(document).ready(function (){}.

    Try this:

    $(window).on('load', function() {
       //// Non Ajax loading pages
    	$('#home, #contact').click(function() {
    		location.reload();
    	});
    });

    My ‘main.js’ is rendered before the plugin loads. Not sure if that helps.

    I’m running into the same issue with trying to set up multi site on my development server. (Windows IIS 7, 2008 mod_rewrite installed) using sub directories.

    In the wp-config.php, if I set the ‘SUBDOMAIN_INSTALL’ to false, it loops me through the log in. If I change it to true it allows me to login.

    Then I can switch it back and forth whilst logged in… but I get a 404 when creating my sub-directory.

    It’s annoying because It would save me alot of time if I could get this going… any advice greatly appreciated.

    Jay.

    See I changed the file permissions to allow the file to be read by the server.

    This fixed my pomo issue.

Viewing 3 replies - 1 through 3 (of 3 total)