MemberPress: Bulk Delete All Expired Subscriptions
Running this code snippet will delete all expired and canceled subscriptions in bulk each time the…
How to Check If Your Debug Certificate Has Expired
keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey
WP Aggregator Feed Limit
Increase the number of fetched items in RSS Feed
WooCommerce Product Settings: Enabling Custom Discount Options with Checkbox and Input Field First set quantity only – No Plugin
Post More Detail Here’s an explanation of the features we are going to add using the…
Warranty Result CSS
html { font-size: 62.5%; } @media screen and (max-width: 37.5em) { html { font-size: 50%; }…
Enable Pinch to Zoom on Mobile Devices
function remove_my_action() { remove_action('wp_head', 'et_add_viewport_meta'); } function dt_et_add_viewport_meta(){ echo ''; } add_action( 'init', 'remove_my_action'); add_action( 'wp_head',…
TranslatePress Shortcode Styler MINIMAL
TranslatePress Shortcode Styler MINIMAL /* Grundlegende Anpassungen für den Sprachumschalter */ /* Entfernt alle Padding-, Margin-…
Graili shop
Sports supplements
Replace WP Logo and the default 'logo' link
Use your custom logo along a replace the default 'logo' link on the login page, don't…
woo orders page Whatsapp DM from mac app
// Modify the columns and ensure WhatsApp column appears last function add_whatsapp_column($columns) { // Remove WhatsApp…
Change site url
add_action('init', 'update_site_url_once'); function update_site_url_once() { if (get_option('home') !== 'https://amazingmarvin.com/blog/') { update_option('siteurl', 'https://amazingmarvin.com/blog/'); update_option('home', 'https://amazingmarvin.com/blog/'); } }
WooCommerce - Add min height to title
Used to help the shopping buttons align vertically when the title line wraps irregularly due to…