tygielkm
Forum Replies Created
-
Forum: Plugins
In reply to: Alternate header (not desktop header) for Minileven/mobile devicesI 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!
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!
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!