Viewing 3 replies - 1 through 3 (of 3 total)
  • The icons are coming from Font awesome.
    The first instance of your site is having a problem with the way font-awesome is being enqueued.

    If you change the enqueue statement in your child themes functions.php file to enqueue the script from the font-awesome webestie. It should work. The url for font-awesome is

    https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css

    Thread Starter Koinonos

    (@koinonos)

    Hi. Thanks for that.
    This is the current statement. How does it need to be changed?

    // Font Awesome
    	wp_enqueue_style('font-awesome', get_template_directory_uri() .'/css/font-awesome-4.3.0/css/font-awesome.min.css');

    Thread Starter Koinonos

    (@koinonos)

    I found a solution. The problem was:
    has been blocked from loading by Cross-Origin Resource Sharing policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource
    I added a line to .htaccess
    Header add Access-Control-Allow-Origin “*”

    Parked domain now shows correct icons.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Parked Domain’ is closed to new replies.