Chatbot

Chatbot that helps with client services and questions.

Disable AIOSEO AI Components - Everything (Block + All Extensions)

This snippet will completely disable the block, // shortcut, AI Content tab card, inserter button, and…

<10

User Switching

Easily switch to a Customer when using the User Switching plugin

WP Simple Pay: Custom Server-Side Validation Before Payment Creation

Perform additional custom server-side validation prior to allowing a payment to be created.

ModalJS

Used to display popup modal in GenerateBlocks

Allow Admin Access

Enables access for logged in users who do not have certain permissions.

Remove "p" tags Contact Form 7

Remove tags from the forms in the frontend

WordPress Post Views Counter Function

function wpb_set_post_views($postID) { $count_key = 'wpb_post_views_count'; $count = get_post_meta($postID, $count_key, true); if($count==''){ $count = 0; delete_post_meta($postID,…

CSS For Craft Picker

/* General Styles */ body { margin: 0; font-family: 'Arial', sans-serif; background-color: #f9f9f9; color: #333; line-height:…

Disable Blog Posts

// Remove side menu add_action( 'admin_menu', function () { remove_menu_page( 'edit.php' ); } ); // Remove…

Remove Gutenberg Blocks CSS

add_action( 'wp_enqueue_scripts', function () { wp_dequeue_style( 'wp-block-library' ); wp_dequeue_style( 'wp-block-library-theme' ); // Remove WooCommerce block CSS…

1 47 48 49 50 51 218