How to Build a Profile Page Using Post Submissions

/** * Add a profile form using Post Submissions * * @link https://wpforms.com/developers/how-to-build-an-profile-form-using-post-submissions/ */ function wpf_post_submission_custom_content( $post_id, $fields, $form_data, $entry_id ) { // Only do this for form #1089. if ( absint( $form_data[ ‘id’ ] ) !== 1089 ) {…Continue reading

Webhook smart tags

{ “smart_tags”: { “region”: “Gujarat”, “state”: “Gujarat”, “province”: “Gujarat”, “territory”: “Gujarat”, “region_code”: “GJ”, “country”: “India”, “country_code”: “IN”, “city”: “Vadodara”, “latitude”: 22.3008, “longitude”: 73.2043, “zip”: “390004”, “postal_code”: “390004”, “day”: “Friday”, “month”: “May”, “year”: “2024”, “date”: “May 31, 2024”, “page_url”: “https://giztale.com/”, “referer_url”:…Continue reading

Add Radio Boxes To Donation Form

/** * Add a collection of radio selections to the donation form. * * This snippet only works in Charitable 1.5 or above. * */ function wpchar_charitable_register_new_radios_field() { if ( ! class_exists(“Charitable_Donation_Field” ) ) { return; }; /** * Define…Continue reading

“Lazy Load Images”.( For Dom Size)

document.addEventListener(“DOMContentLoaded”, function() { const lazyLoadImages = () => { const images = document.querySelectorAll(‘img.lazy’); const observer = new IntersectionObserver((entries, observer) => { entries.forEach(entry => { if (entry.isIntersecting) { const img = entry.target; img.src = img.dataset.src; img.classList.remove(‘lazy’); observer.unobserve(img); } }); }); images.forEach(img…Continue reading

Gravity Forms JavaScript Helpers

function icInitializeGravityForms() { // CONSTANTS ——————————————————- const POST_CODE_JP_KEY = ‘BJ7qtSrq0iYgWj9AV0P4esvTTX1gmq48813DoE1’; const TO_SINGLE_MAP = { numeral: { ‘0’ : ‘0’, ‘1’ : ‘1’, ‘2’ : ‘2’, ‘3’ : ‘3’, ‘4’ : ‘4’, ‘5’ : ‘5’, ‘6’ : ‘6’, ‘7’ : ‘7’,…Continue reading

Remove HealthAndBeautyBusiness Schema

add_filter(‘aioseo_schema_output’, ‘aioseo_remove_health_and_beauty_business_schema’); function aioseo_remove_health_and_beauty_business_schema($graphs) { foreach ($graphs as $index => $value) { if (isset($value[‘@type’]) && $value[‘@type’] === ‘HealthAndBeautyBusiness’) { unset($graphs[$index]); } } return $graphs; }Continue reading