Version Description
26/08/2015
Download this release
Release Info
Developer | weblizar |
Plugin | Feed & LikeBox For Facebook |
Version | 1.6 |
Comparing to | |
See all releases |
Code changes from version 1.5 to 1.6
- facebook-by-weblizar-short-code.php +3 -11
- facebook-by-weblizar.php +13 -30
- help-body - Copy.php +738 -0
- help-body.php +32 -514
- images/Thumbs.db +0 -0
- readme.txt +10 -13
facebook-by-weblizar-short-code.php
CHANGED
@@ -4,15 +4,9 @@
|
|
4 |
*/
|
5 |
add_shortcode("FBW", "FacebookLikeBox");
|
6 |
function FacebookLikeBox() {
|
7 |
-
|
8 |
-
ob_start();
|
9 |
|
|
|
10 |
$FacebookSettings = unserialize(get_option("weblizar_facebook_shortcode_settings"));
|
11 |
-
//load default values OR saved values
|
12 |
-
$ColorScheme = 'lite';
|
13 |
-
if ( isset( $FacebookSettings[ 'ColorScheme' ] ) ) {
|
14 |
-
$ColorScheme = $FacebookSettings[ 'ColorScheme' ];
|
15 |
-
}
|
16 |
|
17 |
$ForceWall = 'false';
|
18 |
if ( isset( $FacebookSettings[ 'ForceWall' ] ) ) {
|
@@ -20,9 +14,6 @@ function FacebookLikeBox() {
|
|
20 |
}
|
21 |
|
22 |
$Header = 'true';
|
23 |
-
if ( isset( $FacebookSettings[ 'Header' ] ) ) {
|
24 |
-
$Header = $FacebookSettings[ 'Header' ];
|
25 |
-
}
|
26 |
|
27 |
$Height = 600;
|
28 |
if ( isset( $FacebookSettings[ 'Height' ] ) ) {
|
@@ -67,7 +58,8 @@ function FacebookLikeBox() {
|
|
67 |
fjs.parentNode.insertBefore(js, fjs);
|
68 |
}(document, 'script', 'facebook-jssdk'));
|
69 |
</script>
|
70 |
-
<div class="fb-like-box"
|
|
|
71 |
<?php
|
72 |
return ob_get_clean();
|
73 |
}
|
4 |
*/
|
5 |
add_shortcode("FBW", "FacebookLikeBox");
|
6 |
function FacebookLikeBox() {
|
|
|
|
|
7 |
|
8 |
+
ob_start();
|
9 |
$FacebookSettings = unserialize(get_option("weblizar_facebook_shortcode_settings"));
|
|
|
|
|
|
|
|
|
|
|
10 |
|
11 |
$ForceWall = 'false';
|
12 |
if ( isset( $FacebookSettings[ 'ForceWall' ] ) ) {
|
14 |
}
|
15 |
|
16 |
$Header = 'true';
|
|
|
|
|
|
|
17 |
|
18 |
$Height = 600;
|
19 |
if ( isset( $FacebookSettings[ 'Height' ] ) ) {
|
58 |
fjs.parentNode.insertBefore(js, fjs);
|
59 |
}(document, 'script', 'facebook-jssdk'));
|
60 |
</script>
|
61 |
+
<div class="fb-like-box" data-height="<?php echo $Height; ?>" data-href="<?php echo $FacebookPageUrl; ?>" data-show-border="<?php echo $ShowBorder; ?>" data-show-faces="<?php echo $ShowFaces; ?>" data-stream="<?php echo $Stream; ?>" data-width="<?php echo $Width; ?>" data-force-wall="<?php echo $ForceWall; ?>"></div>
|
62 |
+
<div style="display:none;">Facebook By Weblizar Powered By Weblizar</div>
|
63 |
<?php
|
64 |
return ob_get_clean();
|
65 |
}
|
facebook-by-weblizar.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Facebook By WebLizar
|
4 |
-
* Version: 1.
|
5 |
-
* Description:
|
6 |
* Author: WebLizar
|
7 |
* Author URI: http://www.weblizar.com
|
8 |
* Plugin URI: http://www.weblizar.com/plugins/
|
@@ -57,7 +57,7 @@ class WeblizarFacebook extends WP_Widget {
|
|
57 |
if (!empty($title)) { echo $before_title . $title . $after_title; }
|
58 |
|
59 |
$FbAppId = apply_filters( 'facebook_app_id', $instance['FbAppId'] );
|
60 |
-
|
61 |
$ForceWall = apply_filters( 'facebook_force_wall', $instance['ForceWall'] );
|
62 |
$Header = apply_filters( 'facebook_header', $instance['Header'] );
|
63 |
$Height = apply_filters( 'facebook_height', $instance['Height'] );
|
@@ -66,7 +66,6 @@ class WeblizarFacebook extends WP_Widget {
|
|
66 |
$ShowFaces = apply_filters( 'facebook_show_faces', $instance['ShowFaces'] );
|
67 |
$Stream = apply_filters( 'facebook_stream', $instance['Stream'] );
|
68 |
$Width = apply_filters( 'facebook_width', $instance['Width'] );
|
69 |
-
|
70 |
?>
|
71 |
<style>
|
72 |
@media (max-width:767px) {
|
@@ -88,14 +87,14 @@ class WeblizarFacebook extends WP_Widget {
|
|
88 |
<div style="display:block;width:100%;float:left;overflow:hidden;margin-bottom:20px">
|
89 |
<div id="fb-root"></div>
|
90 |
<script>(function(d, s, id) {
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
<div
|
99 |
</div>
|
100 |
<?php
|
101 |
echo $after_widget;
|
@@ -111,10 +110,10 @@ class WeblizarFacebook extends WP_Widget {
|
|
111 |
public function form( $instance ) {
|
112 |
|
113 |
//default values & Submitted Values
|
114 |
-
$ColorScheme = 'lite';
|
115 |
if ( isset( $instance[ 'ColorScheme' ] ) ) {
|
116 |
$ColorScheme = $instance[ 'ColorScheme' ];
|
117 |
-
}
|
118 |
|
119 |
$ForceWall = 'false';
|
120 |
if ( isset( $instance[ 'ForceWall' ] ) ) {
|
@@ -175,20 +174,6 @@ class WeblizarFacebook extends WP_Widget {
|
|
175 |
<p>
|
176 |
<label for="<?php echo $this->get_field_id( 'FacebookPageURL' ); ?>"><?php _e( 'Facebook Page URL', WEBLIZAR_FACEBOOK_TEXT_DOMAIN ); ?></label>
|
177 |
<input class="widefat" id="<?php echo $this->get_field_id( 'FacebookPageURL' ); ?>" name="<?php echo $this->get_field_name( 'FacebookPageURL' ); ?>" type="text" value="<?php echo esc_attr( $FacebookPageURL ); ?>">
|
178 |
-
</p>
|
179 |
-
<p>
|
180 |
-
<label for="<?php echo $this->get_field_id( 'ColorScheme' ); ?>"><?php _e( 'Widget Color Scheme', WEBLIZAR_FACEBOOK_TEXT_DOMAIN ); ?></label>
|
181 |
-
<select id="<?php echo $this->get_field_id( 'ColorScheme' ); ?>" name="<?php echo $this->get_field_name( 'ColorScheme' ); ?>">
|
182 |
-
<option value="light" <?php if($ColorScheme == "light") echo "selected=selected" ?>>Light Color Theme</option>
|
183 |
-
<option value="dark" <?php if($ColorScheme == "dark") echo "selected=selected" ?>>Dark Color Theme</option>
|
184 |
-
</select>
|
185 |
-
</p>
|
186 |
-
<p>
|
187 |
-
<label for="<?php echo $this->get_field_id( 'Header' ); ?>"><?php _e( 'Show Widget Header', WEBLIZAR_FACEBOOK_TEXT_DOMAIN ); ?></label>
|
188 |
-
<select id="<?php echo $this->get_field_id( 'Header' ); ?>" name="<?php echo $this->get_field_name( 'Header' ); ?>">
|
189 |
-
<option value="true" <?php if($Header == "true") echo "selected=selected" ?>>Yes</option>
|
190 |
-
<option value="false" <?php if($Header == "false") echo "selected=selected" ?>>No</option>
|
191 |
-
</select>
|
192 |
</p>
|
193 |
<p>
|
194 |
<label for="<?php echo $this->get_field_id( 'ShowFaces' ); ?>"><?php _e( 'Show Faces', WEBLIZAR_FACEBOOK_TEXT_DOMAIN ); ?></label>
|
@@ -222,7 +207,6 @@ class WeblizarFacebook extends WP_Widget {
|
|
222 |
<a style="display:block;" target="_new" href="https://wordpress.org/plugins/facebook-by-weblizar/"><img src="<?php echo WEBLIZAR_FACEBOOK_PLUGIN_URL.'images/star.png' ;?>" /> </a>
|
223 |
<a href="https://wordpress.org/plugins/facebook-by-weblizar/" target="_new">Rate Us on Wordpress.org </a>
|
224 |
</p>
|
225 |
-
|
226 |
<?php
|
227 |
}
|
228 |
|
@@ -240,7 +224,6 @@ class WeblizarFacebook extends WP_Widget {
|
|
240 |
$instance = array();
|
241 |
$instance['title'] = ( ! empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : 'Tweets';
|
242 |
$instance['FacebookPageURL'] = ( ! empty( $new_instance['FacebookPageURL'] ) ) ? strip_tags( $new_instance['FacebookPageURL'] ) : 'https://www.facebook.com/pages/Weblizar/1440510482872657';
|
243 |
-
$instance['ColorScheme'] = ( ! empty( $new_instance['ColorScheme'] ) ) ? strip_tags( $new_instance['ColorScheme'] ) : 'light';
|
244 |
$instance['Header'] = ( ! empty( $new_instance['Header'] ) ) ? strip_tags( $new_instance['Header'] ) : 'true';
|
245 |
$instance['Width'] = ( ! empty( $new_instance['Width'] ) ) ? strip_tags( $new_instance['Width'] ) : '292';
|
246 |
$instance['Height'] = ( ! empty( $new_instance['Height'] ) ) ? strip_tags( $new_instance['Height'] ) : '560';
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Facebook By WebLizar
|
4 |
+
* Version: 1.6
|
5 |
+
* Description: Facebook like box pluign to display facebook page live stream & friends on WordPress blog.
|
6 |
* Author: WebLizar
|
7 |
* Author URI: http://www.weblizar.com
|
8 |
* Plugin URI: http://www.weblizar.com/plugins/
|
57 |
if (!empty($title)) { echo $before_title . $title . $after_title; }
|
58 |
|
59 |
$FbAppId = apply_filters( 'facebook_app_id', $instance['FbAppId'] );
|
60 |
+
//$ColorScheme = apply_filters( 'facebook_color_scheme', $instance['ColorScheme'] );
|
61 |
$ForceWall = apply_filters( 'facebook_force_wall', $instance['ForceWall'] );
|
62 |
$Header = apply_filters( 'facebook_header', $instance['Header'] );
|
63 |
$Height = apply_filters( 'facebook_height', $instance['Height'] );
|
66 |
$ShowFaces = apply_filters( 'facebook_show_faces', $instance['ShowFaces'] );
|
67 |
$Stream = apply_filters( 'facebook_stream', $instance['Stream'] );
|
68 |
$Width = apply_filters( 'facebook_width', $instance['Width'] );
|
|
|
69 |
?>
|
70 |
<style>
|
71 |
@media (max-width:767px) {
|
87 |
<div style="display:block;width:100%;float:left;overflow:hidden;margin-bottom:20px">
|
88 |
<div id="fb-root"></div>
|
89 |
<script>(function(d, s, id) {
|
90 |
+
var js, fjs = d.getElementsByTagName(s)[0];
|
91 |
+
if (d.getElementById(id)) return;
|
92 |
+
js = d.createElement(s); js.id = id;
|
93 |
+
js.src = "//connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.4";
|
94 |
+
fjs.parentNode.insertBefore(js, fjs);
|
95 |
+
}(document, 'script', 'facebook-jssdk'));</script>
|
96 |
+
<div class="fb-like-box" style="background-color: auto;" data-small-header="<?php echo $Header; ?>" data-height="<?php echo $Height; ?>" data-href="<?php echo $FacebookPageURL; ?>" data-show-border="<?php echo $ShowBorder; ?>" data-show-faces="<?php echo $ShowFaces; ?>" data-stream="<?php echo $Stream; ?>" data-width="<?php echo $Width; ?>" data-force-wall="<?php echo $ForceWall; ?>"></div>
|
97 |
+
<div style="display:none;">Facebook By Weblizar Powered By Weblizar</div>
|
98 |
</div>
|
99 |
<?php
|
100 |
echo $after_widget;
|
110 |
public function form( $instance ) {
|
111 |
|
112 |
//default values & Submitted Values
|
113 |
+
/* $ColorScheme = 'lite';
|
114 |
if ( isset( $instance[ 'ColorScheme' ] ) ) {
|
115 |
$ColorScheme = $instance[ 'ColorScheme' ];
|
116 |
+
} */
|
117 |
|
118 |
$ForceWall = 'false';
|
119 |
if ( isset( $instance[ 'ForceWall' ] ) ) {
|
174 |
<p>
|
175 |
<label for="<?php echo $this->get_field_id( 'FacebookPageURL' ); ?>"><?php _e( 'Facebook Page URL', WEBLIZAR_FACEBOOK_TEXT_DOMAIN ); ?></label>
|
176 |
<input class="widefat" id="<?php echo $this->get_field_id( 'FacebookPageURL' ); ?>" name="<?php echo $this->get_field_name( 'FacebookPageURL' ); ?>" type="text" value="<?php echo esc_attr( $FacebookPageURL ); ?>">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
</p>
|
178 |
<p>
|
179 |
<label for="<?php echo $this->get_field_id( 'ShowFaces' ); ?>"><?php _e( 'Show Faces', WEBLIZAR_FACEBOOK_TEXT_DOMAIN ); ?></label>
|
207 |
<a style="display:block;" target="_new" href="https://wordpress.org/plugins/facebook-by-weblizar/"><img src="<?php echo WEBLIZAR_FACEBOOK_PLUGIN_URL.'images/star.png' ;?>" /> </a>
|
208 |
<a href="https://wordpress.org/plugins/facebook-by-weblizar/" target="_new">Rate Us on Wordpress.org </a>
|
209 |
</p>
|
|
|
210 |
<?php
|
211 |
}
|
212 |
|
224 |
$instance = array();
|
225 |
$instance['title'] = ( ! empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : 'Tweets';
|
226 |
$instance['FacebookPageURL'] = ( ! empty( $new_instance['FacebookPageURL'] ) ) ? strip_tags( $new_instance['FacebookPageURL'] ) : 'https://www.facebook.com/pages/Weblizar/1440510482872657';
|
|
|
227 |
$instance['Header'] = ( ! empty( $new_instance['Header'] ) ) ? strip_tags( $new_instance['Header'] ) : 'true';
|
228 |
$instance['Width'] = ( ! empty( $new_instance['Width'] ) ) ? strip_tags( $new_instance['Width'] ) : '292';
|
229 |
$instance['Height'] = ( ! empty( $new_instance['Height'] ) ) ? strip_tags( $new_instance['Height'] ) : '560';
|
help-body - Copy.php
ADDED
@@ -0,0 +1,738 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<style>
|
2 |
+
label {
|
3 |
+
margin-right:10px;
|
4 |
+
}
|
5 |
+
|
6 |
+
#fb-msg {
|
7 |
+
border: 1px #888888 solid; background-color: #C0CCFE; padding: 10px; font-size: inherit; font-weight: bold; font-family: inherit; font-style: inherit; text-decoration: inherit;
|
8 |
+
}
|
9 |
+
</style>
|
10 |
+
<script>
|
11 |
+
function SaveSettings(){
|
12 |
+
var FacebookPageUrl = jQuery("#facebook-page-url").val();
|
13 |
+
var ColorScheme = jQuery("#show-widget-header").val();
|
14 |
+
var Header = jQuery("#show-widget-header").val();
|
15 |
+
var Stream = jQuery("#show-live-stream").val();
|
16 |
+
var Width = jQuery("#widget-width").val();
|
17 |
+
var Height = jQuery("#widget-height").val();
|
18 |
+
var FbAppId = jQuery("#fb-app-id").val();
|
19 |
+
if(!FacebookPageUrl) {
|
20 |
+
jQuery("#facebook-page-url").focus();
|
21 |
+
return false;
|
22 |
+
}
|
23 |
+
if(!FbAppId) {
|
24 |
+
jQuery("#fb-app-id").focus();
|
25 |
+
return false;
|
26 |
+
}
|
27 |
+
jQuery("#fb-save-settings").hide();
|
28 |
+
jQuery("#fb-img").show();
|
29 |
+
jQuery.ajax({
|
30 |
+
url: location.href,
|
31 |
+
type: "POST",
|
32 |
+
data: jQuery("form#fb-form").serialize(),
|
33 |
+
dataType: "html",
|
34 |
+
//Do not cache the page
|
35 |
+
cache: false,
|
36 |
+
//success
|
37 |
+
success: function (html) {
|
38 |
+
jQuery("#fb-img").hide();
|
39 |
+
jQuery("#fb-msg").show();
|
40 |
+
|
41 |
+
setTimeout(function() {
|
42 |
+
location.reload(true);
|
43 |
+
}, 2000);
|
44 |
+
|
45 |
+
}
|
46 |
+
});
|
47 |
+
}
|
48 |
+
</script>
|
49 |
+
|
50 |
+
<?php
|
51 |
+
wp_enqueue_style('op-bootstrap-css', WEBLIZAR_FACEBOOK_PLUGIN_URL. 'css/bootstrap.min.css');
|
52 |
+
if(isset($_POST['facebook-page-url']) && isset($_POST['fb-app-id'])){
|
53 |
+
$FacebookSettingsArray = serialize(
|
54 |
+
array(
|
55 |
+
'FacebookPageUrl' => $_POST['facebook-page-url'],
|
56 |
+
'ColorScheme' => '',
|
57 |
+
'Header' => $_POST['show-widget-header'],
|
58 |
+
'Stream' => $_POST['show-live-stream'],
|
59 |
+
'Width' => $_POST['widget-width'],
|
60 |
+
'Height' => $_POST['widget-height'],
|
61 |
+
'FbAppId' => $_POST['fb-app-id'],
|
62 |
+
'ShowBorder' => 'true',
|
63 |
+
'ShowFaces' => $_POST['show-fan-faces'],
|
64 |
+
'ForceWall' => 'false'
|
65 |
+
)
|
66 |
+
);
|
67 |
+
update_option("weblizar_facebook_shortcode_settings", $FacebookSettingsArray);
|
68 |
+
}
|
69 |
+
?>
|
70 |
+
|
71 |
+
<div class="block ui-tabs-panel active" id="option-general">
|
72 |
+
<div class="row">
|
73 |
+
<div class="col-md-10">
|
74 |
+
<div id="heading">
|
75 |
+
<h2>Facebook Like Box [FBW] <?php _e( 'Shortcode Settings', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></h2>
|
76 |
+
</div>
|
77 |
+
<?php
|
78 |
+
$FacebookSettings = unserialize(get_option("weblizar_facebook_shortcode_settings"));
|
79 |
+
//load default values OR saved values
|
80 |
+
$ForceWall = 'false';
|
81 |
+
if ( isset( $FacebookSettings[ 'ForceWall' ] ) ) {
|
82 |
+
$ForceWall = $FacebookSettings[ 'ForceWall' ];
|
83 |
+
}
|
84 |
+
|
85 |
+
$Header = 'true';
|
86 |
+
if ( isset( $FacebookSettings[ 'Header' ] ) ) {
|
87 |
+
$Header = $FacebookSettings[ 'Header' ];
|
88 |
+
}
|
89 |
+
|
90 |
+
$Height = 560;
|
91 |
+
if ( isset( $FacebookSettings[ 'Height' ] ) ) {
|
92 |
+
$Height = $FacebookSettings[ 'Height' ];
|
93 |
+
}
|
94 |
+
|
95 |
+
$FacebookPageUrl = 'https://www.facebook.com/pages/Weblizar/1440510482872657';
|
96 |
+
if ( isset( $FacebookSettings[ 'FacebookPageUrl' ] ) ) {
|
97 |
+
$FacebookPageUrl = $FacebookSettings[ 'FacebookPageUrl' ];
|
98 |
+
}
|
99 |
+
|
100 |
+
$ShowBorder = 'true';
|
101 |
+
if ( isset( $FacebookSettings[ 'ShowBorder' ] ) ) {
|
102 |
+
$ShowBorder = $FacebookSettings[ 'ShowBorder' ];
|
103 |
+
}
|
104 |
+
|
105 |
+
$ShowFaces = 'true';
|
106 |
+
if ( isset( $FacebookSettings[ 'ShowFaces' ] ) ) {
|
107 |
+
$ShowFaces = $FacebookSettings[ 'ShowFaces' ];
|
108 |
+
}
|
109 |
+
|
110 |
+
$Stream = 'true';
|
111 |
+
if ( isset( $FacebookSettings[ 'Stream' ] ) ) {
|
112 |
+
$Stream = $FacebookSettings[ 'Stream' ];
|
113 |
+
}
|
114 |
+
|
115 |
+
$Width = 292;
|
116 |
+
if ( isset( $FacebookSettings[ 'Width' ] ) ) {
|
117 |
+
$Width = $FacebookSettings[ 'Width' ];
|
118 |
+
}
|
119 |
+
|
120 |
+
$FbAppId = "488390501239538";
|
121 |
+
if ( isset( $FacebookSettings[ 'FbAppId' ] ) ) {
|
122 |
+
$FbAppId = $FacebookSettings[ 'FbAppId' ];
|
123 |
+
}
|
124 |
+
?>
|
125 |
+
<form name='fb-form' id='fb-form'>
|
126 |
+
<p>
|
127 |
+
<p><label><?php _e( 'Facebook Page URL', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></label></p>
|
128 |
+
<input class="widefat" id="facebook-page-url" name="facebook-page-url" type="text" value="<?php echo esc_attr( $FacebookPageUrl ); ?>">
|
129 |
+
</p>
|
130 |
+
<br>
|
131 |
+
|
132 |
+
<p>
|
133 |
+
<label><?php _e( 'Show Faces', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></label>
|
134 |
+
<select id="show-fan-faces" name="show-fan-faces">
|
135 |
+
<option value="true" <?php if($ShowFaces == "true") echo "selected=selected" ?>><?php _e( 'Yes', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></option>
|
136 |
+
<option value="false" <?php if($ShowFaces == "false") echo "selected=selected" ?>><?php _e( 'No', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></option>
|
137 |
+
</select>
|
138 |
+
</p>
|
139 |
+
<br>
|
140 |
+
|
141 |
+
<p>
|
142 |
+
<label><?php _e( 'Show Live Stream', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></label>
|
143 |
+
<select id="show-live-stream" name="show-live-stream">
|
144 |
+
<option value="true" <?php if($Stream == "true") echo "selected=selected" ?>><?php _e( 'Yes', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></option>
|
145 |
+
<option value="false" <?php if($Stream == "false") echo "selected=selected" ?>><?php _e( 'No', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></option>
|
146 |
+
</select>
|
147 |
+
</p>
|
148 |
+
<br>
|
149 |
+
|
150 |
+
<p>
|
151 |
+
<p><label><?php _e( 'Widget Width', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></label></p>
|
152 |
+
<input class="widefat" id="widget-width" name="widget-width" type="text" value="<?php echo esc_attr( $Width ); ?>">
|
153 |
+
</p>
|
154 |
+
<br>
|
155 |
+
|
156 |
+
<p>
|
157 |
+
<p><label><?php _e( 'Widget Height', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></label></p>
|
158 |
+
<input class="widefat" id="widget-height" name="widget-height" type="text" value="<?php echo esc_attr( $Height ); ?>">
|
159 |
+
</p>
|
160 |
+
<br>
|
161 |
+
|
162 |
+
<p>
|
163 |
+
<p><label><?php _e( 'Facebook App ID', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?> (<?php _e('Required', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?>)</label></p>
|
164 |
+
<input class="widefat" id="fb-app-id" name="fb-app-id" type="text" value="<?php echo esc_attr( $FbAppId ); ?>">
|
165 |
+
<?php _e('Get Your Own Facebook APP Id', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?>: <a href="http://weblizar.com/get-facebook-app-id/" target="_blank">HERE</a>
|
166 |
+
</p>
|
167 |
+
<br>
|
168 |
+
|
169 |
+
<p>
|
170 |
+
<input onclick="return SaveSettings();" type="button" class="button button-primary button-hero" id="fb-save-settings" name="fb-save-settings" value="SAVE">
|
171 |
+
</p>
|
172 |
+
<p>
|
173 |
+
<div id="fb-img" style="display: none;"><img src="<?php echo WEBLIZAR_FACEBOOK_PLUGIN_URL.'images/loading.gif'; ?>" /></div>
|
174 |
+
<div id="fb-msg" style="display: none;" class"alert">
|
175 |
+
<?php _e( 'Settings successfully saved. Reloading page for generating preview below.', WEBLIZAR_FACEBOOK_TEXT_DOMAIN ); ?>
|
176 |
+
</div>
|
177 |
+
</p>
|
178 |
+
<br>
|
179 |
+
</form>
|
180 |
+
<?php
|
181 |
+
if($FbAppId && $FacebookPageUrl) { ?>
|
182 |
+
<div id="heading">
|
183 |
+
<h2>Facebook Likebox Shortcode <?php _e( 'Preview', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></h2>
|
184 |
+
</div>
|
185 |
+
<p>
|
186 |
+
<div id="fb-root"></div>
|
187 |
+
<script>(function(d, s, id) {
|
188 |
+
var js, fjs = d.getElementsByTagName(s)[0];
|
189 |
+
if (d.getElementById(id)) return;
|
190 |
+
js = d.createElement(s); js.id = id;
|
191 |
+
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&appId=<?php echo $FbAppId; ?>&version=v2.0";
|
192 |
+
fjs.parentNode.insertBefore(js, fjs);
|
193 |
+
}(document, 'script', 'facebook-jssdk'));
|
194 |
+
</script>
|
195 |
+
<div class="fb-like-box" data-small-header="<?php echo $Header; ?>" data-height="<?php echo $Height; ?>" data-href="<?php echo $FacebookPageUrl; ?>" data-show-border="<?php echo $ShowBorder; ?>" data-show-faces="<?php echo $ShowFaces; ?>" data-stream="<?php echo $Stream; ?>" data-width="<?php echo $Width; ?>" data-force-wall="<?php echo $ForceWall; ?>"></div>
|
196 |
+
</p>
|
197 |
+
<?php } ?>
|
198 |
+
</div>
|
199 |
+
</div>
|
200 |
+
</div>
|
201 |
+
|
202 |
+
|
203 |
+
|
204 |
+
<!---------------- need help tab------------------------>
|
205 |
+
<div class="block ui-tabs-panel deactive" id="option-needhelp">
|
206 |
+
<div class="row">
|
207 |
+
<div class="col-md-10">
|
208 |
+
<div id="heading">
|
209 |
+
<h2>Facebook Like Box Help Section</h2>
|
210 |
+
</div>
|
211 |
+
<p>Facebook By Weblizar plugin comes with 2 functionality.</p>
|
212 |
+
<br>
|
213 |
+
<p><strong>1 - Facebook Like Box Widget</strong></p>
|
214 |
+
<p><strong>2 - Facebook Like Box Shoertcode [FBW]</strong></p>
|
215 |
+
<br><br>
|
216 |
+
|
217 |
+
<p><strong>Facebook Like Box Widget</strong></p>
|
218 |
+
<hr>
|
219 |
+
<p>You can use the widget to display your Facebook Like Box in any theme Widget Sections.</p>
|
220 |
+
<p>Simple go to your <a href="<?php echo get_site_url(); ?>/wp-admin/widgets.php"><strong>Widgets</strong></a> section and activate available <strong>"Facebook By Weblizar"</strong> widget in any sidebar section, like in left sidebar, right sidebar or footer sidebar.</p>
|
221 |
+
<br><br>
|
222 |
+
|
223 |
+
<p><strong>Facebook Like Box Shoertcode [FBW]</strong></p>
|
224 |
+
<hr>
|
225 |
+
<p><strong>[FBW]</strong> shortcode give ability to display Facebook Like Box in any Page / Post with content.</p>
|
226 |
+
<p>To use shortcode, just copy <strong>[FBW]</strong> shortcode and paste into content editor of any Page / Post.</p>
|
227 |
+
|
228 |
+
<br><br>
|
229 |
+
<p><strong>Q. What is Facebook Page URL?</strong></p>
|
230 |
+
<p><strong> Ans. Facebook Page URL</strong> is your Facebook page your where you promote your business. Here your customers, clients, friends, guests can like, share, comment review your POST.</p>
|
231 |
+
<br><br>
|
232 |
+
<p><strong>Q. What is Facebook APP ID?</strong></p>
|
233 |
+
<p><strong>Ans. Facebook Application ID</strong> used to authenticate your Facebook Page data & settings. To get your own Facebook APP ID please read our 4 Steps very simple and easy <a href="http://weblizar.com/get-facebook-app-id/" target="_blank"><strong>Tutorial.</p>
|
234 |
+
</div>
|
235 |
+
</div>
|
236 |
+
</div>
|
237 |
+
|
238 |
+
<!---------------- our product tab------------------------>
|
239 |
+
<div class="block ui-tabs-panel deactive" id="option-ourproduct">
|
240 |
+
<div class="row-fluid pricing-table pricing-three-column">
|
241 |
+
<div class="plan-name centre">
|
242 |
+
<a style="margin-bottom:10px;textt-align:center" target="_new" href="http://weblizar.com"><img src="http://weblizar.com/wp-content/themes/home-theme/images/weblizar2.png" /></a>
|
243 |
+
|
244 |
+
</div>
|
245 |
+
<div class="plan-name">
|
246 |
+
<h2>Weblizar's Responsive WordPress Theme</h2>
|
247 |
+
<h6>Get The Premium Themes And Plugin Create Your Website Beautifully</h6>
|
248 |
+
</div>
|
249 |
+
|
250 |
+
<div class="col-md-4 demoftr ">
|
251 |
+
<h2>Enigma</h2>
|
252 |
+
<div class="img-wrapper">
|
253 |
+
<div class="enigma_home_portfolio_showcase">
|
254 |
+
<img class="enigma_img_responsive ftr_img" src="<?php echo WEBLIZAR_FACEBOOK_PLUGIN_URL.'images/enigma.jpg' ;?>">
|
255 |
+
<div class="enigma_home_portfolio_showcase_overlay">
|
256 |
+
<div class="enigma_home_portfolio_showcase_overlay_inner ">
|
257 |
+
<div class="enigma_home_portfolio_showcase_icons">
|
258 |
+
<a title="Link" data-toggle="modal" data-target="#myModal" href="View Detail#">View Detail</a>
|
259 |
+
</div>
|
260 |
+
</div>
|
261 |
+
</div>
|
262 |
+
</div>
|
263 |
+
</div>
|
264 |
+
</div>
|
265 |
+
|
266 |
+
<!-- Modal -->
|
267 |
+
<div class="modal " id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
268 |
+
<div class="modal-dialog">
|
269 |
+
<div class="modal-content ">
|
270 |
+
<div class="modal-header ">
|
271 |
+
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
272 |
+
<h4 class="modal-title" id="myModalLabel"> <a class="pro-dir-button" data-toggle="modal" data-target="#myModalGreen" data-dismiss="modal" href="View Detail#" class="pro-dir-button"><i style="color:#000;line-height:1.5" class="fa fa-angle-right fa-2x"></i></a>
|
273 |
+
</h4>
|
274 |
+
</div>
|
275 |
+
<div class="modal-body">
|
276 |
+
<div class="col-md-6">
|
277 |
+
<img class="enigma_img_responsive ftr_img" src="<?php echo WEBLIZAR_FACEBOOK_PLUGIN_URL.'images/enigma.jpg' ;?>">
|
278 |
+
</div>
|
279 |
+
<div class="col-md-6">
|
280 |
+
<div class="theme-info">
|
281 |
+
<h3 class="theme-name">Enigma Pro Theme</h3>
|
282 |
+
<h4 class="theme-author">By <a href="http://weblizar.com/" title="Visit author homepage">weblizar</a></h4>
|
283 |
+
<p class="theme-description">Enigma is HTML5 & CSS3 Responsive WordPress Business theme with business style , 7 blog templates , 6 portfolio templates and many more</p>
|
284 |
+
<h4 style="margin-top:20px;">Features</h4>
|
285 |
+
<div class="col-md-6">
|
286 |
+
<div class="enigma_sidebar_link">
|
287 |
+
<p>
|
288 |
+
<i class="fa fa-angle-right"></i>Responsive Design
|
289 |
+
</p>
|
290 |
+
<p>
|
291 |
+
<i class="fa fa-angle-right"></i>Retina Ready
|
292 |
+
</p>
|
293 |
+
<p>
|
294 |
+
<i class="fa fa-angle-right"></i>Html5 & Css3
|
295 |
+
</p>
|
296 |
+
<p>
|
297 |
+
<i class="fa fa-angle-right"></i>Multi-purpose Theme
|
298 |
+
</p>
|
299 |
+
<p>
|
300 |
+
<i class="fa fa-angle-right"></i>Unlimited Color Schemes
|
301 |
+
</p>
|
302 |
+
<p>
|
303 |
+
<i class="fa fa-angle-right"></i>Multiple Templates
|
304 |
+
</p>
|
305 |
+
|
306 |
+
</div>
|
307 |
+
</div>
|
308 |
+
<div class="col-md-6">
|
309 |
+
<div class="enigma_sidebar_link">
|
310 |
+
<p>
|
311 |
+
<i class="fa fa-angle-right"></i>All Browser Support
|
312 |
+
</p>
|
313 |
+
<p>
|
314 |
+
<i class="fa fa-angle-right"></i>Powerful Option Panel
|
315 |
+
</p>
|
316 |
+
<p>
|
317 |
+
<i class="fa fa-angle-right"></i>Coming Soon Mode
|
318 |
+
</p>
|
319 |
+
<p>
|
320 |
+
<i class="fa fa-angle-right"></i>Custom Shortcode
|
321 |
+
</p>
|
322 |
+
<p>
|
323 |
+
<i class="fa fa-angle-right"></i>Isotope Effects and lightbox
|
324 |
+
</p>
|
325 |
+
<p>
|
326 |
+
<i class="fa fa-angle-right"></i>Fast & Friendly Support
|
327 |
+
</p>
|
328 |
+
</div>
|
329 |
+
</div>
|
330 |
+
<div class="col-md-12" style="margin-top:20px;">
|
331 |
+
<a class="btn btn-success btn-lg" target="_new" href="http://weblizar.com/preview/#enigma_pro">View Demo</a>
|
332 |
+
<a class="btn btn-danger btn-lg" target="_new" href="http://weblizar.com/themes/enigma-premium/">Purchase Now</a>
|
333 |
+
</div>
|
334 |
+
</div>
|
335 |
+
</div>
|
336 |
+
</div>
|
337 |
+
<div class="modal-footer">
|
338 |
+
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
339 |
+
</div>
|
340 |
+
</div>
|
341 |
+
</div>
|
342 |
+
</div>
|
343 |
+
|
344 |
+
|
345 |
+
<div class="col-md-4 demoftr ">
|
346 |
+
<h2>Green Lantern</h2>
|
347 |
+
<div class="img-wrapper">
|
348 |
+
<div class="enigma_home_portfolio_showcase">
|
349 |
+
<img class="enigma_img_responsive ftr_img" src="http://weblizar.com/wp-content/themes/home-theme/images/green-lantern-premium-images/glp-slide-1.jpg">
|
350 |
+
<div class="enigma_home_portfolio_showcase_overlay">
|
351 |
+
<div class="enigma_home_portfolio_showcase_overlay_inner ">
|
352 |
+
<div class="enigma_home_portfolio_showcase_icons">
|
353 |
+
<a title="Link" data-toggle="modal" data-target="#myModalGreen" href="View Detail#">View Detail</a>
|
354 |
+
</div>
|
355 |
+
</div>
|
356 |
+
</div>
|
357 |
+
</div>
|
358 |
+
</div>
|
359 |
+
</div>
|
360 |
+
|
361 |
+
<!-- Modal -->
|
362 |
+
<div class="modal" id="myModalGreen" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
363 |
+
<div class="modal-dialog">
|
364 |
+
<div class="modal-content ">
|
365 |
+
<div class="modal-header ">
|
366 |
+
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
367 |
+
<h4 class="modal-title" id="myModalLabel"><a data-toggle="modal" data-target="#myModal" data-dismiss="modal" href="View Detail#" class="pro-dir-button"><i style="color:#000;line-height:1.5" class="fa fa-angle-left fa-2x"></i></a> <a data-toggle="modal" data-target="#myModalweblizar" data-dismiss="modal" href="View Detail#" class="pro-dir-button"><i style="color:#000;line-height:1.5" class="fa fa-angle-right fa-2x"></i></a>
|
368 |
+
</h4>
|
369 |
+
</div>
|
370 |
+
<div class="modal-body">
|
371 |
+
<div class="col-md-6">
|
372 |
+
<img class="enigma_img_responsive ftr_img" src="http://weblizar.com/wp-content/themes/home-theme/images/green-lantern-premium-images/glp-slide-1.jpg">
|
373 |
+
</div>
|
374 |
+
<div class="col-md-6">
|
375 |
+
<div class="theme-info">
|
376 |
+
<h3 class="theme-name">Green Lantern Pro Theme</h3>
|
377 |
+
<h4 class="theme-author">By <a href="http://weblizar.com/" title="Visit author homepage">weblizar</a></h4>
|
378 |
+
<p class="theme-description">Green Lantern is a Full Responsive Multi-Purpose Theme suitable for Business, corporate office and others. Cool Blog Layout and full width page also present</p>
|
379 |
+
<h4 style="margin-top:20px;">Features</h4>
|
380 |
+
<div class="col-md-6">
|
381 |
+
<div class="enigma_sidebar_link">
|
382 |
+
<p>
|
383 |
+
<i class="fa fa-angle-right"></i>Responsive Design
|
384 |
+
</p>
|
385 |
+
<p>
|
386 |
+
<i class="fa fa-angle-right"></i>Retina Ready
|
387 |
+
</p>
|
388 |
+
<p>
|
389 |
+
<i class="fa fa-angle-right"></i>Html5 & Css3
|
390 |
+
</p>
|
391 |
+
<p>
|
392 |
+
<i class="fa fa-angle-right"></i>Multi-purpose Theme
|
393 |
+
</p>
|
394 |
+
<p>
|
395 |
+
<i class="fa fa-angle-right"></i>Unlimited Color Schemes
|
396 |
+
</p>
|
397 |
+
<p>
|
398 |
+
<i class="fa fa-angle-right"></i>Multiple Templates
|
399 |
+
</p>
|
400 |
+
</div>
|
401 |
+
</div>
|
402 |
+
<div class="col-md-6">
|
403 |
+
<div class="enigma_sidebar_link">
|
404 |
+
<p>
|
405 |
+
<i class="fa fa-angle-right"></i>All Browser Support
|
406 |
+
</p>
|
407 |
+
<p>
|
408 |
+
<i class="fa fa-angle-right"></i>Powerful Option Panel
|
409 |
+
</p>
|
410 |
+
<p>
|
411 |
+
<i class="fa fa-angle-right"></i>Coming Soon Mode
|
412 |
+
</p>
|
413 |
+
<p>
|
414 |
+
<i class="fa fa-angle-right"></i>Custom Shortcode
|
415 |
+
</p>
|
416 |
+
<p>
|
417 |
+
<i class="fa fa-angle-right"></i>Isotope Effects and lightbox
|
418 |
+
</p>
|
419 |
+
<p>
|
420 |
+
<i class="fa fa-angle-right"></i>Fast & Friendly Support
|
421 |
+
</p>
|
422 |
+
</div>
|
423 |
+
</div>
|
424 |
+
<p></p>
|
425 |
+
<div class="col-md-12" style="margin-top:20px;">
|
426 |
+
<a class="btn btn-success btn-lg" target="_new" href="http://weblizar.com/preview/#green_lantern">View Demo</a>
|
427 |
+
<a class="btn btn-danger btn-lg" target="_new" href="http://weblizar.com/themes/green-lantern-premium-theme/">Purchase Now</a>
|
428 |
+
</div>
|
429 |
+
</div>
|
430 |
+
</div>
|
431 |
+
</div>
|
432 |
+
<div class="modal-footer">
|
433 |
+
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
434 |
+
|
435 |
+
</div>
|
436 |
+
</div>
|
437 |
+
</div>
|
438 |
+
</div>
|
439 |
+
|
440 |
+
|
441 |
+
<div class="col-md-4 demoftr ">
|
442 |
+
<h2>Weblizar</h2>
|
443 |
+
<div class="img-wrapper">
|
444 |
+
<div class="enigma_home_portfolio_showcase">
|
445 |
+
<img class="enigma_img_responsive ftr_img" src="http://weblizar.com/wp-content/uploads/2014/06/screenshot1.jpg">
|
446 |
+
<div class="enigma_home_portfolio_showcase_overlay">
|
447 |
+
<div class="enigma_home_portfolio_showcase_overlay_inner ">
|
448 |
+
<div class="enigma_home_portfolio_showcase_icons">
|
449 |
+
<a title="Link" data-toggle="modal" data-target="#myModalweblizar" href="View Detail#">View Detail</a>
|
450 |
+
</div>
|
451 |
+
</div>
|
452 |
+
</div>
|
453 |
+
</div>
|
454 |
+
</div>
|
455 |
+
</div>
|
456 |
+
|
457 |
+
<!-- Modal -->
|
458 |
+
<div class="modal" id="myModalweblizar" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
459 |
+
<div class="modal-dialog">
|
460 |
+
<div class="modal-content ">
|
461 |
+
<div class="modal-header ">
|
462 |
+
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
463 |
+
<h4 class="modal-title" id="myModalLabel"><a data-toggle="modal" data-target="#myModalGreen" data-dismiss="modal" href="View Detail#" class="pro-dir-button"><i style="color:#000;line-height:1.5" class="fa fa-angle-left fa-2x"></i></a> <a data-toggle="modal" data-target="#myModallightbox" data-dismiss="modal" href="View Detail#" class="pro-dir-button"><i style="color:#000;line-height:1.5" class="fa fa-angle-right fa-2x"></i></a>
|
464 |
+
</h4>
|
465 |
+
</div>
|
466 |
+
<div class="modal-body">
|
467 |
+
<div class="col-md-6">
|
468 |
+
<img class="enigma_img_responsive ftr_img" src="http://weblizar.com/wp-content/uploads/2014/06/screenshot1.jpg">
|
469 |
+
</div>
|
470 |
+
<div class="col-md-6">
|
471 |
+
<div class="theme-info">
|
472 |
+
<h3 class="theme-name">Weblizar Pro Theme</h3>
|
473 |
+
<h4 class="theme-author">By <a href="http://weblizar.com/" title="Visit author homepage">weblizar</a></h4>
|
474 |
+
<p class="theme-description">Responsive Multi-Purpose Theme suitable for Business, corporate office and others .Cool Blog Layout and full width page.You can also use it for portfolio, blogging or any type of site. Built with Twitter bootstrap</p>
|
475 |
+
<h4 style="margin-top:20px;">Features</h4>
|
476 |
+
<div class="col-md-6">
|
477 |
+
<div class="enigma_sidebar_link">
|
478 |
+
<p>
|
479 |
+
<i class="fa fa-angle-right"></i>Responsive Design
|
480 |
+
</p>
|
481 |
+
<p>
|
482 |
+
<i class="fa fa-angle-right"></i>Retina Ready
|
483 |
+
</p>
|
484 |
+
<p>
|
485 |
+
<i class="fa fa-angle-right"></i>Html5 & Css3
|
486 |
+
</p>
|
487 |
+
<p>
|
488 |
+
<i class="fa fa-angle-right"></i>Multi-purpose Theme
|
489 |
+
</p>
|
490 |
+
<p>
|
491 |
+
<i class="fa fa-angle-right"></i>Unlimited Color Schemes
|
492 |
+
</p>
|
493 |
+
<p>
|
494 |
+
<i class="fa fa-angle-right"></i>Multiple Templates
|
495 |
+
</p>
|
496 |
+
</div>
|
497 |
+
</div>
|
498 |
+
<div class="col-md-6">
|
499 |
+
<div class="enigma_sidebar_link">
|
500 |
+
<p>
|
501 |
+
<i class="fa fa-angle-right"></i>All Browser Support
|
502 |
+
</p>
|
503 |
+
<p>
|
504 |
+
<i class="fa fa-angle-right"></i>Powerful Option Panel
|
505 |
+
</p>
|
506 |
+
<p>
|
507 |
+
<i class="fa fa-angle-right"></i>Coming Soon Mode
|
508 |
+
</p>
|
509 |
+
<p>
|
510 |
+
<i class="fa fa-angle-right"></i>Custom Shortcode
|
511 |
+
</p>
|
512 |
+
<p>
|
513 |
+
<i class="fa fa-angle-right"></i>Isotope Effects and lightbox
|
514 |
+
</p>
|
515 |
+
<p>
|
516 |
+
<i class="fa fa-angle-right"></i>Fast & Friendly Support
|
517 |
+
</p>
|
518 |
+
</div>
|
519 |
+
</div>
|
520 |
+
<p></p>
|
521 |
+
<div class="col-md-12" style="margin-top:20px;">
|
522 |
+
<a class="btn btn-success btn-lg" target="_new" href="http://weblizar.com/preview/#weblizar_pro">View Demo</a>
|
523 |
+
<a class="btn btn-danger btn-lg" target="_new" href="http://weblizar.com/themes/weblizar-premium-theme/">Purchase Now</a>
|
524 |
+
</div>
|
525 |
+
</div>
|
526 |
+
</div>
|
527 |
+
</div>
|
528 |
+
<div class="modal-footer">
|
529 |
+
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
530 |
+
</div>
|
531 |
+
</div>
|
532 |
+
</div>
|
533 |
+
</div>
|
534 |
+
</div>
|
535 |
+
|
536 |
+
|
537 |
+
<div class="row-fluid pricing-table pricing-three-column">
|
538 |
+
<div class="plan-name">
|
539 |
+
<h2>Weblizar's Responsive Wordpress Plugins</h2>
|
540 |
+
<h6>Get Premium Plugin & Create Beautiful Galleries and Sideshow</h6>
|
541 |
+
</div>
|
542 |
+
<div class="col-md-6 demoftr">
|
543 |
+
<h2>Lightbox Slider Pro</h2>
|
544 |
+
<div class="img-wrapper">
|
545 |
+
<div class="enigma_home_portfolio_showcase">
|
546 |
+
<img class="enigma_img_responsive ftr_img" src="http://weblizar.com/wp-content/themes/home-theme/images/lightbox/fancy.jpg">
|
547 |
+
<div class="enigma_home_portfolio_showcase_overlay">
|
548 |
+
<div class="enigma_home_portfolio_showcase_overlay_inner ">
|
549 |
+
<div class="enigma_home_portfolio_showcase_icons">
|
550 |
+
<a title="Link" data-toggle="modal" data-target="#myModallightbox" href="View Detail#">View Detail</a>
|
551 |
+
</div>
|
552 |
+
</div>
|
553 |
+
</div>
|
554 |
+
</div>
|
555 |
+
</div>
|
556 |
+
</div>
|
557 |
+
|
558 |
+
<!-- Modal -->
|
559 |
+
<div class="modal " id="myModallightbox" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
560 |
+
<div class="modal-dialog">
|
561 |
+
<div class="modal-content ">
|
562 |
+
<div class="modal-header ">
|
563 |
+
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
564 |
+
<h4 class="modal-title" id="myModalLabel"> <a class="pro-dir-button" data-toggle="modal" data-target="#myModalweblizar" data-dismiss="modal" href="View Detail#" class="pro-dir-button"><i style="color:#000;line-height:1.5" class="fa fa-angle-left fa-2x"></i></a> <a class="pro-dir-button" data-toggle="modal" data-target="#myModalresponsive" data-dismiss="modal" href="View Detail#" class="pro-dir-button"><i style="color:#000;line-height:1.5" class="fa fa-angle-right fa-2x"></i></a>
|
565 |
+
</h4>
|
566 |
+
</div>
|
567 |
+
<div class="modal-body">
|
568 |
+
<div class="col-md-6">
|
569 |
+
<img class="enigma_img_responsive ftr_img" src="http://weblizar.com/wp-content/themes/home-theme/images/lightbox/fancy.jpg">
|
570 |
+
</div>
|
571 |
+
<div class="col-md-6">
|
572 |
+
<div class="theme-info">
|
573 |
+
<h3 class="theme-name">LightBox Slider Pro</h3>
|
574 |
+
<h4 class="theme-author">By <a href="http://weblizar.com/" title="Visit author homepage">weblizar</a></h4>
|
575 |
+
<p class="theme-description">Lightbox Slider is premium WordPress plugin to create gallery with lightbox slide</p>
|
576 |
+
<h4 style="margin-top:20px;">Features</h4>
|
577 |
+
<div class="col-md-6">
|
578 |
+
<div class="enigma_sidebar_link">
|
579 |
+
<p>
|
580 |
+
<i class="fa fa-angle-right"></i>Responsive Design
|
581 |
+
</p>
|
582 |
+
<p>
|
583 |
+
<i class="fa fa-angle-right"></i>Ultimate Lightbox
|
584 |
+
</p>
|
585 |
+
<p>
|
586 |
+
<i class="fa fa-angle-right"></i>5 Gallery Layout
|
587 |
+
</p>
|
588 |
+
<p>
|
589 |
+
<i class="fa fa-angle-right"></i>500+ Fonts Styles
|
590 |
+
</p>
|
591 |
+
<p>
|
592 |
+
<i class="fa fa-angle-right"></i>10 Color Opacity
|
593 |
+
</p>
|
594 |
+
<p>
|
595 |
+
<i class="fa fa-angle-right"></i>8 Lightbox
|
596 |
+
</p>
|
597 |
+
|
598 |
+
</div>
|
599 |
+
</div>
|
600 |
+
<div class="col-md-6">
|
601 |
+
<div class="enigma_sidebar_link">
|
602 |
+
<p>
|
603 |
+
<i class="fa fa-angle-right"></i>Gallery Shortcode
|
604 |
+
</p>
|
605 |
+
<p>
|
606 |
+
<i class="fa fa-angle-right"></i>Unlimited Color Schemes
|
607 |
+
</p>
|
608 |
+
<p>
|
609 |
+
<i class="fa fa-angle-right"></i>Retina Ready
|
610 |
+
</p>
|
611 |
+
<p>
|
612 |
+
<i class="fa fa-angle-right"></i>Isotope Effects
|
613 |
+
</p>
|
614 |
+
<p>
|
615 |
+
<i class="fa fa-angle-right"></i>All Browser Support
|
616 |
+
</p>
|
617 |
+
<p>
|
618 |
+
<i class="fa fa-angle-right"></i>Fast & Friendly Support
|
619 |
+
</p>
|
620 |
+
</div>
|
621 |
+
</div>
|
622 |
+
<div class="col-md-12" style="margin-top:20px;">
|
623 |
+
<a class="btn btn-success btn-lg" target="_new" href="http://weblizar.com/lightbox-slider-pro/">View Demo</a>
|
624 |
+
<a class="btn btn-danger btn-lg" target="_new" href="http://weblizar.com/lightbox-slider-pro/">Purchase Now</a>
|
625 |
+
</div>
|
626 |
+
</div>
|
627 |
+
</div>
|
628 |
+
</div>
|
629 |
+
<div class="modal-footer">
|
630 |
+
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
631 |
+
|
632 |
+
</div>
|
633 |
+
</div>
|
634 |
+
</div>
|
635 |
+
</div>
|
636 |
+
|
637 |
+
<div class="col-md-6 demoftr">
|
638 |
+
<h2>Reponsive Photo Gallery</h2>
|
639 |
+
<div class="img-wrapper">
|
640 |
+
<div class="enigma_home_portfolio_showcase">
|
641 |
+
<img class="enigma_img_responsive ftr_img" src="http://weblizar.com/wp-content/themes/home-theme/images/gallery-pro.png">
|
642 |
+
<div class="enigma_home_portfolio_showcase_overlay">
|
643 |
+
<div class="enigma_home_portfolio_showcase_overlay_inner ">
|
644 |
+
<div class="enigma_home_portfolio_showcase_icons">
|
645 |
+
<a title="Link" data-toggle="modal" data-target="#myModalresponsive" href="View Detail#">View Detail</a>
|
646 |
+
</div>
|
647 |
+
</div>
|
648 |
+
</div>
|
649 |
+
</div>
|
650 |
+
</div>
|
651 |
+
|
652 |
+
</div>
|
653 |
+
<!-- Modal -->
|
654 |
+
<div class="modal " id="myModalresponsive" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
655 |
+
<div class="modal-dialog">
|
656 |
+
<div class="modal-content ">
|
657 |
+
<div class="modal-header ">
|
658 |
+
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
659 |
+
<h4 class="modal-title" id="myModalLabel"> <a class="pro-dir-button" data-toggle="modal" data-target="#myModallightbox" data-dismiss="modal" href="View Detail#" class="pro-dir-button"><i style="color:#000;line-height:1.5" class="fa fa-angle-left fa-2x"></i></a>
|
660 |
+
</h4>
|
661 |
+
</div>
|
662 |
+
<div class="modal-body">
|
663 |
+
<div class="col-md-6">
|
664 |
+
<img class="enigma_img_responsive ftr_img" src="http://weblizar.com/wp-content/themes/home-theme/images/gallery-pro.png">
|
665 |
+
</div>
|
666 |
+
<div class="col-md-6">
|
667 |
+
<div class="theme-info">
|
668 |
+
<h3 class="theme-name">Responsive Photo Gallery</h3>
|
669 |
+
<h4 class="theme-author">By <a href="http://weblizar.com/" title="Visit author homepage">weblizar</a></h4>
|
670 |
+
<p class="theme-description">A Highly Animated Image Gallery Plugin For WordPress</p>
|
671 |
+
<h4 style="margin-top:20px;">Features</h4>
|
672 |
+
<div class="col-md-6">
|
673 |
+
<div class="enigma_sidebar_link">
|
674 |
+
<p>
|
675 |
+
<i class="fa fa-angle-right"></i>Responsive Design
|
676 |
+
</p>
|
677 |
+
<p>
|
678 |
+
<i class="fa fa-angle-right"></i>8 Animation Effect
|
679 |
+
</p>
|
680 |
+
<p>
|
681 |
+
<i class="fa fa-angle-right"></i>5 Gallery Layout
|
682 |
+
</p>
|
683 |
+
<p>
|
684 |
+
<i class="fa fa-angle-right"></i>500+ Fonts Styles
|
685 |
+
</p>
|
686 |
+
<p>
|
687 |
+
<i class="fa fa-angle-right"></i>10 Color Opacity
|
688 |
+
</p>
|
689 |
+
<p>
|
690 |
+
<i class="fa fa-angle-right"></i>2 Lightbox
|
691 |
+
</p>
|
692 |
+
|
693 |
+
</div>
|
694 |
+
</div>
|
695 |
+
<div class="col-md-6">
|
696 |
+
<div class="enigma_sidebar_link">
|
697 |
+
<p>
|
698 |
+
<i class="fa fa-angle-right"></i>Gallery Shortcode
|
699 |
+
</p>
|
700 |
+
<p>
|
701 |
+
<i class="fa fa-angle-right"></i>Unlimited Color Schemes
|
702 |
+
</p>
|
703 |
+
<p>
|
704 |
+
<i class="fa fa-angle-right"></i>Retina Ready
|
705 |
+
</p>
|
706 |
+
<p>
|
707 |
+
<i class="fa fa-angle-right"></i>Isotope Effects
|
708 |
+
</p>
|
709 |
+
<p>
|
710 |
+
<i class="fa fa-angle-right"></i>All Browser Support
|
711 |
+
</p>
|
712 |
+
<p>
|
713 |
+
<i class="fa fa-angle-right"></i>Fast & Friendly Support
|
714 |
+
</p>
|
715 |
+
</div>
|
716 |
+
</div>
|
717 |
+
<div class="col-md-12" style="margin-top:20px;">
|
718 |
+
<a class="btn btn-success btn-lg" target="_new" href="http://weblizar.com/plugins/responsive-photo-gallery-pro/">View Demo</a>
|
719 |
+
<a class="btn btn-danger btn-lg" target="_new" href="http://weblizar.com/plugins/responsive-photo-gallery-pro/">Purchase Now</a>
|
720 |
+
</div>
|
721 |
+
</div>
|
722 |
+
</div>
|
723 |
+
</div>
|
724 |
+
<div class="modal-footer">
|
725 |
+
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
726 |
+
|
727 |
+
</div>
|
728 |
+
</div>
|
729 |
+
</div>
|
730 |
+
</div>
|
731 |
+
|
732 |
+
</div>
|
733 |
+
<div class="plan-name centre">
|
734 |
+
<div class="purchase_btn_div">
|
735 |
+
<a href="http://weblizar.com/" target="_new" class="button button-primary button-hero">VISIT OUR SITE</a>
|
736 |
+
</div>
|
737 |
+
</div>
|
738 |
+
</div>
|
help-body.php
CHANGED
@@ -53,7 +53,7 @@ if(isset($_POST['facebook-page-url']) && isset($_POST['fb-app-id'])){
|
|
53 |
$FacebookSettingsArray = serialize(
|
54 |
array(
|
55 |
'FacebookPageUrl' => $_POST['facebook-page-url'],
|
56 |
-
'ColorScheme' =>
|
57 |
'Header' => $_POST['show-widget-header'],
|
58 |
'Stream' => $_POST['show-live-stream'],
|
59 |
'Width' => $_POST['widget-width'],
|
@@ -77,11 +77,6 @@ if(isset($_POST['facebook-page-url']) && isset($_POST['fb-app-id'])){
|
|
77 |
<?php
|
78 |
$FacebookSettings = unserialize(get_option("weblizar_facebook_shortcode_settings"));
|
79 |
//load default values OR saved values
|
80 |
-
$ColorScheme = 'lite';
|
81 |
-
if ( isset( $FacebookSettings[ 'ColorScheme' ] ) ) {
|
82 |
-
$ColorScheme = $FacebookSettings[ 'ColorScheme' ];
|
83 |
-
}
|
84 |
-
|
85 |
$ForceWall = 'false';
|
86 |
if ( isset( $FacebookSettings[ 'ForceWall' ] ) ) {
|
87 |
$ForceWall = $FacebookSettings[ 'ForceWall' ];
|
@@ -134,24 +129,6 @@ if(isset($_POST['facebook-page-url']) && isset($_POST['fb-app-id'])){
|
|
134 |
</p>
|
135 |
<br>
|
136 |
|
137 |
-
<p>
|
138 |
-
<label><?php _e( 'Widget Color Scheme', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></label>
|
139 |
-
<select id="widget-theme" name="widget-theme">
|
140 |
-
<option value="light" <?php if($ColorScheme == "light") echo "selected=selected" ?>><?php _e( 'Light Color Theme', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></option>
|
141 |
-
<option value="dark" <?php if($ColorScheme == "dark") echo "selected=selected" ?>><?php _e( 'Dark Color Theme', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></option>
|
142 |
-
</select>
|
143 |
-
</p>
|
144 |
-
<br>
|
145 |
-
|
146 |
-
<p>
|
147 |
-
<label><?php _e( 'Show Widget Header', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></label>
|
148 |
-
<select id="show-widget-header" name="show-widget-header">
|
149 |
-
<option value="true" <?php if($Header == "true") echo "selected=selected" ?>><?php _e( 'Yes', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></option>
|
150 |
-
<option value="false" <?php if($Header == "false") echo "selected=selected" ?>><?php _e( 'No', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></option>
|
151 |
-
</select>
|
152 |
-
</p>
|
153 |
-
<br>
|
154 |
-
|
155 |
<p>
|
156 |
<label><?php _e( 'Show Faces', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></label>
|
157 |
<select id="show-fan-faces" name="show-fan-faces">
|
@@ -215,15 +192,13 @@ if(isset($_POST['facebook-page-url']) && isset($_POST['fb-app-id'])){
|
|
215 |
fjs.parentNode.insertBefore(js, fjs);
|
216 |
}(document, 'script', 'facebook-jssdk'));
|
217 |
</script>
|
218 |
-
<div class="fb-like-box"
|
219 |
</p>
|
220 |
<?php } ?>
|
221 |
</div>
|
222 |
</div>
|
223 |
</div>
|
224 |
|
225 |
-
|
226 |
-
|
227 |
<!---------------- need help tab------------------------>
|
228 |
<div class="block ui-tabs-panel deactive" id="option-needhelp">
|
229 |
<div class="row">
|
@@ -262,500 +237,43 @@ if(isset($_POST['facebook-page-url']) && isset($_POST['fb-app-id'])){
|
|
262 |
<div class="block ui-tabs-panel deactive" id="option-ourproduct">
|
263 |
<div class="row-fluid pricing-table pricing-three-column">
|
264 |
<div class="plan-name centre">
|
265 |
-
|
266 |
-
|
267 |
</div>
|
268 |
<div class="plan-name">
|
269 |
-
<h2>Weblizar
|
270 |
-
<h6>Get The Premium
|
271 |
-
</div>
|
272 |
-
|
273 |
-
<div class="col-md-4 demoftr ">
|
274 |
-
<h2>Enigma</h2>
|
275 |
-
<div class="img-wrapper">
|
276 |
-
<div class="enigma_home_portfolio_showcase">
|
277 |
-
<img class="enigma_img_responsive ftr_img" src="<?php echo WEBLIZAR_FACEBOOK_PLUGIN_URL.'images/enigma.jpg' ;?>">
|
278 |
-
<div class="enigma_home_portfolio_showcase_overlay">
|
279 |
-
<div class="enigma_home_portfolio_showcase_overlay_inner ">
|
280 |
-
<div class="enigma_home_portfolio_showcase_icons">
|
281 |
-
<a title="Link" data-toggle="modal" data-target="#myModal" href="View Detail#">View Detail</a>
|
282 |
-
</div>
|
283 |
-
</div>
|
284 |
-
</div>
|
285 |
-
</div>
|
286 |
-
</div>
|
287 |
-
</div>
|
288 |
-
|
289 |
-
<!-- Modal -->
|
290 |
-
<div class="modal " id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
291 |
-
<div class="modal-dialog">
|
292 |
-
<div class="modal-content ">
|
293 |
-
<div class="modal-header ">
|
294 |
-
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
295 |
-
<h4 class="modal-title" id="myModalLabel"> <a class="pro-dir-button" data-toggle="modal" data-target="#myModalGreen" data-dismiss="modal" href="View Detail#" class="pro-dir-button"><i style="color:#000;line-height:1.5" class="fa fa-angle-right fa-2x"></i></a>
|
296 |
-
</h4>
|
297 |
-
</div>
|
298 |
-
<div class="modal-body">
|
299 |
-
<div class="col-md-6">
|
300 |
-
<img class="enigma_img_responsive ftr_img" src="<?php echo WEBLIZAR_FACEBOOK_PLUGIN_URL.'images/enigma.jpg' ;?>">
|
301 |
-
</div>
|
302 |
-
<div class="col-md-6">
|
303 |
-
<div class="theme-info">
|
304 |
-
<h3 class="theme-name">Enigma Pro Theme</h3>
|
305 |
-
<h4 class="theme-author">By <a href="http://weblizar.com/" title="Visit author homepage">weblizar</a></h4>
|
306 |
-
<p class="theme-description">Enigma is HTML5 & CSS3 Responsive WordPress Business theme with business style , 7 blog templates , 6 portfolio templates and many more</p>
|
307 |
-
<h4 style="margin-top:20px;">Features</h4>
|
308 |
-
<div class="col-md-6">
|
309 |
-
<div class="enigma_sidebar_link">
|
310 |
-
<p>
|
311 |
-
<i class="fa fa-angle-right"></i>Responsive Design
|
312 |
-
</p>
|
313 |
-
<p>
|
314 |
-
<i class="fa fa-angle-right"></i>Retina Ready
|
315 |
-
</p>
|
316 |
-
<p>
|
317 |
-
<i class="fa fa-angle-right"></i>Html5 & Css3
|
318 |
-
</p>
|
319 |
-
<p>
|
320 |
-
<i class="fa fa-angle-right"></i>Multi-purpose Theme
|
321 |
-
</p>
|
322 |
-
<p>
|
323 |
-
<i class="fa fa-angle-right"></i>Unlimited Color Schemes
|
324 |
-
</p>
|
325 |
-
<p>
|
326 |
-
<i class="fa fa-angle-right"></i>Multiple Templates
|
327 |
-
</p>
|
328 |
-
|
329 |
-
</div>
|
330 |
-
</div>
|
331 |
-
<div class="col-md-6">
|
332 |
-
<div class="enigma_sidebar_link">
|
333 |
-
<p>
|
334 |
-
<i class="fa fa-angle-right"></i>All Browser Support
|
335 |
-
</p>
|
336 |
-
<p>
|
337 |
-
<i class="fa fa-angle-right"></i>Powerful Option Panel
|
338 |
-
</p>
|
339 |
-
<p>
|
340 |
-
<i class="fa fa-angle-right"></i>Coming Soon Mode
|
341 |
-
</p>
|
342 |
-
<p>
|
343 |
-
<i class="fa fa-angle-right"></i>Custom Shortcode
|
344 |
-
</p>
|
345 |
-
<p>
|
346 |
-
<i class="fa fa-angle-right"></i>Isotope Effects and lightbox
|
347 |
-
</p>
|
348 |
-
<p>
|
349 |
-
<i class="fa fa-angle-right"></i>Fast & Friendly Support
|
350 |
-
</p>
|
351 |
-
</div>
|
352 |
-
</div>
|
353 |
-
<div class="col-md-12" style="margin-top:20px;">
|
354 |
-
<a class="btn btn-success btn-lg" target="_new" href="http://weblizar.com/preview/#enigma_pro">View Demo</a>
|
355 |
-
<a class="btn btn-danger btn-lg" target="_new" href="http://weblizar.com/themes/enigma-premium/">Purchase Now</a>
|
356 |
-
</div>
|
357 |
-
</div>
|
358 |
-
</div>
|
359 |
-
</div>
|
360 |
-
<div class="modal-footer">
|
361 |
-
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
362 |
-
</div>
|
363 |
-
</div>
|
364 |
-
</div>
|
365 |
</div>
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
<
|
373 |
-
<
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
</div>
|
378 |
-
</div>
|
379 |
-
</div>
|
380 |
-
</div>
|
381 |
</div>
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
<div class="col-md-6">
|
395 |
-
<img class="enigma_img_responsive ftr_img" src="http://weblizar.com/wp-content/themes/home-theme/images/green-lantern-premium-images/glp-slide-1.jpg">
|
396 |
-
</div>
|
397 |
-
<div class="col-md-6">
|
398 |
-
<div class="theme-info">
|
399 |
-
<h3 class="theme-name">Green Lantern Pro Theme</h3>
|
400 |
-
<h4 class="theme-author">By <a href="http://weblizar.com/" title="Visit author homepage">weblizar</a></h4>
|
401 |
-
<p class="theme-description">Green Lantern is a Full Responsive Multi-Purpose Theme suitable for Business, corporate office and others. Cool Blog Layout and full width page also present</p>
|
402 |
-
<h4 style="margin-top:20px;">Features</h4>
|
403 |
-
<div class="col-md-6">
|
404 |
-
<div class="enigma_sidebar_link">
|
405 |
-
<p>
|
406 |
-
<i class="fa fa-angle-right"></i>Responsive Design
|
407 |
-
</p>
|
408 |
-
<p>
|
409 |
-
<i class="fa fa-angle-right"></i>Retina Ready
|
410 |
-
</p>
|
411 |
-
<p>
|
412 |
-
<i class="fa fa-angle-right"></i>Html5 & Css3
|
413 |
-
</p>
|
414 |
-
<p>
|
415 |
-
<i class="fa fa-angle-right"></i>Multi-purpose Theme
|
416 |
-
</p>
|
417 |
-
<p>
|
418 |
-
<i class="fa fa-angle-right"></i>Unlimited Color Schemes
|
419 |
-
</p>
|
420 |
-
<p>
|
421 |
-
<i class="fa fa-angle-right"></i>Multiple Templates
|
422 |
-
</p>
|
423 |
-
</div>
|
424 |
-
</div>
|
425 |
-
<div class="col-md-6">
|
426 |
-
<div class="enigma_sidebar_link">
|
427 |
-
<p>
|
428 |
-
<i class="fa fa-angle-right"></i>All Browser Support
|
429 |
-
</p>
|
430 |
-
<p>
|
431 |
-
<i class="fa fa-angle-right"></i>Powerful Option Panel
|
432 |
-
</p>
|
433 |
-
<p>
|
434 |
-
<i class="fa fa-angle-right"></i>Coming Soon Mode
|
435 |
-
</p>
|
436 |
-
<p>
|
437 |
-
<i class="fa fa-angle-right"></i>Custom Shortcode
|
438 |
-
</p>
|
439 |
-
<p>
|
440 |
-
<i class="fa fa-angle-right"></i>Isotope Effects and lightbox
|
441 |
-
</p>
|
442 |
-
<p>
|
443 |
-
<i class="fa fa-angle-right"></i>Fast & Friendly Support
|
444 |
-
</p>
|
445 |
-
</div>
|
446 |
-
</div>
|
447 |
-
<p></p>
|
448 |
-
<div class="col-md-12" style="margin-top:20px;">
|
449 |
-
<a class="btn btn-success btn-lg" target="_new" href="http://weblizar.com/preview/#green_lantern">View Demo</a>
|
450 |
-
<a class="btn btn-danger btn-lg" target="_new" href="http://weblizar.com/themes/green-lantern-premium-theme/">Purchase Now</a>
|
451 |
-
</div>
|
452 |
-
</div>
|
453 |
-
</div>
|
454 |
-
</div>
|
455 |
-
<div class="modal-footer">
|
456 |
-
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
457 |
-
|
458 |
-
</div>
|
459 |
</div>
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
<div class="col-md-4 demoftr ">
|
465 |
-
<h2>Weblizar</h2>
|
466 |
-
<div class="img-wrapper">
|
467 |
-
<div class="enigma_home_portfolio_showcase">
|
468 |
-
<img class="enigma_img_responsive ftr_img" src="http://weblizar.com/wp-content/uploads/2014/06/screenshot1.jpg">
|
469 |
-
<div class="enigma_home_portfolio_showcase_overlay">
|
470 |
-
<div class="enigma_home_portfolio_showcase_overlay_inner ">
|
471 |
-
<div class="enigma_home_portfolio_showcase_icons">
|
472 |
-
<a title="Link" data-toggle="modal" data-target="#myModalweblizar" href="View Detail#">View Detail</a>
|
473 |
-
</div>
|
474 |
-
</div>
|
475 |
-
</div>
|
476 |
-
</div>
|
477 |
-
</div>
|
478 |
-
</div>
|
479 |
-
|
480 |
-
<!-- Modal -->
|
481 |
-
<div class="modal" id="myModalweblizar" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
482 |
-
<div class="modal-dialog">
|
483 |
-
<div class="modal-content ">
|
484 |
-
<div class="modal-header ">
|
485 |
-
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
486 |
-
<h4 class="modal-title" id="myModalLabel"><a data-toggle="modal" data-target="#myModalGreen" data-dismiss="modal" href="View Detail#" class="pro-dir-button"><i style="color:#000;line-height:1.5" class="fa fa-angle-left fa-2x"></i></a> <a data-toggle="modal" data-target="#myModallightbox" data-dismiss="modal" href="View Detail#" class="pro-dir-button"><i style="color:#000;line-height:1.5" class="fa fa-angle-right fa-2x"></i></a>
|
487 |
-
</h4>
|
488 |
-
</div>
|
489 |
-
<div class="modal-body">
|
490 |
-
<div class="col-md-6">
|
491 |
-
<img class="enigma_img_responsive ftr_img" src="http://weblizar.com/wp-content/uploads/2014/06/screenshot1.jpg">
|
492 |
-
</div>
|
493 |
-
<div class="col-md-6">
|
494 |
-
<div class="theme-info">
|
495 |
-
<h3 class="theme-name">Weblizar Pro Theme</h3>
|
496 |
-
<h4 class="theme-author">By <a href="http://weblizar.com/" title="Visit author homepage">weblizar</a></h4>
|
497 |
-
<p class="theme-description">Responsive Multi-Purpose Theme suitable for Business, corporate office and others .Cool Blog Layout and full width page.You can also use it for portfolio, blogging or any type of site. Built with Twitter bootstrap</p>
|
498 |
-
<h4 style="margin-top:20px;">Features</h4>
|
499 |
-
<div class="col-md-6">
|
500 |
-
<div class="enigma_sidebar_link">
|
501 |
-
<p>
|
502 |
-
<i class="fa fa-angle-right"></i>Responsive Design
|
503 |
-
</p>
|
504 |
-
<p>
|
505 |
-
<i class="fa fa-angle-right"></i>Retina Ready
|
506 |
-
</p>
|
507 |
-
<p>
|
508 |
-
<i class="fa fa-angle-right"></i>Html5 & Css3
|
509 |
-
</p>
|
510 |
-
<p>
|
511 |
-
<i class="fa fa-angle-right"></i>Multi-purpose Theme
|
512 |
-
</p>
|
513 |
-
<p>
|
514 |
-
<i class="fa fa-angle-right"></i>Unlimited Color Schemes
|
515 |
-
</p>
|
516 |
-
<p>
|
517 |
-
<i class="fa fa-angle-right"></i>Multiple Templates
|
518 |
-
</p>
|
519 |
-
</div>
|
520 |
-
</div>
|
521 |
-
<div class="col-md-6">
|
522 |
-
<div class="enigma_sidebar_link">
|
523 |
-
<p>
|
524 |
-
<i class="fa fa-angle-right"></i>All Browser Support
|
525 |
-
</p>
|
526 |
-
<p>
|
527 |
-
<i class="fa fa-angle-right"></i>Powerful Option Panel
|
528 |
-
</p>
|
529 |
-
<p>
|
530 |
-
<i class="fa fa-angle-right"></i>Coming Soon Mode
|
531 |
-
</p>
|
532 |
-
<p>
|
533 |
-
<i class="fa fa-angle-right"></i>Custom Shortcode
|
534 |
-
</p>
|
535 |
-
<p>
|
536 |
-
<i class="fa fa-angle-right"></i>Isotope Effects and lightbox
|
537 |
-
</p>
|
538 |
-
<p>
|
539 |
-
<i class="fa fa-angle-right"></i>Fast & Friendly Support
|
540 |
-
</p>
|
541 |
-
</div>
|
542 |
-
</div>
|
543 |
-
<p></p>
|
544 |
-
<div class="col-md-12" style="margin-top:20px;">
|
545 |
-
<a class="btn btn-success btn-lg" target="_new" href="http://weblizar.com/preview/#weblizar_pro">View Demo</a>
|
546 |
-
<a class="btn btn-danger btn-lg" target="_new" href="http://weblizar.com/themes/weblizar-premium-theme/">Purchase Now</a>
|
547 |
-
</div>
|
548 |
-
</div>
|
549 |
-
</div>
|
550 |
-
</div>
|
551 |
-
<div class="modal-footer">
|
552 |
-
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
553 |
-
</div>
|
554 |
-
</div>
|
555 |
-
</div>
|
556 |
-
</div>
|
557 |
-
</div>
|
558 |
-
|
559 |
-
|
560 |
-
<div class="row-fluid pricing-table pricing-three-column">
|
561 |
-
<div class="plan-name">
|
562 |
-
<h2>Weblizar's Responsive Wordpress Plugins</h2>
|
563 |
-
<h6>Get Premium Plugin & Create Beautiful Galleries and Sideshow</h6>
|
564 |
-
</div>
|
565 |
-
<div class="col-md-6 demoftr">
|
566 |
-
<h2>Lightbox Slider Pro</h2>
|
567 |
-
<div class="img-wrapper">
|
568 |
-
<div class="enigma_home_portfolio_showcase">
|
569 |
-
<img class="enigma_img_responsive ftr_img" src="http://weblizar.com/wp-content/themes/home-theme/images/lightbox/fancy.jpg">
|
570 |
-
<div class="enigma_home_portfolio_showcase_overlay">
|
571 |
-
<div class="enigma_home_portfolio_showcase_overlay_inner ">
|
572 |
-
<div class="enigma_home_portfolio_showcase_icons">
|
573 |
-
<a title="Link" data-toggle="modal" data-target="#myModallightbox" href="View Detail#">View Detail</a>
|
574 |
-
</div>
|
575 |
-
</div>
|
576 |
-
</div>
|
577 |
-
</div>
|
578 |
-
</div>
|
579 |
-
</div>
|
580 |
-
|
581 |
-
<!-- Modal -->
|
582 |
-
<div class="modal " id="myModallightbox" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
583 |
-
<div class="modal-dialog">
|
584 |
-
<div class="modal-content ">
|
585 |
-
<div class="modal-header ">
|
586 |
-
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
587 |
-
<h4 class="modal-title" id="myModalLabel"> <a class="pro-dir-button" data-toggle="modal" data-target="#myModalweblizar" data-dismiss="modal" href="View Detail#" class="pro-dir-button"><i style="color:#000;line-height:1.5" class="fa fa-angle-left fa-2x"></i></a> <a class="pro-dir-button" data-toggle="modal" data-target="#myModalresponsive" data-dismiss="modal" href="View Detail#" class="pro-dir-button"><i style="color:#000;line-height:1.5" class="fa fa-angle-right fa-2x"></i></a>
|
588 |
-
</h4>
|
589 |
-
</div>
|
590 |
-
<div class="modal-body">
|
591 |
-
<div class="col-md-6">
|
592 |
-
<img class="enigma_img_responsive ftr_img" src="http://weblizar.com/wp-content/themes/home-theme/images/lightbox/fancy.jpg">
|
593 |
-
</div>
|
594 |
-
<div class="col-md-6">
|
595 |
-
<div class="theme-info">
|
596 |
-
<h3 class="theme-name">LightBox Slider Pro</h3>
|
597 |
-
<h4 class="theme-author">By <a href="http://weblizar.com/" title="Visit author homepage">weblizar</a></h4>
|
598 |
-
<p class="theme-description">Lightbox Slider is premium WordPress plugin to create gallery with lightbox slide</p>
|
599 |
-
<h4 style="margin-top:20px;">Features</h4>
|
600 |
-
<div class="col-md-6">
|
601 |
-
<div class="enigma_sidebar_link">
|
602 |
-
<p>
|
603 |
-
<i class="fa fa-angle-right"></i>Responsive Design
|
604 |
-
</p>
|
605 |
-
<p>
|
606 |
-
<i class="fa fa-angle-right"></i>Ultimate Lightbox
|
607 |
-
</p>
|
608 |
-
<p>
|
609 |
-
<i class="fa fa-angle-right"></i>5 Gallery Layout
|
610 |
-
</p>
|
611 |
-
<p>
|
612 |
-
<i class="fa fa-angle-right"></i>500+ Fonts Styles
|
613 |
-
</p>
|
614 |
-
<p>
|
615 |
-
<i class="fa fa-angle-right"></i>10 Color Opacity
|
616 |
-
</p>
|
617 |
-
<p>
|
618 |
-
<i class="fa fa-angle-right"></i>8 Lightbox
|
619 |
-
</p>
|
620 |
-
|
621 |
-
</div>
|
622 |
-
</div>
|
623 |
-
<div class="col-md-6">
|
624 |
-
<div class="enigma_sidebar_link">
|
625 |
-
<p>
|
626 |
-
<i class="fa fa-angle-right"></i>Gallery Shortcode
|
627 |
-
</p>
|
628 |
-
<p>
|
629 |
-
<i class="fa fa-angle-right"></i>Unlimited Color Schemes
|
630 |
-
</p>
|
631 |
-
<p>
|
632 |
-
<i class="fa fa-angle-right"></i>Retina Ready
|
633 |
-
</p>
|
634 |
-
<p>
|
635 |
-
<i class="fa fa-angle-right"></i>Isotope Effects
|
636 |
-
</p>
|
637 |
-
<p>
|
638 |
-
<i class="fa fa-angle-right"></i>All Browser Support
|
639 |
-
</p>
|
640 |
-
<p>
|
641 |
-
<i class="fa fa-angle-right"></i>Fast & Friendly Support
|
642 |
-
</p>
|
643 |
-
</div>
|
644 |
-
</div>
|
645 |
-
<div class="col-md-12" style="margin-top:20px;">
|
646 |
-
<a class="btn btn-success btn-lg" target="_new" href="http://weblizar.com/lightbox-slider-pro/">View Demo</a>
|
647 |
-
<a class="btn btn-danger btn-lg" target="_new" href="http://weblizar.com/lightbox-slider-pro/">Purchase Now</a>
|
648 |
-
</div>
|
649 |
-
</div>
|
650 |
-
</div>
|
651 |
-
</div>
|
652 |
-
<div class="modal-footer">
|
653 |
-
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
654 |
-
|
655 |
-
</div>
|
656 |
-
</div>
|
657 |
-
</div>
|
658 |
-
</div>
|
659 |
-
|
660 |
-
<div class="col-md-6 demoftr">
|
661 |
-
<h2>Reponsive Photo Gallery</h2>
|
662 |
-
<div class="img-wrapper">
|
663 |
-
<div class="enigma_home_portfolio_showcase">
|
664 |
-
<img class="enigma_img_responsive ftr_img" src="http://weblizar.com/wp-content/themes/home-theme/images/gallery-pro.png">
|
665 |
-
<div class="enigma_home_portfolio_showcase_overlay">
|
666 |
-
<div class="enigma_home_portfolio_showcase_overlay_inner ">
|
667 |
-
<div class="enigma_home_portfolio_showcase_icons">
|
668 |
-
<a title="Link" data-toggle="modal" data-target="#myModalresponsive" href="View Detail#">View Detail</a>
|
669 |
-
</div>
|
670 |
-
</div>
|
671 |
-
</div>
|
672 |
-
</div>
|
673 |
-
</div>
|
674 |
-
|
675 |
-
</div>
|
676 |
-
<!-- Modal -->
|
677 |
-
<div class="modal " id="myModalresponsive" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
678 |
-
<div class="modal-dialog">
|
679 |
-
<div class="modal-content ">
|
680 |
-
<div class="modal-header ">
|
681 |
-
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
682 |
-
<h4 class="modal-title" id="myModalLabel"> <a class="pro-dir-button" data-toggle="modal" data-target="#myModallightbox" data-dismiss="modal" href="View Detail#" class="pro-dir-button"><i style="color:#000;line-height:1.5" class="fa fa-angle-left fa-2x"></i></a>
|
683 |
-
</h4>
|
684 |
-
</div>
|
685 |
-
<div class="modal-body">
|
686 |
-
<div class="col-md-6">
|
687 |
-
<img class="enigma_img_responsive ftr_img" src="http://weblizar.com/wp-content/themes/home-theme/images/gallery-pro.png">
|
688 |
-
</div>
|
689 |
-
<div class="col-md-6">
|
690 |
-
<div class="theme-info">
|
691 |
-
<h3 class="theme-name">Responsive Photo Gallery</h3>
|
692 |
-
<h4 class="theme-author">By <a href="http://weblizar.com/" title="Visit author homepage">weblizar</a></h4>
|
693 |
-
<p class="theme-description">A Highly Animated Image Gallery Plugin For WordPress</p>
|
694 |
-
<h4 style="margin-top:20px;">Features</h4>
|
695 |
-
<div class="col-md-6">
|
696 |
-
<div class="enigma_sidebar_link">
|
697 |
-
<p>
|
698 |
-
<i class="fa fa-angle-right"></i>Responsive Design
|
699 |
-
</p>
|
700 |
-
<p>
|
701 |
-
<i class="fa fa-angle-right"></i>8 Animation Effect
|
702 |
-
</p>
|
703 |
-
<p>
|
704 |
-
<i class="fa fa-angle-right"></i>5 Gallery Layout
|
705 |
-
</p>
|
706 |
-
<p>
|
707 |
-
<i class="fa fa-angle-right"></i>500+ Fonts Styles
|
708 |
-
</p>
|
709 |
-
<p>
|
710 |
-
<i class="fa fa-angle-right"></i>10 Color Opacity
|
711 |
-
</p>
|
712 |
-
<p>
|
713 |
-
<i class="fa fa-angle-right"></i>2 Lightbox
|
714 |
-
</p>
|
715 |
-
|
716 |
-
</div>
|
717 |
-
</div>
|
718 |
-
<div class="col-md-6">
|
719 |
-
<div class="enigma_sidebar_link">
|
720 |
-
<p>
|
721 |
-
<i class="fa fa-angle-right"></i>Gallery Shortcode
|
722 |
-
</p>
|
723 |
-
<p>
|
724 |
-
<i class="fa fa-angle-right"></i>Unlimited Color Schemes
|
725 |
-
</p>
|
726 |
-
<p>
|
727 |
-
<i class="fa fa-angle-right"></i>Retina Ready
|
728 |
-
</p>
|
729 |
-
<p>
|
730 |
-
<i class="fa fa-angle-right"></i>Isotope Effects
|
731 |
-
</p>
|
732 |
-
<p>
|
733 |
-
<i class="fa fa-angle-right"></i>All Browser Support
|
734 |
-
</p>
|
735 |
-
<p>
|
736 |
-
<i class="fa fa-angle-right"></i>Fast & Friendly Support
|
737 |
-
</p>
|
738 |
-
</div>
|
739 |
-
</div>
|
740 |
-
<div class="col-md-12" style="margin-top:20px;">
|
741 |
-
<a class="btn btn-success btn-lg" target="_new" href="http://weblizar.com/plugins/responsive-photo-gallery-pro/">View Demo</a>
|
742 |
-
<a class="btn btn-danger btn-lg" target="_new" href="http://weblizar.com/plugins/responsive-photo-gallery-pro/">Purchase Now</a>
|
743 |
-
</div>
|
744 |
-
</div>
|
745 |
-
</div>
|
746 |
-
</div>
|
747 |
-
<div class="modal-footer">
|
748 |
-
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
749 |
-
|
750 |
-
</div>
|
751 |
</div>
|
752 |
-
</div>
|
753 |
</div>
|
754 |
-
|
755 |
-
</div>
|
756 |
<div class="plan-name centre">
|
757 |
-
|
758 |
-
<a href="http://weblizar.com/" target="_new" class="button button-primary button-hero">VISIT OUR SITE</a>
|
759 |
-
</div>
|
760 |
</div>
|
761 |
</div>
|
53 |
$FacebookSettingsArray = serialize(
|
54 |
array(
|
55 |
'FacebookPageUrl' => $_POST['facebook-page-url'],
|
56 |
+
'ColorScheme' => '',
|
57 |
'Header' => $_POST['show-widget-header'],
|
58 |
'Stream' => $_POST['show-live-stream'],
|
59 |
'Width' => $_POST['widget-width'],
|
77 |
<?php
|
78 |
$FacebookSettings = unserialize(get_option("weblizar_facebook_shortcode_settings"));
|
79 |
//load default values OR saved values
|
|
|
|
|
|
|
|
|
|
|
80 |
$ForceWall = 'false';
|
81 |
if ( isset( $FacebookSettings[ 'ForceWall' ] ) ) {
|
82 |
$ForceWall = $FacebookSettings[ 'ForceWall' ];
|
129 |
</p>
|
130 |
<br>
|
131 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
<p>
|
133 |
<label><?php _e( 'Show Faces', WEBLIZAR_FACEBOOK_TEXT_DOMAIN); ?></label>
|
134 |
<select id="show-fan-faces" name="show-fan-faces">
|
192 |
fjs.parentNode.insertBefore(js, fjs);
|
193 |
}(document, 'script', 'facebook-jssdk'));
|
194 |
</script>
|
195 |
+
<div class="fb-like-box" data-small-header="<?php echo $Header; ?>" data-height="<?php echo $Height; ?>" data-href="<?php echo $FacebookPageUrl; ?>" data-show-border="<?php echo $ShowBorder; ?>" data-show-faces="<?php echo $ShowFaces; ?>" data-stream="<?php echo $Stream; ?>" data-width="<?php echo $Width; ?>" data-force-wall="<?php echo $ForceWall; ?>"></div>
|
196 |
</p>
|
197 |
<?php } ?>
|
198 |
</div>
|
199 |
</div>
|
200 |
</div>
|
201 |
|
|
|
|
|
202 |
<!---------------- need help tab------------------------>
|
203 |
<div class="block ui-tabs-panel deactive" id="option-needhelp">
|
204 |
<div class="row">
|
237 |
<div class="block ui-tabs-panel deactive" id="option-ourproduct">
|
238 |
<div class="row-fluid pricing-table pricing-three-column">
|
239 |
<div class="plan-name centre">
|
240 |
+
<a href="http://weblizar.com" target="_new" style="margin-bottom:10px;textt-align:center"><img src="http://weblizar.com/wp-content/themes/home-theme/images/weblizar2.png"></a>
|
|
|
241 |
</div>
|
242 |
<div class="plan-name">
|
243 |
+
<h2>Weblizar Responsive WordPress Theme</h2>
|
244 |
+
<h6>Get The Premium, And Create your website Beautifully. </h6>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
</div>
|
246 |
+
<div class="section container">
|
247 |
+
<div class="col-lg-6">
|
248 |
+
<h2>Premium Themes </h2><hr>
|
249 |
+
<ol id="weblizar_product">
|
250 |
+
<li><a href="http://weblizar.com/themes/enigma-premium/">Enigma </a> </li>
|
251 |
+
<li><a href="http://weblizar.com/themes/weblizar-premium-theme/">Weblizar </a></li>
|
252 |
+
<li><a href="http://weblizar.com/themes/guardian-premium-theme/">Guardian </a></li>
|
253 |
+
<li><a href="http://weblizar.com/plugins/green-lantern-premium-theme/">Green-lantern</a> </li>
|
254 |
+
<li><a href="https://weblizar.com/themes/creative-premium-theme/">Creative </a> </li>
|
255 |
+
<li><a href="https://weblizar.com/themes/incredible-premium-theme/">Incredible </a></li>
|
256 |
+
</ol>
|
|
|
|
|
|
|
|
|
257 |
</div>
|
258 |
+
<div class="col-lg-6">
|
259 |
+
<h2>Premium Plugins</h2><hr>
|
260 |
+
<ol id="weblizar_product">
|
261 |
+
<li><a href="http://weblizar.com/plugins/responsive-photo-gallery-pro/">Responsive Photo Gallery</a></li>
|
262 |
+
<li><a href="http://weblizar.com/plugins/ultimate-responsive-image-slider-pro/">Ultimate Responsive Image Slider</a></li>
|
263 |
+
<li><a href="http://weblizar.com/plugins/responsive-portfolio-pro/">Responsive Portfolio</a></li>
|
264 |
+
<li><a href="http://weblizar.com/plugins/photo-video-link-gallery-pro//">Photo Video Link Gallery</a></li>
|
265 |
+
<li><a href="http://weblizar.com/plugins/lightbox-slider-pro/">Lightbox Slider</a></li>
|
266 |
+
<li><a href="http://weblizar.com/plugins/flickr-album-gallery-pro/">Flickr Album Gallery</a></li>
|
267 |
+
<li><a href="https://weblizar.com/plugins/instagram-shortcode-and-widget-pro/">Instagram Shortcode & Widget</a></li>
|
268 |
+
<li><a href="https://weblizar.com/plugins/instagram-gallery-pro/">Instagram Gallery</a></li>
|
269 |
+
</ol>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
270 |
</div>
|
271 |
+
</div>
|
272 |
+
<div id="product_decs" class="section container">
|
273 |
+
<p>Note: More details to click on weblizar Products site link are below given view site button.</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
</div>
|
|
|
275 |
</div>
|
|
|
|
|
276 |
<div class="plan-name centre">
|
277 |
+
<a class="btn btn-primary btn-lg" target="_new" href="https://www.weblizar.com">View Site</a>
|
|
|
|
|
278 |
</div>
|
279 |
</div>
|
images/Thumbs.db
DELETED
Binary file
|
readme.txt
CHANGED
@@ -3,18 +3,18 @@ Contributors: weblizar
|
|
3 |
Donate link: http://www.weblizar.com/
|
4 |
Tags: facebook, facebook like, facebook widget, facebook page, facebook share, facebook share button, Like, like button, Share, share button, facebook fanbox, facebook page, page, plugin, posts, publish Facebook, sidebar, social, Social Plugins, facebook embed, facebook events, Facebook feed, Like Button Widget,wall, facebook wall, facebook photos, share, tweets, facebook share, facebook news, news, feeds
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
-
Facebook
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
Facebook
|
16 |
|
17 |
-
Using **Facebook
|
18 |
|
19 |
Using **[FBW]** shortcode you can publish your facbook like page on any Page or Post.
|
20 |
|
@@ -30,13 +30,9 @@ Check screentshots section.
|
|
30 |
* Facebook Page Like Button
|
31 |
* Facebook Page Live Stream
|
32 |
* Facebook Page Fan Faces
|
33 |
-
* Facebook Page Border Option
|
34 |
* Facebook Page Custom Height & Width Option
|
35 |
-
* Compatible With All Mobile Tablets Device
|
36 |
-
* All Browser Support
|
37 |
-
* Responsive Facebook Wall
|
38 |
* Latest Facebook Wall Feeds Displays
|
39 |
-
*
|
40 |
|
41 |
### Language Contributors
|
42 |
|
@@ -88,6 +84,10 @@ Please use WordPress support forum to ask any query regarding any issue.
|
|
88 |
|
89 |
For more information, see [Weblizar](http://wwww.weblizar.com/) .
|
90 |
|
|
|
|
|
|
|
|
|
91 |
= 1.5 14/07/2015 =
|
92 |
* Resolved small bug issue
|
93 |
|
@@ -130,14 +130,11 @@ For more information, see [Weblizar](http://wwww.weblizar.com/) .
|
|
130 |
* Remove small script error
|
131 |
|
132 |
= 0.4 =
|
133 |
-
|
134 |
* Remove Small bug.
|
135 |
|
136 |
= 0.2 =
|
137 |
-
|
138 |
* Now compatible with all mobile devices.
|
139 |
|
140 |
= 0.1 =
|
141 |
-
|
142 |
* Feature - Facebook Widget
|
143 |
* Feature - Facebook Widget Settings Panel
|
3 |
Donate link: http://www.weblizar.com/
|
4 |
Tags: facebook, facebook like, facebook widget, facebook page, facebook share, facebook share button, Like, like button, Share, share button, facebook fanbox, facebook page, page, plugin, posts, publish Facebook, sidebar, social, Social Plugins, facebook embed, facebook events, Facebook feed, Like Button Widget,wall, facebook wall, facebook photos, share, tweets, facebook share, facebook news, news, feeds
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 4.3
|
7 |
+
Stable tag: 1.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
11 |
+
Facebook Like Box plugin comes with Facebook Like Box Widget & Shortcode.
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
Facebook like box pluign to display facebook page live stream & friends on WordPress blog.
|
16 |
|
17 |
+
Using **Facebook Like Box Plugin** facebook widget publish your facbook page post & show your facebook page fans.
|
18 |
|
19 |
Using **[FBW]** shortcode you can publish your facbook like page on any Page or Post.
|
20 |
|
30 |
* Facebook Page Like Button
|
31 |
* Facebook Page Live Stream
|
32 |
* Facebook Page Fan Faces
|
|
|
33 |
* Facebook Page Custom Height & Width Option
|
|
|
|
|
|
|
34 |
* Latest Facebook Wall Feeds Displays
|
35 |
+
* Like & Share Button for each feed in likebox
|
36 |
|
37 |
### Language Contributors
|
38 |
|
84 |
|
85 |
For more information, see [Weblizar](http://wwww.weblizar.com/) .
|
86 |
|
87 |
+
= 1.6 26/08/2015 =
|
88 |
+
* Update: widget & shortcode theme setting removed
|
89 |
+
* Update: Header show/hide option depricated in API v2.4
|
90 |
+
|
91 |
= 1.5 14/07/2015 =
|
92 |
* Resolved small bug issue
|
93 |
|
130 |
* Remove small script error
|
131 |
|
132 |
= 0.4 =
|
|
|
133 |
* Remove Small bug.
|
134 |
|
135 |
= 0.2 =
|
|
|
136 |
* Now compatible with all mobile devices.
|
137 |
|
138 |
= 0.1 =
|
|
|
139 |
* Feature - Facebook Widget
|
140 |
* Feature - Facebook Widget Settings Panel
|