Abraham Garcia in WordPress   Friday, April 10 2020

Add Custom Sidebar to WordPress

Add a Custom Sidebar to WordPress Function.php File and Display on Front End.

These are short snippets to insert sidebar into the front end of Wordpress website. Use it in your projects.  Functions.php function my_custom_sidebar() { register_sidebar( array ( 'name' => __( 'Custom',

Continue reading
Abraham Garcia in HTML/CSS Script   Saturday, March 21 2020

How to Change Select2 Box Height

Change Select2 JS Box Height with Simple CSS Snippets

This is a short code snippet on how to change the select2 box height plugin. Simple CSS code. .select2-selection__rendered { line-height: 31px !important; } .select2-container .select2-selection--single { height: 35px !important;

Continue reading
Abraham Garcia in PHP Scripts   Monday, March 16 2020

Get IP Details Via API with PHP

ipapi.com is a API for getting IP address details. You can use this to redirect users to different websites depending on the country access.

This is a short tutorial on how to get IP Address details with API ipapi.com  <?php echo file_get_contents('https://ipapi.co/8.8.8.8/json'); ?> Sample Response: { "ip": "8.8.8.8", "city": "Mountain View", "region": "California", "region_code":

Continue reading