ARCHIVE

Tips
add_query_arg and get_query_arg functions in javascript

add_query_arg function add_query_arg(purl, key,value){ key = escape(key); value = escape(value); var s = purl; var pair = key+"="+value; var r = new RegExp("(&|\?)"+key+"=[^&]*"); s = s.replace(r,"$1"+pair); //console.log(s, pair); if(s.indexOf(key + '=')>-1){ }else{ if(s.indexOf('?')>-1){ s+='&'+pair; }else{ s+='?'+pair; } } //if(!RegExp.$1) {s += (s.length>0 ? '&' : '?') + kvp;}; return s; } get_query_arg function get_query_arg(purl, key){

Continue reading

Tackling AJAX and script tags inside

So recently I had to make ajax requests that pull in a piece of page with some scripting inside. The context does not matter much, what matters is the script executed fine on my localhost but not as a WordPress installation in a WP blog. After some head banging turns out that in my localhost

Continue reading

Problems I had as a WordPress developer with badly coded plugins [ part 2 ]

part 1 – http://digitalzoomstudio.net/2011/02/23/problems-i-had-as-a-wordpress-developer-with-badly-coded-plugins/ Or THEMES. As you may know, I sell premium WordPress scripts here –  http://codecanyon.net/user/ZoomIt/portfolio?ref=ZoomIt . As authors, we are not required to offer support, but I myself consider it a important part of the deal and I do offer it best as I can. 80% of support requests are related to plugin compatibilities (

Continue reading

Javascript Detect any Browser and Browser Version

Since jQuery 1.9.0 removed the jQuery.browser functionality, I compiled some useful functions to replicate that functionality. [raw] function is_ie(){ if (navigator.appVersion.indexOf("MSIE") != -1){ return true; }; return false; }; function is_firefox(){ if (navigator.userAgent.indexOf("Firefox") != -1){ return true; }; return false; }; function is_opera(){ if (navigator.userAgent.indexOf("Opera") != -1){ return true; }; return false; }; function is_chrome(){

Continue reading

WordPress Quick Tip - how to change default thumbnail size on theme activation

Write this in your theme functions.php [php]if ( is_admin() && isset($_GET['activated'] ) && $pagenow == 'themes.php' ){ global $wpdb; $wpdb->query("UPDATE $wpdb->options SET option_value='145' WHERE option_name='thumbnail_size_w'"); $wpdb->query("UPDATE $wpdb->options SET option_value='145' WHERE option_name='thumbnail_size_h'"); }[/php]
{"type":"main_options","images_arr":"'#ffffff'","enable_ajax":"off","soundcloud_apikey":"","bg_isparallax":"off","bg_slideshow_time":"0","bg_transition":"slidedown","site_url":"https:\/\/digitalzoomstudio.net","theme_url":"https:\/\/digitalzoomstudio.net\/wp-content\/themes\/qucreative\/","blur_ammount":"26","width_column":"50","width_section_bg":"","width_gap":"30","border_width":"0","border_color":"#ffffff","translate_cancel_comment":"Cancel reply","translate_leave_a_comment":"Leave a comment","translate_leave_a_comment_to":"Leave a comment to","is_customize_preview":"off","width_blur_margin":"30","gallery_w_thumbs_autoplay_videos":"off","content_enviroment_opacity":"30","menu_enviroment_opacity":"70","base_url":"https:\/\/digitalzoomstudio.net"}
{"type":"darkfull"}