Modify LLMS Title for a Specific Post

This snippet modifies the title shown in llms.txt and llms-full.txt for a specific post ID.

<10

Elementor Rest Bridge

if (!defined('ABSPATH')) { exit; } add_action('init', function () { $post_types = array('page', 'post', 'elementor_library'); foreach ($post_types…

Paid Memberships Pro with WC Vendors

// PAID MEMBERSHIPS PRO -- UPGRADE TO VENDOR, DOWNGRADE TO SUBSCRIBER /* Members signing up for…

Add custom page to the vendor dashboard

// Hook into the navigation add_filter( 'wcv_pro_dashboard_urls', 'add_test_page_nav', 9 ); function add_test_page_nav( $pages ){ $pages[ 'test_page'…

WP Simple Pay: Add Customer Phone to Customer Metadata

Adds the "Telephone" customer field value to the Customer record's metadata. This value is normally only…

Change the Email Summary Email Address

This snippet will allow you to specify who the email summaries should be delivered to. On…

Removing File Upload Fields from Notifications

This code snippet will remove the File Upload fields from Notifications when File Access Restrictions are…

<10

Add terms to downloads shortcode

Adds label and comma-separated terms list to [downloads] shortcode based on taxonomy

Enable Downloads in the WP REST API

Enable the download products to show in the WP REST API

Disable WooCommerce widgets on vendor store pages

/** * Remove widgets from the vendor store and single product pages conditionally. * * You…

Replace The WordPress Logo on Login Page with your own logo

Replace The WordPress Logo on Login Page with your own logo

Block URLs Inside Text Fields

This snippet will prevent Text and Textarea fields such as Single Line Text and Paragraph text…

1 33 34 35 36 37 125