/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */
// Hide category description in shop widget on desktop only
function hide_shop_category_descriptions() {
    if (is_shop() && !wp_is_mobile()) {
        ?>
        <style>
        .widget_product_categories ul li p,
        .widget_product_categories ul li .description,
        .widget_product_categories .children {
            display: none !important;
        }
        </style>
        <?php
    }
}
add_action('wp_head', 'hide_shop_category_descriptions');
