• 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)
  • Theme Author sonalsinha21

    (@sonalsinha21)

    No its deliberately hard coded. Pro has this within theme options. Its not a bug.

    Thread Starter verdonv

    (@verdonv)

    It creates an unusable link though. I have to remove it every time I update the theme. If I do not remove it, then the link is http://http://mydomain.com/

    I’m not sure I understand why it would be there at all. I must be missing something.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Footer Link Bug’ is closed to new replies.