Responsive Image Slider premium plugin is now available for WordPress

A Perfect Responsive Image Slider plugin for WordPress. Contains 5 types of slider layout. Tested on all browser like Chrome, Mozilla, Safari, IE etc..

 

Features

  • Responsive Design
  • 5 Slider Layout
  • Unlimited Color Scheme
  • Touch Slider
  • Full-Screen slideshow
  • Thumbnail Slider
  • Lightbox Integrated
  • External Link Button
  • Carousel Slider
  • All Gallery Shortcode
  • Each Gallery has Unique Shortcode
  • Drag and Drop image Position
  • Multiple Image uploader
  • Shortcode Button on post or page
  • Unique settings for each gallery
  • Auto Play Pause
  • All Browser Compatible

 

Continue reading “Responsive Image Slider premium plugin is now available for WordPress”

Get Free Responsive Image Slider Plugin For WordPress

Live Demo
Download

Ultimate responsive image slider a fully responsive slider plugin for WordPress blog users. You can add infinite image slides in a single slider using multiple image uploader. You can publish unlimited slider on your blog.

Images slider has various settings like customizable height and width, auto play slides, slide thumbnails, navigation buttons and many more. You can configure each slider setting individually and accordingly to you. You can show slider within the Page or Post content.

Using [URIS id=123] shortcode, you can publish image slider in any Page or Post in your WordPress sites.

 

Continue reading “Get Free Responsive Image Slider Plugin For WordPress”

Happy New Year 2015

We wish to all our valuable customers, users, friends and family a very Happy New Year 2015.

May God spread prosperity and joy in your life on this New Year and fulfill all your dreams. You always look ahead this New Year without being held back by any backlog so that when you finally reach your destination you can look back upon the memories with fondness and at leisure.

Let us leave behind sadness, regrets and painful moments and have a new start full of joy this new year. This New Year, may you change your direction and not dates, change your commitments and not the Calendar, change your attitude and not the actions, and bring about a change in your faith, your force and your focus and not the fruit. May you live up to the promises you have made and may you create for you and your loved ones the most Happy New Year ever.

Tear Weblizar

Get Youtube & Vimeo Video URL

Getting the video URL of a  YouTube & Vimeo video such an easy task.

The purpose of article to help non technical users to easily find out the method of video URLs. We are explaining the article into Two parts, part one will tell you about how to get YouTube video URL?  and part two will tech you how do i get Vimeo video URL?

So, Let start with –

Part One : How to get a YouTube video URL?

Firstly go on YouTube official website. Like i am trying to search “Taylor Swift – Blank Space” a music video song and it’s URL.

Continue reading “Get Youtube & Vimeo Video URL”

Weblizar Coupon Code

After a tremendous response by our customers we have decided to provide a great discount offer in this Christmas & Happy New Year 2015 Season for the whole month.

 

So use “MERRYCHRISTMAS” coupon code to buy any product on Weblizar and get 10% OFF.

 

Wishing you a very Merry Christmas & Happy New Year 2015! May it bring you joy, happiness and everything else you deserve.

 

With Best Wishes

Team Weblizar

 

Guardian WordPress Theme

New Clean Responsive Design. Easy  to Setup Lightweight Theme with quick support.Theme is good to create for Corporate looking website owners.

Features:

  1. Responsive Design
  2. Featured Slider
  3. Four Column Layout
  4. Multiple Page Template
  5. Sidebar Widget Footer Widget
  6. Flickr Widget to show your Flickr photo galleries.
  7. Breadcrumbs and much More.

 

Try Live Demo

How to convert Hex code to RGB code in php

Here Are some Steps to convert Hex color code to RGB color Code

Step-1 :  First write your php function for convert Hex color

function hex2rgb($hex) {
$hex = str_replace("#", "", $hex);

if(strlen($hex) == 3) {
$r = hexdec(substr($hex,0,1).substr($hex,0,1));
$g = hexdec(substr($hex,1,1).substr($hex,1,1));
$b = hexdec(substr($hex,2,1).substr($hex,2,1));
} else {
$r = hexdec(substr($hex,0,2));
$g = hexdec(substr($hex,2,2));
$b = hexdec(substr($hex,4,2));
}
$rgb = array($r, $g, $b);

return $rgb; // returns an array with the rgb values
}

Step-2  :  Call this function everywhere where you want to get converted hex color code here an example that how to call this fucntion

$Hex_color = "#31A#DD";
$RGB_color = hex2rgb($Hex_color);

Step-3  :  Echo this variable at where there you want to show rgb color but first implode this variable using comma here an example

$Final_Rgb_color = implode(", ", $RGB_color);

Step-4 :  Use this code in style , Here is an example

<style>

.container {

background : rgba(<?php echo $Final_Rgb_color;  ?>,1);

}

</style>

Thanks

Posted in Php

Make Child Theme

Howdy..

Today , Everybody want their Themes should be customized according their requirements . Customization can be done either doing HARD-CODING  with in the themes.

But I’d suggest you all to Go with Child Theme.

What is Child Theme : Child Theme is a Modified Version of The Parent Theme without modifying the Parent Theme’s Code.

Why We need this : As I stated above , In child we don’t edit or modify the line of code in parent theme and this help us , when we update our parent theme we do not lose the modification we have done in the child theme.

Okay Then It is time to start the making our own new Child Theme.

Step 1.) Here I’ve named my new Child Theme with Weblizar-Child , Because It is the Child of Theme Weblizar. Here we go, Create a New Folder called “weblizar-child” [ you can chose your own name ] .

Child Theme

Step 2.) Now make a new Stylesheet for the Child Theme, this Stylesheet will import the Whole CSS of the Parent Theme Weblizar 

stylesheet

Step 3.) Open up above created Stylesheet -> style.css, In the header of the stylesheet. Add THEME NAME: , Template: And also Import Parent Stylesheet into Child Themes style.css

ct3 

Step 4.) Add Screenshot with Resolution of 880 x 660 px for your Child Theme. That’s It, Now Go to your WordPress Admin Dashboard. You can See your new Child Theme.

Activate Child Theme

This was a basic Tutorial for how to a Make Child Theme, You can modify your child theme both in code & in styles.

Thanks

For more amazing blog posts, follow our blog page.

 

Get Facebook APP ID

Facebook Application ID used to authenticate into different types of Web Application, System Application. These application uses Facebook API and function to get authenticate user account information. And fetch data from Users Facebook account and usage internally according to Apps. In below tutorial, we are explaining how to get your Facebook App ID with an easy going method. Tutorial explaining the all simple steps in descriptive information manner with a screenshot. So try out our simple tutorial

Read below step by step tutorial to get your own Facebook App ID

Step – 1


First login to your Facebook account. Click here to login.

Step – 2


Follow this URL to create your own APP ID. Use below screenshot for more instructions.

facebook for developers get facebook app id

Add a new App.

create new app get facebook app id

Step – 3


Fill out the App details in the pop-up window.

I – Display Name / App Name – this is your Facebook app name.

II – Contact Email – Put your work email or your personal Email to get notified by Facebook.

Then click on Create App ID button to create your app same as below screenshot displayed.

name your app get facebook app id

Step – 4


In the last step, our Facebook App has been created successfully. After this Facebook will auto redirect you to your App Dashboard page.

Here you find your newly created APP ID for your Facebook application. Check screenshot to get you APP ID.

get facebook app id

Thanks for reading our article about “how to get Facebook App ID?”.

Kindest Regards

Weblizar WordPress Premium Themes & Plugins