Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Updated to Desmond But Theme Not Working

Sorry, I should have done this sooner for you (just been crazy busy!). Create a file called whatever you want, but I recommend path-to-url.php and put the following in it and upload it to /my-plugins/ directory:

<?php

function fix_bb_path_to_url( $url ) {
$url = str_replace(array('//', '\\'), array('/', '\'), $url);
return preg_replace( '|:/([^/])|', '://$1', $url );
}

add_filter( 'bb_path_to_url', 'fix_bb_path_to_url', 1, -1 );

?>

That might work with the stylesheet issue. Let me know

Trent

Skip to toolbar