Version Description
02/04/2016
Download this release
Release Info
Developer | weblizar |
Plugin | Feed & LikeBox For Facebook |
Version | 2.4.2 |
Comparing to | |
See all releases |
Code changes from version 2.4.1 to 2.4.2
- facebook-by-weblizar.php +1 -1
- help-body - Copy.php +0 -738
- readme.txt +4 -1
facebook-by-weblizar.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Facebook By WebLizar
|
4 |
-
* Version: 2.4.
|
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
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Facebook By WebLizar
|
4 |
+
* Version: 2.4.2
|
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
|
help-body - Copy.php
DELETED
@@ -1,738 +0,0 @@
|
|
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>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ 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.5
|
6 |
Tested up to: 4.4.2
|
7 |
-
Stable tag: 2.4.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -84,6 +84,9 @@ Please use WordPress support forum to ask any query regarding any issue.
|
|
84 |
|
85 |
For more information, see [Weblizar](http://wwww.weblizar.com/) .
|
86 |
|
|
|
|
|
|
|
87 |
= 2.4.1 14/03/2016 =
|
88 |
* Small Bug Fixed
|
89 |
|
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.5
|
6 |
Tested up to: 4.4.2
|
7 |
+
Stable tag: 2.4.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
84 |
|
85 |
For more information, see [Weblizar](http://wwww.weblizar.com/) .
|
86 |
|
87 |
+
= 2.4.2 02/04/2016 =
|
88 |
+
* Small Bug Fixed
|
89 |
+
|
90 |
= 2.4.1 14/03/2016 =
|
91 |
* Small Bug Fixed
|
92 |
|