Renaming wp-content folder / wp-content hard-coded
We (as do many people) rename the wp-content folder in the wp-config.php file. This causes no problems with the themes or plugins but in Be|theme there are three files in which wp-content is hard-coded: style.php / style-colors.php, style-1.php:
$url = dirname( __FILE__ );
$strpos = strpos( $url, 'wp-content' );
$base = substr( $url, 0, $strpos );
This should really be changed to follow best practices ;-)
$url = dirname( __FILE__ );
$strpos = strpos( $url, 'wp-content' );
$base = substr( $url, 0, $strpos );
This should really be changed to follow best practices ;-)
Comments
thanks for this suggestion but as far as we know this is technically not possible to do it. This must be hardcoded and changed in those files because wordpress doesn`t see any variable from this position. If this will be possible then of course we can change it but unfortunately in this case it is not.
Thanks for understanding