๐ฝ๐ก๐๐๐ -๐ผ๐๐ง๐๐๐๐ฃ
๐๐๐ง๐ ๐ฌ๐ ๐๐ค....
MemberPress: Display Account Tabs Anywhere
This code registers a new shortcode: [mepr-account-links]. This shortcode can be used anywhere to display the…
ABF Updated ChatBot
Updated ABF Chatbot with new allenbaileyfoundation.org website
zapier-lead-data.json
{ "lead": { "email": "[email protected]", "ipAddress": "1.2.3.4", "referrer": "https://optinmonster.com/", "timestamp": 1699985224, "privacyConsent": true, "firstName": "Archie", "lastName":…
om-monsterlink-mobile-variant.html
Subscribe Now!
Bootstrap 5
// Add custom scripts function add_custom_script_bootstrap5() { wp_register_script( 'bootstrap5_js', 'https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/js/bootstrap.min.js', array(), '5.3.3', true ); wp_enqueue_script( 'bootstrap5_js'…
Photo-Profile Dashboard for login users ( If your theme does not have any ) #The Greek
This WordPress code customizes the default avatar for users who do not have a custom profile…
MemberPress: Disable Unauthorized Redirection on a Specific Page or Post
Adding this code snippet will prevent unauthorized users from being redirected away from the specific page…
Enable automatic updates for WordPress core, plugins, and themes
// Enable automatic updates for WordPress core, plugins, and themes add_filter('automatic_updater_disabled', '__return_false'); add_filter('auto_update_core', '__return_true'); add_filter('auto_update_plugin', '__return_true');…
Learn how to add Availability label ? in your WooCommerce website. This will help to notify customers how many products are available or if the product is stock out.
Woocommerce display on sale price on the cart page once the product on sale has been…
JavaScript
document.getElementById('chat-form').addEventListener('submit', async function(e) { e.preventDefault(); // Captura el texto del usuario const userInput = document.getElementById('user-input').value; //…
Toggle switch pricing tabel
$( document ).ready(function() { $('.group-two').hide(); $('.change-price').on('click', function() { $('.group-one, .group-two').toggle(); } ); });