Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter tygielkm

    (@tygielkm)

    I found the answer to this problem, in case anyone comes across the same dilemma! I navigated to /wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/custom-header, and changed THIS bit of code:

    <a href="<?php echo esc_url( home_url( '/' ) ); ?>">
    						<img src="<?php echo $header_image; ?>" alt="" />
    					</a>

    I replaced the img src information with my own URL. If you copy and paste this code, replace yourheader.jpg to the URL of the header you want to use:

    <a href="<?php echo esc_url( home_url( '/' ) ); ?>">
    						<img src="yourheader.jpg" alt="" />
    					</a>

    If there’s a cleaner way to do this, I’d be happy to know about it, but this seems to have solved my problem!

    Thread Starter tygielkm

    (@tygielkm)

    I found the answer to this problem, in case anyone comes across the same dilemma! I navigated to /wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/custom-header, and changed THIS bit of code:

    <a href="<?php echo esc_url( home_url( '/' ) ); ?>">
    						<img src="<?php echo $header_image; ?>" alt="" />
    					</a>

    I replaced the img src information with my own URL. If you copy and paste this code, replace yourheader.jpg to the URL of the header you want to use:

    <a href="<?php echo esc_url( home_url( '/' ) ); ?>">
    						<img src="yourheader.jpg" alt="" />
    					</a>

    If there’s a cleaner way to do this, I’d be happy to know about it, but this seems to have solved my problem!

    Thread Starter tygielkm

    (@tygielkm)

    I found the answer to this problem, in case anyone comes across the same dilemma! I navigated to /wp-content/plugins/jetpack/modules/minileven/theme/pub/minileven/inc/custom-header, and changed THIS bit of code:

    <a href="<?php echo esc_url( home_url( '/' ) ); ?>">
    						<img src="<?php echo $header_image; ?>" alt="" />
    					</a>

    I replaced the img src information with my own URL. If you copy and paste this code, replace yourheader.jpg to the URL of the header you want to use:

    <a href="<?php echo esc_url( home_url( '/' ) ); ?>">
    						<img src="yourheader.jpg" alt="" />
    					</a>

    If there’s a cleaner way to do this, I’d be happy to know about it, but this seems to have solved my problem!

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