Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter MeowAttack

    (@meowattack)

    Follow up, the issue where moving from the default 5 to any more inline boxes is also the reason for my navigation menu to stop working.

    Tried this plugin with two different themes and experienced this inline lightbox issue with both.

    Thread Starter MeowAttack

    (@meowattack)

    Found this problem to be some kind of incompatibility with BJ’s Lazy Load plugin. Also now noticed that Lightbox ColorBox causes my dropdown submenu’s to stop working. Wont be able to use this plugin if I cant figure that issue out because I’m committed to my theme.

    Thread Starter MeowAttack

    (@meowattack)

    This function in pluggable is:

    function wp_redirect($location, $status = 302) {
    	global $is_IIS;
    
    	$location = apply_filters('wp_redirect', $location, $status);
    	$status = apply_filters('wp_redirect_status', $status, $location);
    
    	if ( !$location ) // allows the wp_redirect filter to cancel a redirect
    		return false;
    
    	$location = wp_sanitize_redirect($location);
    
    	if ( !$is_IIS && php_sapi_name() != 'cgi-fcgi' )
    		status_header($status); // This causes problems on IIS and some FastCGI setups
    
    	header("Location: $location", true, $status);
    }

    [Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    I’m thinking this error has something to do with how I have my wordpress install and .htaccess setup….

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