Skip to content

Instantly share code, notes, and snippets.

@mohammadmursaleen
mohammadmursaleen / gist:9622098e43afdab6025e
Last active October 15, 2021 18:29
Adding custom fields above WOOCOMMERCE add to cart button
<?php
// To add custom data above add to cart button in woocommerce
// step 1
add_action('wp_ajax_wdm_add_user_custom_data_options', 'wdm_add_user_custom_data_options_callback');
add_action('wp_ajax_nopriv_wdm_add_user_custom_data_options', 'wdm_add_user_custom_data_options_callback');
function wdm_add_user_custom_data_options_callback()
@mohammadmursaleen
mohammadmursaleen / wp_ajax_code.php
Last active September 6, 2016 05:52
WordPress Ajax code to add emails in post meta with postid in front end
<?php
/********************************************************************************/
/*** WordPress Ajax code to add emails in post meta with postid in front end ***/
/********************************************************************************/
add_action( 'wp_footer', 'my_action_javascript' );
function my_action_javascript() { ?>
<script type="text/javascript" >