Skip to content

Instantly share code, notes, and snippets.

@kreamweb
Created February 12, 2020 14:34
Show Gist options
  • Save kreamweb/db66c0a557dda5b6b8336763b617c1ca to your computer and use it in GitHub Desktop.
Save kreamweb/db66c0a557dda5b6b8336763b617c1ca to your computer and use it in GitHub Desktop.
<?php
if ( ! function_exists( 'yith_pos_customization_css' ) ) {
add_action( 'wp_enqueue_scripts', 'yith_pos_customization_css', 99 );
function yith_pos_customization_css() {
$css = ".yith-pos-product-list__list .product, .yith-pos-product-category-list__list .product-cat{
height: 150px;
}";
wp_add_inline_style( 'yith-pos-frontend', $css );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment