Skip to content

Instantly share code, notes, and snippets.

@jmabbas
Last active April 3, 2024 12:08
Show Gist options
  • Save jmabbas/da37922c2e50672e21296077937ed337 to your computer and use it in GitHub Desktop.
Save jmabbas/da37922c2e50672e21296077937ed337 to your computer and use it in GitHub Desktop.
Electro - Copyright in mobile
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 );
}
@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