Last active
April 3, 2024 12:08
-
-
Save jmabbas/da37922c2e50672e21296077937ed337 to your computer and use it in GitHub Desktop.
Electro - Copyright in mobile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'init', 'el_child_copyright_in_handheld' ); | |
function el_child_copyright_in_handheld() { | |
add_action( 'electro_footer_v2_handheld', 'electro_copyright_bar_v2', 81 ); | |
add_action( 'electro_mobile_footer_v1', 'electro_copyright_bar_v2', 100 ); | |
add_action( 'electro_mobile_footer_v2', 'electro_copyright_bar_v2', 100 ); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (max-width: 1200px){ | |
.copyright-bar .payment { | |
display: none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment