/*
Theme Name: Cerustop
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

.menu-item-207 a{color:red!important;font-weight:600!important;    -webkit-text-stroke: 1px #ff0000cf;}
@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}

function add_reorder_button_to_orders_table( $actions, $order ) {
    // Check for 'completed' OR 'processing' status
    if ( $order->has_status( array('completed', 'processing') ) ) { 
        $actions['order-again'] = array(
            // ... rest of the code is the same ...
        );
    }
    return $actions;
}
add_filter( 'woocommerce_my_account_my_orders_actions', 'add_reorder_button_to_orders_table', 10, 2 );
