• Resolved verdonv

    (@verdonv)


    Hi,

    I believe there is a bug in the footer file. At line 71, there is a hard-coded http that should not be there.

    It is:
    <p><strong><?php _e('Website:','skt-black'); ?></strong><a href="http://<?php echo esc_url(of_get_option('weblink',true)); ?>" target="_blank"><?php if( of_get_option('weblink',true) != ''){echo of_get_option('weblink',true); }; ?></a></p>

    It should be:
    <p><strong><?php _e('Website:','skt-black'); ?></strong><a href="<?php echo esc_url(of_get_option('weblink',true)); ?>" target="_blank"><?php if( of_get_option('weblink',true) != ''){echo of_get_option('weblink',true); }; ?></a></p>

    Best rgds,

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Footer Link Bug’ is closed to new replies.