I am trying to:combine the files
Link to a page where the issue can be seen:
I expected to see:
Instead, I got:
The following resources have identical contents, but are served from different URLs. Serve these resources from a consistent URL to save 1 request(s) and 30.3KiB.
hidden link
hidden link
Hi, since your theme loads a higher version (5.2.2) than Toolset loads, you can probably dequeue Toolset's version and just use the version that comes with the theme. I don't have a copy of the WPResidence theme to test this out, but you can try adding this custom code snippet in your child theme's functions.php file, or in a new code snippet in Toolset > Settings > Custom Code:
add_action( 'wp_enqueue_scripts', 'remove_default_fa_stylesheet', 25 );
function remove_default_fa_stylesheet() {
wp_dequeue_style( 'font-awesome' );
wp_dequeue_style( 'font-awesome-css' );
wp_deregister_style( 'font-awesome' );
wp_deregister_style( 'font-awesome-css' );
}
If this doesn't work, I'll need to work with a copy of the theme to see if we can come up with a better solution.
Hi I got this error here. Thanks.
It looks like some single-quotation mark characters were converted incorrectly during your copy + paste. Can you take a look at the original and your copy + paste code, and make the correct adjustments?
My issue is resolved now. Thank you!