Skip to content

Instantly share code, notes, and snippets.

View codearachnid's full-sized avatar
:octocat:
curiouser and curiouser

Timothy Wood codearachnid

:octocat:
curiouser and curiouser
View GitHub Profile
<?php
/**
Adding support for ACF Extended (https://www.acf-extended.com/)
* Multiple New Field Groups
* 30+ New Field Types
update the following files for includes:
* inc/wpbakery/wpbakery_grid_element.php : 61 `include_once(ACFVC_PATH.'inc/acf_vc_helper_extended.php');`
@codearachnid
codearachnid / tribe-organizer-email-clickable.js
Created November 15, 2022 15:35
Turn the WordPress: The Events Calendar plugin obfuscated organizer's email address into a clickable mailto link
jQuery(document).ready(function($){
$('.tribe-organizer-email').each(function(i){
$email = $.trim( $(this).text() );
if( !$(this).has( "a" ).length ){
$(this).html('<a href="mailto:' + $email + '">' + $email + '</a>');
}
})
});
@codearachnid
codearachnid / bottom-jquery-load.html
Created November 2, 2022 15:45
Make sure jquery can run inline before lib is loaded in footer of the page
<script>
window.addEventListener("load", function () {
$(function () {
$("body").append("<p>jQuery is available now!</p>");
// Run my big jQuery function
});
}, false);
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
@codearachnid
codearachnid / gform_spinner_style.css
Last active August 22, 2022 18:53
Gravity Forms full page spinner
img.gform_ajax_spinner {
position: fixed !important;
z-index: 999999;
left: 0;
top: 0;
right: 0;
bottom: 0;
display: block !important;
overflow: hidden !important;
width: 100% !important;
@codearachnid
codearachnid / WooCommerce-Edit-General-SKU.php
Created November 19, 2020 23:28
Needed a quick drop in script for functions.php to add SKU field on the general tab within WooCommerce product editor
<?php
// add sku on woocommerce product editor >> general tab
add_action( 'woocommerce_product_options_general_product_data', 'add_the_sku_to_general_product_field' );
function add_the_sku_to_general_product_field() {
global $post;
$product_sku = get_post_meta( $post->ID, '_sku', true );
?>
<div class="options_group">
<p class="form-field _sku_field ">
@codearachnid
codearachnid / report.SQL
Created February 6, 2020 17:17
Sabai Report Directory Export Report (Camp Finder)
SELECT t1.entity_id, t2.post_id, t2.post_title, t1.value, t3.address, t3.street, t3.city, t3.state, t3.zip, t4.phone, t4.mobile, t4.fax, t4.email, t4.website, DATE_FORMAT(FROM_UNIXTIME(t5.edited_at), "%Y-%m-%d")
FROM wp_sabai_entity_field_content_body as t1
LEFT JOIN wp_sabai_content_post as t2
ON t1.entity_id = t2.post_id
LEFT JOIN wp_sabai_entity_field_directory_location as t3
ON t1.entity_id = t3.entity_id
LEFT JOIN wp_sabai_entity_field_directory_contact as t4
ON t1.entity_id = t4.entity_id
LEFT JOIN wp_sabai_entity_field_content_activity as t5
ON t1.entity_id = t5.entity_id
@codearachnid
codearachnid / sabai-directory-dashboard-shortcode.php
Created February 2, 2019 20:50
If you have Sabai and you want to customize the dashboard to be part of another page (like inside of woocommerce my account) use this shortcode
<?php
add_shortcode('sabai-directory-dashboard', 'sabai_directory_dashboard_get_shortcode');
function sabai_directory_dashboard_get_shortcode($atts, $content, $tag){
$platform = get_sabai_platform();
$path = $platform->getSabai()->getAddon('Directory')->getSlug('dashboard');
return $platform->shortcode($path, (array)$atts, $content);
}
$0=10
$1=255
$2=0
$3=3
$4=0
$5=0
$6=0
$10=115
$11=0.020
$12=0.002
SELECT t1.entity_id, t2.post_id, t2.post_title, t1.value, t3.address, t3.street, t3.city, t3.state, t3.zip, t4.phone, t4.mobile, t4.fax, t4.email, t4.website
FROM wp_sabai_entity_field_content_body as t1
LEFT JOIN wp_sabai_content_post as t2
ON t1.entity_id = t2.post_id
LEFT JOIN wp_sabai_entity_field_directory_location as t3
ON t1.entity_id = t3.entity_id
LEFT JOIN wp_sabai_entity_field_directory_contact as t4
ON t1.entity_id = t4.entity_id
WHERE t2.post_entity_bundle_name = 'campfinder_listing'
AND t2.post_status = 'published'
@codearachnid
codearachnid / ajax-actions.php
Created November 8, 2018 18:06
Fix date format for export convertplus
<?php
// convertplus/admin/ajax-actions.php
// line 3133
/*** RFM DATE ADJUST ***/
foreach($contacts as $key => $contact){
$contact['date'] = date("Y-m-d", strtotime($contact['date']));
$contacts[$key] = $contact;
}