FlowMattic: Expand Workflow Description Box.

This snippet runs in the WordPress admin area and removes any line-clamping on the “.css-iIDhdyB” element…

<10

MemberPress: Disable MemberPress Protection On Posts with Specific Tags

This code snippet disables content protection for posts that are tagged with a specific term (e.g.,…

use login

this is a login of user

Disable XML-RPC (copy)

On sites running WordPress 3.5+, disable XML-RPC completely.

MemberPress: Restrict Purchase of a Specific Membership Based on Existing Subscriptions

This code snippet restricts the purchase of a specified MemberPress membership (restricted membership), based on a…

Give export capability to administrator

This snippet adds the export capability to the administrator user role.

om.Sites.init

document.addEventListener('om.Sites.init', function(event) { console.log(event.detail.Sites); // An array of all the Site objects associated to this campaign.…

om.Group.init

document.addEventListener('om.Group.init', function(event) { console.log(event.detail.Group); // An array of the Rule objects console.log(event.detail.Group.rules); console.log(event.detail.Campaign); } );

Una plant Quiz Score Calculator

/** * Author: Sumaiya, Clickup Doc: https://app.clickup.com/36636088/v/dc/12y1dr-22535/12y1dr-25375 * Function to handle quiz submission, calculate results based…

<10

om.Action.refresh

document.addEventListener('om.Action.refresh', function(event) { // This event is passed the Campaign object console.log(event.detail.Campaign); // This event is…

disable webfonts for a spesific campaign

document.addEventListener('om.Campaign.init.preload', function(event) { var campaign = event.detail.Campaign; if ({slug} === campaign.id) { campaign.settings.preload = false; }…

allow authors

add_filter( 'optin_monster_api_menu_cap', function( $cap ) { return 'publish_posts'; } );

1 209 210 211 212 213 224