سُلَيْمَان بْن دَاوُوْد
Jul 30, 20211 min read
Create a Stylized Google Map
You can create stylized google map like this **DON'T REUSE API KEY** it has been changed <script src="https://polyfill.io/v3/polyfill.min...
You can create stylized google map like this **DON'T REUSE API KEY** it has been changed <script src="https://polyfill.io/v3/polyfill.min...
function event_brite_live_event(){ date_default_timezone_set('Pacific/Honolulu'); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,...
function add_rewrite_rules( $wp_rewrite ) { $new_rules = array( 'thoughts/(.+?)/?$' => 'index.php?post_type=post&name='....
Before After add_action('wp_head', function () { if(is_user_logged_in()){ echo '<style>.admin-bar header { margin-top: 32px...
CF7 Provide a script for redirection as below <script> document.addEventListener( 'wpcf7mailsent', function( event ) {...
<?php function cmp($a, $b){ return strcmp($a->slug, $b->slug); } $terms = get_terms([ 'taxonomy' => 'product_brand', ...
The following code is used for redirecting to a third party site add_action( 'wp_footer', 'ca_redirect_form',9999); function...
add_filter('wpcf7_form_tag_data_option', 'contact_dynamic_values' , 10, 3); function contact_dynamic_values($n, $options, $args) { if...
jQuery('.validateemail').keyup(function(){ email = jQuery(this).val(); var validate= ''; var match = /^\w+[-\.\w]*@(\w+[-\.\w]*?\.\...
add_action('wp_ajax_get_all_jobs', 'get_all_jobs_callback'); add_action('wp_ajax_nopriv_get_all_jobs', 'get_all_jobs_callback'); ...
The custom post type do not support the category tags and authors here is how you can have it done Following is a part of hook used to...
Creating a new sidebar is useful many times The HTML The Registered Widget to Mimic HTML Above The Replaced HTML Code The Backend Code...
Hiding Upcoming Events can be relatively useful when you are using ACF fields to show Dates for an an Event The Following Snippet is an...
jQuery(document).ready(function () { jQuery('.processreachfind').click(function(e){ e.preventDefault(); jQuery('html, body').animate({...
We can use following code to pull google analytics or facebook pixel or svg code or third party embed codes to output on site the right...
Creating a short code in word press can be handy at times Assume following code from functions.php function add_content_buttons($atts){ ...
We can set minimum quantity as by default for woo commerce product using following code We have used the Plugin Min Max Quantity plugin...
jQuery(document).ready(function () { $(document).scroll(function() { var scrolled = $(document).scrollTop(); var bannerht =...
/*footerpoupsubmit*/ jQuery('#footerpoupsubmit').click(function() { setCookie('popupclosed', 'yes', 1); jQuery.ajax({ type: 'POST', url:...
That requires a skill set to modify a file that has all the information related to modification Most Probably under normal cases resides...