You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Quick Start guide doesn't say to use uw-2014 folder for the theme! You might consider updating the quick start to say the theme MUST be placed in the uw-2014 folder under wp-content/themes if the hard coded paths are not fixed
The text was updated successfully, but these errors were encountered:
Not sure if this should be a separate issue, but relative paths in the .less files would be helpful as well. Most of them are, but there are a few (notably in uw.body-content.less) with absolute paths. Makes it frustrating when trying to keep the Drupal Boundless theme up to date with this one. Thanks!
I have installed the Boundless theme in /themes/uw-boundless and noticed some file not found messages in the console. See attached
$url = get_site_url() . "/wp-content/themes/uw-2014/assets/headers/suzzallo.jpg";
checking the WordPress API it looks like get_template_directory_uri() is the correct way to avoid using hard coded paths for images
https://developer.wordpress.org/reference/functions/get_template_directory_uri/
$url = get_template_directory_uri() . "/assets/headers/suzzallo.jpg";
The Quick Start guide doesn't say to use uw-2014 folder for the theme! You might consider updating the quick start to say the theme MUST be placed in the uw-2014 folder under wp-content/themes if the hard coded paths are not fixed
The text was updated successfully, but these errors were encountered: