MemberPress: Limit Phone Number Digits

This code snippet limits the number of digits users can enter into a custom phone number…

MemberPress: Restrict Signups for US-Based Users

This code snippet will restrict signups for US-based Users on MemberPress registration pages. Additionally, it ensures…

License Keys UL - Email Tag for Software Licensing

Adds an email template tag called {license_keys_ul} which can be used to output an unordered list…

Disable Order Receipt Email Optimizations

In Easy Digital Downloads 3.2.0+, the Purchase Confirmation (or Receipt) email sent to customers is sent…

Widget Content | Display Eventbrite Events

The widget usually uses the excerpt. This is generally fine, but other plugins can change it.…

Disable "Scheduled export e-mail of ... returned false when sending to ..." notice in Scheduled Exports

function custom_woo_ce_cron_export_email_wp_mail_failure_notice() { // Turn off the error notice return false; } add_filter( 'woo_ce_cron_export_email_wp_mail_failure_notice', 'custom_woo_ce_cron_export_email_wp_mail_failure_notice' );

<10

Disable Rich Pins

This code snippet will disable all rich pins on your site, not just recipes.

<10

Menu Item image Animation on Hover

When you hover over a menu item, the will be an image which will slide behind…

<10

Duplicate Post/Page Link

Duplicate posts, pages or any post type with 1-click by adding a duplicate link in...

Defining Brevo (Sendinblue) Mailer Constants

This snippet will prevent users from changing WP Mail SMTP settings in your WordPress admin area…

Change default zoom for all PDF files in PDF Embedder Premium

Set the default zoom value for all shortcodes/blocks regardless of their settings.

index.php

Index page for STAR

eaglegame

const canvas = document.getElementById('game-canvas'); const ctx = canvas.getContext('2d'); class Character { constructor(name, x, y, width, height,…

ADD FILTER DO SHORT CODE

add_filter( 'widget_text', 'do_shortcode' );

1 83 84 85 86 87 228