Skip to content

Instantly share code, notes, and snippets.

View manchumahara's full-sized avatar
🎯
Focusing

Sabuj Kundu manchumahara

🎯
Focusing
View GitHub Profile
@manchumahara
manchumahara / gist:dc88a6b9b157ada5f02cb8408653b80f
Created September 21, 2022 04:53
Google My Business Categories (Json formatted)
[
"Abbey",
"Aboriginal and Torres Strait Islander organization",
"Aboriginal art gallery",
"Abortion clinic",
"Abrasives supplier",
"Abundant Life church",
"Accountant",
"Accounting firm",
"Accounting school",
@manchumahara
manchumahara / gist:12f25c6a3daae0c4aab46e57a6ddb0f0
Last active April 3, 2023 13:43
Supported currency list and code in CBX Currency Converter
'ALL' => 'Albania Lek',
'AFN' => 'Afghanistan Afghani',
'ARS' => 'Argentina Peso',
'AWG' => 'Aruba Guilder',
'AUD' => 'Australia Dollar',
'AZN' => 'Azerbaijan New Manat',
'BSD' => 'Bahamas Dollar',
'BBD' => 'Barbados Dollar',
'BDT' => 'Bangladeshi Taka',
'BYR' => 'Belarus Ruble',
@manchumahara
manchumahara / gist:ec55864a4a61b08636958364d3ea8ec7
Created November 26, 2016 09:50
skip loading woocommerce css for small screen woocommerce-smallscreen
//fix: w3 total cache minify missing css of woocommerce core
add_filter( 'woocommerce_enqueue_styles', 'codeboxr_woocommerce_enqueue_styles' );
if(!function_exists('codeboxr_woocommerce_enqueue_styles')){
function codeboxr_woocommerce_enqueue_styles($arr){
unset($arr['woocommerce-smallscreen']);
return $arr;
}
}
@manchumahara
manchumahara / purejs_domready.js
Created November 11, 2022 05:53
Pure js dom ready
(function(funcName, baseObj) {
// The public function name defaults to window.docReady
// but you can pass in your own object and own function name and those will be used
// if you want to put them in a different namespace
funcName = funcName || "docReady";
baseObj = baseObj || window;
var readyList = [];
var readyFired = false;
var readyEventHandlersInstalled = false;
@manchumahara
manchumahara / fix.js
Created October 31, 2022 05:36
iChaaangeee map js changes to fix the classic style loading
//Contact form map start
var map_id = $('#map_canvas');
if (map_id.length > 0) {
var $lat = map_id.data('lat'),
$lng = map_id.data('lng'),
$zoom = map_id.data('zoom'),
$maptitle = map_id.data('maptitle'),
$mapaddress = map_id.data('mapaddress'),
mymap = L.map('map_canvas').setView([$lat, $lng], $zoom);
function countries_code()
{
$countries = array(
array('id' => '1', 'name' => 'Afghanistan', 'iso_code' => 'AF', 'phonecode' => '+93'),
/*array('id' => '2', 'name' => 'Aland Islands', 'iso_code' => 'AX', 'phonecode' => '+358-18'),*/
array('id' => '3', 'name' => 'Albania', 'iso_code' => 'AL', 'phonecode' => '+355'),
array('id' => '4', 'name' => 'Algeria', 'iso_code' => 'DZ', 'phonecode' => '+213'),
/*array('id' => '5', 'name' => 'American Samoa', 'iso_code' => 'AS', 'phonecode' => '+1-684'),*/
array('id' => '6', 'name' => 'Andorra', 'iso_code' => 'AD', 'phonecode' => '+376'),
array('id' => '7', 'name' => 'Angola', 'iso_code' => 'AO', 'phonecode' => '+244'),
@manchumahara
manchumahara / gist:f2d72e8eb5beb8808cfe636bf8b983d5
Created September 23, 2022 05:43
phpexcel next column prev column letter
/**
* Next letter for excel
*
* @param string $current_letter
*
* @return string
* @throws \PhpOffice\PhpSpreadsheet\Exception
*/
function excel_next_letter($current_letter = 'A')
{
/**************************\
Basic Modal Styles
\**************************/
.modal {
font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}
#modal-3 {
display: none;
}
@manchumahara
manchumahara / gist:0d877ae34d5bf65cfbea3ba39b47622d
Last active November 17, 2021 10:31
Ultimate Member - finding the default login form id https://wordpress.org/plugins/cbxuseronline/
global $wpdb;
$args = array();
$default_login = $wpdb->get_var(
"SELECT pm.post_id
FROM {$wpdb->postmeta} pm
LEFT JOIN {$wpdb->postmeta} pm2 ON( pm.post_id = pm2.post_id AND pm2.meta_key = '_um_core' )
WHERE pm.meta_key = '_um_mode' AND
pm.meta_value = 'login' AND
pm2.meta_value = 'login' "
);
$profile_link = um_user_profile_url($user_id); where $user_id is the user id/ID