Untitled Snippet
5CX9RLRZI0VP0MTK0
Add the "input hidden" field type to the EDD settings
Add 'input type="hidden"' to the type of input fields available when setting up your plugin's EDD…
Add an image filed to the sign up form
// Add the image field to the signup form. add_action( 'wcv_form_input_after__wcv_store_name', 'wcv_image_uploader'); function wcv_image_uploader( ){ if…
Disable sold by link on checkout page
/** * Disable the sold by link on the checkout page */ add_filter('wcvendors_sold_by_link', 'wcv_disable_checkout_sold_by_link', 10, 2);…
Extra WordPress Filters in Pro (Tag Data for a Custom Layout) | Display Eventbrite Events
By default, all the tag data is not retrieved as this requires extra API calls. If…
Add duplicate link to admin bar menu
Extend the WPCode duplicate snippet (https://library.wpcode.com/snippet/7oqnzxow/) with an admin bar menu item. The duplicate snippet needs…
code at the end of the body tag
Hello, I need to include the following code at the end of the body tag of…
Defining Mailgun Mailer Constants
This snippet will prevent users from changing WP Mail SMTP settings in your WordPress admin area…
file:///Users/severenhenderson/Downloads/pinterest-b4939.html
om-vue.js
// Using Vue Router. import Vue from 'vue'; import Router from 'vue-router'; Vue.use(Router); const router =…
gistfile1.txt
document.addEventListener('om.Campaign.afterShow', function(event) { if (event.detail.Campaign.id == 'zjd3hxxogbfvmy2iz0rp') // your slug { var campaignID = 'om-'+ event.detail.Campaign.id;…
dynamic-monsterlinks-by-id.js
// Target by ID window.onload = function(){ document.getElementById("someID").href="MONSTERLINK_URL"; }