Skip to content

Instantly share code, notes, and snippets.

@akther80
Created September 25, 2023 05:05
Show Gist options
  • Save akther80/007878c6122d828de1a5198e771d1d93 to your computer and use it in GitHub Desktop.
Save akther80/007878c6122d828de1a5198e771d1d93 to your computer and use it in GitHub Desktop.
MyTravel - Move Single Activity & Tour format product sidebar to the top in Mobile view
add_action( 'mytravel_single_activity', 'mytravel_single_product_sidebar', 17 );
add_action( 'mytravel_single_tour', 'mytravel_single_product_sidebar', 21 );
@media(max-width: 991px) {
.single-product-v1 .col-lg-8.col-xl-9 + .col-lg-4.col-xl-3 {
display: none;
}
}
@media(min-width: 992px) {
.single-product-v1 .col-lg-8.col-xl-9 .border.border-color-7 {
display: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment