Version Description
Download this release
Release Info
Developer | namith.jawahar |
Plugin | Wp-Insert |
Version | 2.0.11 |
Comparing to | |
See all releases |
Code changes from version 2.0.10 to 2.0.11
- includes/common/css/style.css +1 -1
- includes/common/styles.php +1 -1
- includes/common/support.php +18 -1
- readme.txt +2 -2
- wp-insert.php +1 -1
includes/common/css/style.css
CHANGED
@@ -155,7 +155,7 @@ label.iOSCheckLabelOff span{ padding-right:8px; }
|
|
155 |
|
156 |
/*Admin Page*/
|
157 |
.wp-insert .countryCode{ margin:5px 0 0; }
|
158 |
-
.wp-insert input.submit{ border:4px solid gold; border-radius:10px 10px 10px 10px; font-size:24px; height:auto; padding:10px 0; width:
|
159 |
.wp-insert .rules{ margin:10px 0; }
|
160 |
.wp-insert .rules td{ font-size:10px; }
|
161 |
.wp-insert .codeSnippet code{ display:block; font-size:16px; padding:10px; vertical-align:middle; }
|
155 |
|
156 |
/*Admin Page*/
|
157 |
.wp-insert .countryCode{ margin:5px 0 0; }
|
158 |
+
.wp-insert input.submit{ border:4px solid gold; border-radius:10px 10px 10px 10px; font-size:24px; height:auto; padding:10px 0; width:100%; }
|
159 |
.wp-insert .rules{ margin:10px 0; }
|
160 |
.wp-insert .rules td{ font-size:10px; }
|
161 |
.wp-insert .codeSnippet code{ display:block; font-size:16px; padding:10px; vertical-align:middle; }
|
includes/common/styles.php
CHANGED
@@ -13,6 +13,6 @@ function wp_insert_admin_styles() {
|
|
13 |
wp_enqueue_script('iphone-checkboxes', WP_INSERT_URL.'/includes/common/js/iphone-style-checkboxes.js?version='.WP_INSERT_VERSION, array('jquery'));
|
14 |
wp_enqueue_script('jquery-vertical-tabs', WP_INSERT_URL.'/includes/common/js/jquery-jvert-tabs-1.1.4.js?version='.WP_INSERT_VERSION, array('jquery'));
|
15 |
wp_enqueue_script('nicEdit', WP_INSERT_URL.'/includes/common/js/nicEdit-latest.js?version='.WP_INSERT_VERSION, array('jquery'));
|
16 |
-
wp_enqueue_script('image-uploader', WP_INSERT_URL.'/includes/common/js/wp-insert-functions.js?version='.WP_INSERT_VERSION, array('jquery'));
|
17 |
}
|
18 |
?>
|
13 |
wp_enqueue_script('iphone-checkboxes', WP_INSERT_URL.'/includes/common/js/iphone-style-checkboxes.js?version='.WP_INSERT_VERSION, array('jquery'));
|
14 |
wp_enqueue_script('jquery-vertical-tabs', WP_INSERT_URL.'/includes/common/js/jquery-jvert-tabs-1.1.4.js?version='.WP_INSERT_VERSION, array('jquery'));
|
15 |
wp_enqueue_script('nicEdit', WP_INSERT_URL.'/includes/common/js/nicEdit-latest.js?version='.WP_INSERT_VERSION, array('jquery'));
|
16 |
+
wp_enqueue_script('image-uploader', WP_INSERT_URL.'/includes/common/js/wp-insert-functions.js?version='.WP_INSERT_VERSION, array('jquery'));
|
17 |
}
|
18 |
?>
|
includes/common/support.php
CHANGED
@@ -15,7 +15,8 @@ function wp_insert_support_admin_init() {
|
|
15 |
}
|
16 |
}
|
17 |
add_settings_section('wp-insert-support-top', '', 'wp_insert_support_section', 'wp-insert-support');
|
18 |
-
add_meta_box('wp_insert_facebook', 'Like Us On Facebook', 'wp_insert_facebook_content', 'wp-insert-support-top', 'advanced', 'high');
|
|
|
19 |
add_meta_box('wp_insert_donate', 'Donate and Support Free Plugins', 'wp_insert_donate_content', 'wp-insert-support-bottom', 'advanced', 'high');
|
20 |
add_meta_box('wp_insert_hate_campaign', 'Save Wp-Insert', 'wp_insert_hate_campaign_content', 'wp-insert-support-bottom', 'advanced', 'high');
|
21 |
delete_option('wp_insert_showcase_submission');
|
@@ -30,6 +31,22 @@ function wp_insert_support_section() {
|
|
30 |
do_meta_boxes('wp-insert-support-bottom', 'advanced', null);
|
31 |
}
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
function wp_insert_facebook_content() {
|
34 |
echo '<iframe src="//www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2FSmartLogix&width=256&height=258&colorscheme=light&show_faces=true&header=false&stream=false&show_border=false&appId=344044952413253" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:256px; height:258px;" allowTransparency="true"></iframe>';
|
35 |
}
|
15 |
}
|
16 |
}
|
17 |
add_settings_section('wp-insert-support-top', '', 'wp_insert_support_section', 'wp-insert-support');
|
18 |
+
//add_meta_box('wp_insert_facebook', 'Like Us On Facebook', 'wp_insert_facebook_content', 'wp-insert-support-top', 'advanced', 'high');
|
19 |
+
//add_meta_box('wp_insert_hire_me', 'Hire Me', 'wp_insert_hire_me_content', 'wp-insert-support-top', 'advanced', 'high');
|
20 |
add_meta_box('wp_insert_donate', 'Donate and Support Free Plugins', 'wp_insert_donate_content', 'wp-insert-support-bottom', 'advanced', 'high');
|
21 |
add_meta_box('wp_insert_hate_campaign', 'Save Wp-Insert', 'wp_insert_hate_campaign_content', 'wp-insert-support-bottom', 'advanced', 'high');
|
22 |
delete_option('wp_insert_showcase_submission');
|
31 |
do_meta_boxes('wp-insert-support-bottom', 'advanced', null);
|
32 |
}
|
33 |
|
34 |
+
function wp_insert_hire_me_content() {
|
35 |
+
echo '<div style="width: 230px; margin: 17px auto 0px;">';
|
36 |
+
echo '<a name="freelancer_Hireme" user_id="899781" size="standard" annotation="inline" title="Hire me! on Freelancer.com" href="https://www.freelancer.com/users/899781.html">PHP Developer</a>';
|
37 |
+
echo '<script type="text/javascript">';
|
38 |
+
echo '(function() {';
|
39 |
+
echo 'var po = document.createElement("script");';
|
40 |
+
echo 'po.type = "text/javascript";';
|
41 |
+
echo 'po.async = true;';
|
42 |
+
echo 'po.src = ("https:" == document.location.protocol ? "https" : "http") + "://www.freelancer.com/js/hireme/widget.js";';
|
43 |
+
echo 'var s = document.getElementsByTagName("script")[0];';
|
44 |
+
echo 's.parentNode.insertBefore(po, s);';
|
45 |
+
echo '})();';
|
46 |
+
echo '</script>';
|
47 |
+
echo '</div>';
|
48 |
+
}
|
49 |
+
|
50 |
function wp_insert_facebook_content() {
|
51 |
echo '<iframe src="//www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2FSmartLogix&width=256&height=258&colorscheme=light&show_faces=true&header=false&stream=false&show_border=false&appId=344044952413253" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:256px; height:258px;" allowTransparency="true"></iframe>';
|
52 |
}
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Namith Jawahar
|
|
3 |
Donate link:www.wp-insert.smartlogix.co.in/support
|
4 |
Tags: adsense,google,widget,post,admin,plugin,ads,in post ads,feed logo,smartlogix,ads in feeds,analytics,google analytics,header,footer,ad management,advertisements,content,ad,advertising,privacy policy,privacy,policy,automatic privacy policy,blog,feed,feeds,formatting,html,javascript,manage,post,posts,seo,sidebar,widget,widgets,wordpress,tracking,syntex highlighter,highlighting,theme tools,plugin tools,developer tools,highlighting,theme editor,plugin editor,middle ad,ad filtration,pagewise ad filtration,template ads,ad tags,adbrite ads,adsense ready,easy adsense,adsense optimized,terms and conditions,terms,conditions,automatic terms and conditions
|
5 |
Requires at least: 3.2
|
6 |
-
Tested up to:
|
7 |
-
Stable tag: 2.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
3 |
Donate link:www.wp-insert.smartlogix.co.in/support
|
4 |
Tags: adsense,google,widget,post,admin,plugin,ads,in post ads,feed logo,smartlogix,ads in feeds,analytics,google analytics,header,footer,ad management,advertisements,content,ad,advertising,privacy policy,privacy,policy,automatic privacy policy,blog,feed,feeds,formatting,html,javascript,manage,post,posts,seo,sidebar,widget,widgets,wordpress,tracking,syntex highlighter,highlighting,theme tools,plugin tools,developer tools,highlighting,theme editor,plugin editor,middle ad,ad filtration,pagewise ad filtration,template ads,ad tags,adbrite ads,adsense ready,easy adsense,adsense optimized,terms and conditions,terms,conditions,automatic terms and conditions
|
5 |
Requires at least: 3.2
|
6 |
+
Tested up to: 4.0
|
7 |
+
Stable tag: 2.0.11
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
wp-insert.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Wp-Insert
|
4 |
Plugin URI: http://www.wp-insert.smartlogix.co.in/
|
5 |
Description: WP-INSERT by SMARTLOGIX : The ultimate wordpress plugin (No1 Adsense Plugin for Wordpress)
|
6 |
-
Version: 2.0.
|
7 |
Author: Namith Jawahar
|
8 |
Author URI: http://www.smartlogix.co.in/
|
9 |
WP-INSERT by SMARTLOGIX : The ultimate wordpress plugin (No1 Adsense Plugin for Wordpress)
|
3 |
Plugin Name: Wp-Insert
|
4 |
Plugin URI: http://www.wp-insert.smartlogix.co.in/
|
5 |
Description: WP-INSERT by SMARTLOGIX : The ultimate wordpress plugin (No1 Adsense Plugin for Wordpress)
|
6 |
+
Version: 2.0.11
|
7 |
Author: Namith Jawahar
|
8 |
Author URI: http://www.smartlogix.co.in/
|
9 |
WP-INSERT by SMARTLOGIX : The ultimate wordpress plugin (No1 Adsense Plugin for Wordpress)
|