22 Snippets
10+ Favourites
20+ Downloads

login redirect changed from default my account page to home page

/** * WooCommerce My Account Page login Redirect */ add_action( 'wp_login', 'owp_redirect_after_logout' ); function owp_redirect_after_logout() {…

Hide SALE! Badges

/*Hide WooCommerce SALES Badges*/ .woocommerce span.onsale { display: none; } /*Hide SALES Badges in home page…

cart preview image stretch fix in oceanWP theme

/*Menu cart hover dropdown box image stretch fix*/ .woocommerce ul.product_list_widget li img { float: unset !important;…

disable joinchat whatsapp plugin on mobile biew

@media only screen and (max-width: 567px) { .joinchat{ position: absolute; bottom:70px; --s: 36px; margin-right:px; display:none }…

custom order status wpadmin

/* * Register a custom order status * * @author Misha Rudrastyh * @url https://rudrastyh.com/woocommerce/order-statuses.html */…

custom footer chatgpt html

About Us "Ilavanam is a farm in Tiruppur. Ilavanam is trying to lead sustainable living. The…

Bulk Change Custom Order Status wpadmin

add_filter( 'bulk_actions-edit-shop_order', 'misha_register_bulk_action' ); // edit-shop_order is the screen ID of the orders page function misha_register_bulk_action(…

custom footer chatgpt css

/* Style the footer container */ #custom-footer { background-color: #fff; /* White background */ padding: 1px;…

wpadmin add phone number with address in orders page

add_action( 'manage_shop_order_posts_custom_column' , 'custom_orders_list_column_content', 50, 2 ); function custom_orders_list_column_content( $column, $post_id ) { global $the_order, $post;…

mobile sticky menu chatgpt css

/* Reset some default styles */ body, h1, ul { margin: 0; padding: 0; } /*…

1 2