Version Description
- Added - Detailed documentation for all addon elements
- Added - Plugin options panel for enabling or disabling addons along with other options.
- Added - Ability to enter Custom CSS in plugin options
- Added - Default theme color option for addons
- Added - Support for lightweight Portfolio Post Type plugin. Jetpack custom post types module no longer recommended.
- Fixed - The grid heading was not being displayed
- Some styling improvements and fixes
Download this release
Release Info
Developer | livemesh |
Plugin | Addons for WPBakery Page Builder |
Version | 1.5 |
Comparing to | |
See all releases |
Code changes from version 1.4 to 1.5
- admin/admin-ajax.php +169 -0
- admin/admin-init.php +193 -0
- admin/assets/css/documentation.css +417 -0
- admin/assets/css/documentation.css.map +7 -0
- admin/assets/css/documentation.scss +506 -0
- admin/assets/css/lvca-admin-page.css +418 -0
- admin/assets/css/lvca-admin-page.css.map +7 -0
- admin/assets/css/lvca-admin-page.scss +428 -0
- admin/assets/css/lvca-admin.css +151 -0
- admin/assets/css/lvca-admin.css.map +7 -0
- admin/assets/css/lvca-admin.scss +191 -0
- admin/assets/css/lvca-elements.css +379 -0
- admin/assets/css/lvca-elements.css.map +7 -0
- admin/assets/css/lvca-elements.scss +370 -0
- admin/assets/css/premium-upgrade.css +607 -0
- admin/assets/css/premium-upgrade.css.map +7 -0
- admin/assets/css/premium-upgrade.scss +699 -0
- admin/assets/images/admin/accordion-add.png +0 -0
- admin/assets/images/admin/accordion.png +0 -0
- admin/assets/images/admin/button.png +0 -0
- admin/assets/images/admin/carousel-add.png +0 -0
- admin/assets/images/admin/carousel.png +0 -0
- admin/assets/images/admin/client-add.png +0 -0
- admin/assets/images/admin/clients.png +0 -0
- admin/assets/images/admin/countdown.png +0 -0
- admin/assets/images/admin/faq-add.png +0 -0
- admin/assets/images/admin/faq.png +0 -0
- admin/assets/images/admin/feature-add.png +0 -0
- admin/assets/images/admin/features.png +0 -0
- admin/assets/images/admin/gallery-add.png +0 -0
- admin/assets/images/admin/gallery.png +0 -0
- admin/assets/images/admin/generic-carousel.png +0 -0
- admin/assets/images/admin/grid-alt.png +0 -0
- admin/assets/images/admin/grid.png +0 -0
- admin/assets/images/admin/heading.png +0 -0
- admin/assets/images/admin/icon-add.png +0 -0
- admin/assets/images/admin/icons.png +0 -0
- admin/assets/images/admin/odometer-add.png +0 -0
- admin/assets/images/admin/odometers.png +0 -0
- admin/assets/images/admin/piechart-add.png +0 -0
- admin/assets/images/admin/piecharts.png +0 -0
- admin/assets/images/admin/portfolio-add.png +0 -0
- admin/assets/images/admin/portfolio.png +0 -0
- admin/assets/images/admin/posts-carousel.png +0 -0
- admin/assets/images/admin/pricing-plan.png +0 -0
- admin/assets/images/admin/pricing-table.png +0 -0
- admin/assets/images/admin/service-add.png +0 -0
- admin/assets/images/admin/services.png +0 -0
- admin/assets/images/admin/slider-add.png +0 -0
- admin/assets/images/admin/slider-add2.png +0 -0
- admin/assets/images/admin/sliders.png +0 -0
- admin/assets/images/admin/sliders2.png +0 -0
- admin/assets/images/admin/spacer.png +0 -0
- admin/assets/images/admin/stats-bar.png +0 -0
- admin/assets/images/admin/tab-add.png +0 -0
- admin/assets/images/admin/tabs.png +0 -0
- admin/assets/images/admin/team-member-add.png +0 -0
- admin/assets/images/admin/team.png +0 -0
- admin/assets/images/admin/testimonial-add.png +0 -0
- admin/assets/images/admin/testimonials-slider-add.png +0 -0
- admin/assets/images/admin/testimonials-slider.png +0 -0
- admin/assets/images/admin/testimonials.png +0 -0
- admin/assets/images/logo-dark.png +0 -0
- admin/assets/images/logo-light.png +0 -0
- admin/assets/images/logo-shape.png +0 -0
- admin/assets/images/logo-shape16.png +0 -0
- admin/assets/js/documentation.js +97 -0
- admin/assets/js/documentation.min.js +1 -0
- admin/assets/js/lvca-admin-ajax.js +169 -0
- admin/assets/js/lvca-admin-ajax.min.js +1 -0
- admin/assets/js/lvca-admin.js +51 -0
- admin/assets/js/lvca-admin.min.js +1 -0
- admin/assets/js/premium-upgrade.js +31 -0
- admin/assets/js/premium-upgrade.min.js +1 -0
- admin/views/admin-banner1.php +16 -0
- admin/views/admin-banner2.php +22 -0
- admin/views/admin-banner3.php +16 -0
- admin/views/admin-footer.php +17 -0
- admin/views/admin-header.php +11 -0
- admin/views/documentation.php +1285 -0
- admin/views/premium-upgrade.php +615 -0
- admin/views/settings.php +585 -0
- assets/css/lvca-frontend.css +26 -15
- assets/css/lvca-frontend.css.map +1 -1
- assets/css/lvca-frontend.scss +21 -8
- assets/js/lvca-admin.js +0 -0
- assets/js/lvca-admin.min.js +0 -0
- assets/js/lvca-frontend.js +28 -15
- assets/js/lvca-frontend.min.js +1 -1
- assets/js/modernizr-custom.js +1384 -0
- assets/js/modernizr-custom.min.js +1 -0
- includes/addons/accordion/class-lvca-accordion.php +7 -2
- includes/addons/carousel/class-lvca-carousel.php +11 -8
- includes/addons/carousel/js/carousel.js +9 -7
- includes/addons/carousel/js/carousel.min.js +1 -1
- includes/addons/clients/class-lvca-clients.php +6 -1
- includes/addons/heading/class-lvca-heading.php +32 -25
- includes/addons/odometers/class-lvca-odometers.php +9 -4
- includes/addons/piecharts/class-lvca-piecharts.php +9 -4
- includes/addons/portfolio/class-lvca-portfolio.php +20 -14
- includes/addons/portfolio/js/portfolio.js +2 -2
- includes/addons/portfolio/js/portfolio.min.js +1 -1
- includes/addons/posts-carousel/class-lvca-posts-carousel.php +10 -8
- includes/addons/posts-carousel/js/posts-carousel.js +13 -11
- includes/addons/posts-carousel/js/posts-carousel.min.js +1 -1
- includes/addons/pricing-table/class-lvca-pricing-table.php +8 -3
- includes/addons/services/class-lvca-services.php +6 -1
- includes/addons/services/css/style.css +4 -1
- includes/addons/services/css/style.css.map +1 -1
- includes/addons/services/css/style.scss +2 -2
- includes/addons/spacer/class-lvca-spacer.php +7 -4
- includes/addons/spacer/js/spacer.js +1 -1
- includes/addons/spacer/js/spacer.min.js +1 -1
- includes/addons/stats-bar/class-lvca-stats-bar.php +8 -3
- includes/addons/tabs/class-lvca-tabs.php +7 -2
- includes/addons/team/class-lvca-team.php +7 -2
- includes/addons/testimonials-slider/class-lvca-testimonials-slider.php +9 -4
- includes/addons/testimonials/class-lvca-testimonials.php +8 -3
- includes/helper-functions.php +228 -2
- includes/params/number/class-lvca-number-param.php +6 -0
- languages/default.pot +878 -173
- languages/en_US.mo +0 -0
- languages/en_US.po +873 -175
- livemesh-vc-addons.php +127 -61
- readme.txt +61 -29
- sample-data.xml +0 -3518
admin/admin-ajax.php
ADDED
@@ -0,0 +1,169 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// Exit if accessed directly
|
4 |
+
if (!defined('ABSPATH')) {
|
5 |
+
exit;
|
6 |
+
}
|
7 |
+
|
8 |
+
class LVCA_Admin_Ajax {
|
9 |
+
|
10 |
+
// Instance of this class.
|
11 |
+
protected $plugin_slug = 'livemesh_vc_addons';
|
12 |
+
protected $ajax_data;
|
13 |
+
protected $ajax_msg;
|
14 |
+
|
15 |
+
|
16 |
+
public function __construct() {
|
17 |
+
|
18 |
+
// retrieve all ajax string to localize
|
19 |
+
$this->localize_strings();
|
20 |
+
$this->init_hooks();
|
21 |
+
|
22 |
+
}
|
23 |
+
|
24 |
+
public function init_hooks() {
|
25 |
+
|
26 |
+
// Register backend ajax action
|
27 |
+
add_action('wp_ajax_lvca_admin_ajax', array($this, 'lvca_admin_ajax'));
|
28 |
+
// Load admin ajax js script
|
29 |
+
add_action('admin_enqueue_scripts', array($this, 'enqueue_admin_scripts'));
|
30 |
+
|
31 |
+
}
|
32 |
+
|
33 |
+
public function ajax_response($success = true, $message = null, $content = null) {
|
34 |
+
|
35 |
+
$response = array(
|
36 |
+
'success' => $success,
|
37 |
+
'message' => $message,
|
38 |
+
'content' => $content
|
39 |
+
);
|
40 |
+
|
41 |
+
return $response;
|
42 |
+
|
43 |
+
}
|
44 |
+
|
45 |
+
public function lvca_check_nonce() {
|
46 |
+
|
47 |
+
// retrieve nonce
|
48 |
+
$nonce = (isset($_POST['nonce'])) ? $_POST['nonce'] : $_GET['nonce'];
|
49 |
+
|
50 |
+
// nonce action for the grid
|
51 |
+
$action = 'lvca_admin_nonce';
|
52 |
+
|
53 |
+
// check ajax nounce
|
54 |
+
if (!wp_verify_nonce($nonce, $action)) {
|
55 |
+
// build response
|
56 |
+
$response = $this->ajax_response(false, __('Sorry, an error occurred. Please refresh the page.', 'livemesh-vc-addons'));
|
57 |
+
// die and send json error response
|
58 |
+
wp_send_json($response);
|
59 |
+
}
|
60 |
+
|
61 |
+
}
|
62 |
+
|
63 |
+
public function lvca_admin_ajax() {
|
64 |
+
|
65 |
+
// check the nonce
|
66 |
+
$this->lvca_check_nonce();
|
67 |
+
|
68 |
+
// retrieve data
|
69 |
+
$this->ajax_data = (isset($_POST)) ? $_POST : $_GET;
|
70 |
+
|
71 |
+
// retrieve function
|
72 |
+
$func = $this->ajax_data['func'];
|
73 |
+
|
74 |
+
switch ($func) {
|
75 |
+
case 'lvca_save_settings':
|
76 |
+
$response = $this->save_settings_callback();
|
77 |
+
break;
|
78 |
+
case 'lvca_reset_settings':
|
79 |
+
$response = $this->save_settings_callback();
|
80 |
+
break;
|
81 |
+
default:
|
82 |
+
$response = ajax_response(false, __('Sorry, an unknown error occurred...', 'livemesh-vc-addons'), null);
|
83 |
+
break;
|
84 |
+
}
|
85 |
+
|
86 |
+
// send json response and die
|
87 |
+
wp_send_json($response);
|
88 |
+
|
89 |
+
}
|
90 |
+
|
91 |
+
public function save_settings_callback() {
|
92 |
+
|
93 |
+
// retrieve data from jquery
|
94 |
+
$setting_data = $this->ajax_data['setting_data'];
|
95 |
+
|
96 |
+
lvca_update_options($setting_data);
|
97 |
+
|
98 |
+
$template = false;
|
99 |
+
// get new restore global settings panel
|
100 |
+
if ($this->ajax_data['reset']) {
|
101 |
+
ob_start();
|
102 |
+
require_once('views/settings.php');
|
103 |
+
$template = ob_get_clean();
|
104 |
+
}
|
105 |
+
|
106 |
+
$response = $this->ajax_response(true, $this->ajax_data['reset'], $template);
|
107 |
+
return $response;
|
108 |
+
|
109 |
+
}
|
110 |
+
|
111 |
+
|
112 |
+
public function localize_strings() {
|
113 |
+
|
114 |
+
$this->ajax_msg = array(
|
115 |
+
'box_icons' => array(
|
116 |
+
'before' => '<i class="tg-info-box-icon dashicons dashicons-admin-generic"></i>',
|
117 |
+
'success' => '<i class="tg-info-box-icon dashicons dashicons-yes"></i>',
|
118 |
+
'error' => '<i class="tg-info-box-icon dashicons dashicons-no-alt"></i>'
|
119 |
+
),
|
120 |
+
'box_messages' => array(
|
121 |
+
|
122 |
+
'lvca_save_settings' => array(
|
123 |
+
'before' => __('Saving plugin settings', 'livemesh-vc-addons'),
|
124 |
+
'success' => __('Plugin settings Saved', 'livemesh-vc-addons'),
|
125 |
+
'error' => __('Sorry, an error occurs while saving settings...', 'livemesh-vc-addons')
|
126 |
+
),
|
127 |
+
'lvca_reset_settings' => array(
|
128 |
+
'before' => __('Resetting plugin settings', 'livemesh-vc-addons'),
|
129 |
+
'success' => __('Plugin settings resetted', 'livemesh-vc-addons'),
|
130 |
+
'error' => __('Sorry, an error occurred while resetting settings', 'livemesh-vc-addons')
|
131 |
+
),
|
132 |
+
)
|
133 |
+
);
|
134 |
+
|
135 |
+
}
|
136 |
+
|
137 |
+
public function admin_nonce() {
|
138 |
+
|
139 |
+
return array(
|
140 |
+
'url' => admin_url('admin-ajax.php'),
|
141 |
+
'nonce' => wp_create_nonce('lvca_admin_nonce')
|
142 |
+
);
|
143 |
+
|
144 |
+
}
|
145 |
+
|
146 |
+
public function enqueue_admin_scripts() {
|
147 |
+
|
148 |
+
$screen = get_current_screen();
|
149 |
+
|
150 |
+
// enqueue only in grid panel
|
151 |
+
if (strpos($screen->id, $this->plugin_slug) !== false) {
|
152 |
+
// merge nonce to translatable strings
|
153 |
+
$strings = array_merge($this->admin_nonce(), $this->ajax_msg);
|
154 |
+
|
155 |
+
// Use minified libraries if LVCA_SCRIPT_DEBUG is turned off
|
156 |
+
$suffix = (defined('LVCA_SCRIPT_DEBUG') && LVCA_SCRIPT_DEBUG) ? '' : '.min';
|
157 |
+
|
158 |
+
// register and localize script for ajax methods
|
159 |
+
wp_register_script('lvca-admin-ajax-scripts', LVCA_PLUGIN_URL . 'admin/assets/js/lvca-admin-ajax' . $suffix . '.js', array(), LVCA_VERSION, true);
|
160 |
+
wp_enqueue_script('lvca-admin-ajax-scripts');
|
161 |
+
|
162 |
+
wp_localize_script('lvca-admin-ajax-scripts', 'lvca_admin_global_var', $strings);
|
163 |
+
|
164 |
+
}
|
165 |
+
}
|
166 |
+
|
167 |
+
}
|
168 |
+
|
169 |
+
new LVCA_Admin_Ajax;
|
admin/admin-init.php
ADDED
@@ -0,0 +1,193 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// Exit if accessed directly
|
4 |
+
if (!defined('ABSPATH')) {
|
5 |
+
exit;
|
6 |
+
}
|
7 |
+
|
8 |
+
class LVCA_Admin {
|
9 |
+
|
10 |
+
|
11 |
+
protected $plugin_slug = 'livemesh_vc_addons';
|
12 |
+
|
13 |
+
public function __construct() {
|
14 |
+
|
15 |
+
$this->includes();
|
16 |
+
$this->init_hooks();
|
17 |
+
|
18 |
+
}
|
19 |
+
|
20 |
+
public function includes() {
|
21 |
+
|
22 |
+
// load class admin ajax function
|
23 |
+
require_once(LVCA_PLUGIN_DIR . '/admin/admin-ajax.php');
|
24 |
+
|
25 |
+
}
|
26 |
+
|
27 |
+
public function init_hooks() {
|
28 |
+
|
29 |
+
// Build admin menu/pages
|
30 |
+
add_action('admin_menu', array($this, 'add_plugin_admin_menu'));
|
31 |
+
|
32 |
+
// Load admin style sheet and JavaScript.
|
33 |
+
add_action('admin_enqueue_scripts', array($this, 'enqueue_admin_scripts'));
|
34 |
+
|
35 |
+
add_action('current_screen', array($this, 'remove_admin_notices'));
|
36 |
+
|
37 |
+
}
|
38 |
+
|
39 |
+
public function remove_admin_notices($screen) {
|
40 |
+
|
41 |
+
// If this screen is Livemesh VC Addons plugin options page, remove annoying admin notices
|
42 |
+
if (strpos($screen->id, $this->plugin_slug) !== false) {
|
43 |
+
add_action('admin_notices', array(&$this, 'remove_notices_start'));
|
44 |
+
add_action('admin_notices', array(&$this, 'remove_notices_end'), 999);
|
45 |
+
}
|
46 |
+
}
|
47 |
+
|
48 |
+
public function remove_notices_start() {
|
49 |
+
|
50 |
+
// Turn on output buffering
|
51 |
+
ob_start();
|
52 |
+
|
53 |
+
}
|
54 |
+
|
55 |
+
public function remove_notices_end() {
|
56 |
+
|
57 |
+
// Get current buffer contents and delete current output buffer
|
58 |
+
$content = ob_get_contents();
|
59 |
+
ob_clean();
|
60 |
+
|
61 |
+
}
|
62 |
+
|
63 |
+
public function add_plugin_admin_menu() {
|
64 |
+
|
65 |
+
add_menu_page(
|
66 |
+
'Visual Composer Addons',
|
67 |
+
__('VC Addons', 'livemesh-vc-addons'),
|
68 |
+
'manage_options',
|
69 |
+
$this->plugin_slug,
|
70 |
+
array($this, 'display_settings_page'),
|
71 |
+
LVCA_PLUGIN_URL . 'admin/assets/images/logo-shape16.png'
|
72 |
+
);
|
73 |
+
|
74 |
+
// add plugin settings submenu page
|
75 |
+
add_submenu_page(
|
76 |
+
$this->plugin_slug,
|
77 |
+
'VC Addons Settings',
|
78 |
+
__('Settings', 'livemesh-vc-addons'),
|
79 |
+
'manage_options',
|
80 |
+
$this->plugin_slug,
|
81 |
+
array($this, 'display_settings_page')
|
82 |
+
);
|
83 |
+
|
84 |
+
// add import/export submenu page
|
85 |
+
add_submenu_page(
|
86 |
+
$this->plugin_slug,
|
87 |
+
'VC Addons Documentation',
|
88 |
+
__('Documentation', 'livemesh-vc-addons'),
|
89 |
+
'manage_options',
|
90 |
+
$this->plugin_slug . '_documentation',
|
91 |
+
array($this, 'display_plugin_documentation')
|
92 |
+
);
|
93 |
+
|
94 |
+
// add global settings submenu page
|
95 |
+
add_submenu_page(
|
96 |
+
$this->plugin_slug,
|
97 |
+
'Upgrade to Pro Version',
|
98 |
+
__('Upgrade to Pro', 'livemesh-vc-addons'),
|
99 |
+
'manage_options',
|
100 |
+
$this->plugin_slug . '_pro_upgrade',
|
101 |
+
array($this, 'display_plugin_premium_upgrade')
|
102 |
+
);
|
103 |
+
|
104 |
+
}
|
105 |
+
|
106 |
+
public function display_settings_page() {
|
107 |
+
|
108 |
+
require_once('views/admin-header.php');
|
109 |
+
require_once('views/admin-banner2.php');
|
110 |
+
require_once('views/settings.php');
|
111 |
+
require_once('views/admin-footer.php');
|
112 |
+
|
113 |
+
}
|
114 |
+
|
115 |
+
public function display_plugin_documentation() {
|
116 |
+
|
117 |
+
|
118 |
+
require_once('views/admin-header.php');
|
119 |
+
require_once('views/admin-banner1.php');
|
120 |
+
require_once('views/documentation.php');
|
121 |
+
require_once('views/admin-footer.php');
|
122 |
+
|
123 |
+
}
|
124 |
+
|
125 |
+
public function display_plugin_premium_upgrade() {
|
126 |
+
|
127 |
+
|
128 |
+
require_once('views/admin-header.php');
|
129 |
+
require_once('views/admin-banner3.php');
|
130 |
+
require_once('views/premium-upgrade.php');
|
131 |
+
require_once('views/admin-footer.php');
|
132 |
+
|
133 |
+
}
|
134 |
+
|
135 |
+
public function enqueue_admin_scripts() {
|
136 |
+
|
137 |
+
// Use minified libraries if LVCA_SCRIPT_DEBUG is turned off
|
138 |
+
$suffix = (defined('LVCA_SCRIPT_DEBUG') && LVCA_SCRIPT_DEBUG) ? '' : '.min';
|
139 |
+
|
140 |
+
wp_register_style('lvca-admin-styles', LVCA_PLUGIN_URL . 'admin/assets/css/lvca-admin.css', array(), LVCA_VERSION);
|
141 |
+
wp_enqueue_style('lvca-admin-styles');
|
142 |
+
|
143 |
+
// get current admin screen
|
144 |
+
$screen = get_current_screen();
|
145 |
+
|
146 |
+
// If screen is a part of Livemesh Visual Composer Addons plugin options page
|
147 |
+
if (strpos($screen->id, $this->plugin_slug) !== false) {
|
148 |
+
|
149 |
+
wp_enqueue_script('jquery-ui-datepicker');
|
150 |
+
|
151 |
+
wp_enqueue_script('wp-color-picker');
|
152 |
+
wp_enqueue_style('wp-color-picker');
|
153 |
+
|
154 |
+
wp_register_script('lvca-admin-scripts', LVCA_PLUGIN_URL . 'admin/assets/js/lvca-admin' . $suffix . '.js', array(), LVCA_VERSION, true);
|
155 |
+
wp_enqueue_script('lvca-admin-scripts');
|
156 |
+
|
157 |
+
wp_register_style('lvca-admin-elements-styles', LVCA_PLUGIN_URL . 'admin/assets/css/lvca-elements.css', array(), LVCA_VERSION);
|
158 |
+
wp_enqueue_style('lvca-admin-elements-styles');
|
159 |
+
|
160 |
+
wp_register_style('lvca-admin-page-styles', LVCA_PLUGIN_URL . 'admin/assets/css/lvca-admin-page.css', array(), LVCA_VERSION);
|
161 |
+
wp_enqueue_style('lvca-admin-page-styles');
|
162 |
+
}
|
163 |
+
|
164 |
+
if (strpos($screen->id, $this->plugin_slug . '_documentation') !== false || strpos($screen->id, $this->plugin_slug . '_pro_upgrade') !== false) {
|
165 |
+
|
166 |
+
// Load scripts and styles for documentation
|
167 |
+
wp_register_script('lvca-doc-scripts', LVCA_PLUGIN_URL . 'admin/assets/js/documentation' . $suffix . '.js', array(), LVCA_VERSION, true);
|
168 |
+
wp_enqueue_script('lvca-doc-scripts');
|
169 |
+
|
170 |
+
wp_register_style('lvca-doc-styles', LVCA_PLUGIN_URL . 'admin/assets/css/documentation.css', array(), LVCA_VERSION);
|
171 |
+
wp_enqueue_style('lvca-doc-styles');
|
172 |
+
|
173 |
+
// Thickbox
|
174 |
+
add_thickbox();
|
175 |
+
|
176 |
+
}
|
177 |
+
|
178 |
+
if (strpos($screen->id, $this->plugin_slug . '_pro_upgrade') !== false) {
|
179 |
+
|
180 |
+
// Load scripts and styles for premium upgrade
|
181 |
+
wp_register_script('lvca-pro-upgrade-scripts', LVCA_PLUGIN_URL . 'admin/assets/js/premium-upgrade' . $suffix . '.js', array(), LVCA_VERSION, true);
|
182 |
+
wp_enqueue_script('lvca-pro-upgrade-scripts');
|
183 |
+
|
184 |
+
wp_register_style('lvca-pro-upgrade-styles', LVCA_PLUGIN_URL . 'admin/assets/css/premium-upgrade.css', array(), LVCA_VERSION);
|
185 |
+
wp_enqueue_style('lvca-pro-upgrade-styles');
|
186 |
+
|
187 |
+
}
|
188 |
+
|
189 |
+
}
|
190 |
+
|
191 |
+
}
|
192 |
+
|
193 |
+
new LVCA_Admin;
|
admin/assets/css/documentation.css
ADDED
@@ -0,0 +1,417 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.clearfix:before, .clearfix:after {
|
2 |
+
content: "";
|
3 |
+
display: table; }
|
4 |
+
|
5 |
+
.clearfix:after {
|
6 |
+
clear: both; }
|
7 |
+
|
8 |
+
.clearfix {
|
9 |
+
zoom: 1; }
|
10 |
+
|
11 |
+
.livemesh-doc * {
|
12 |
+
-webkit-box-sizing: border-box;
|
13 |
+
-moz-box-sizing: border-box;
|
14 |
+
box-sizing: border-box; }
|
15 |
+
|
16 |
+
.livemesh-doc {
|
17 |
+
overflow: hidden;
|
18 |
+
padding: 0 3%; }
|
19 |
+
|
20 |
+
.livemesh-doc .dashicons, .dashicons-before:before {
|
21 |
+
font-size: 14px;
|
22 |
+
vertical-align: middle;
|
23 |
+
width: 14px;
|
24 |
+
height: 14px; }
|
25 |
+
|
26 |
+
.livemesh-doc .plugin-image {
|
27 |
+
background: #333743;
|
28 |
+
padding: 2% 2% 0 2%;
|
29 |
+
display: inline-block;
|
30 |
+
width: 100%;
|
31 |
+
width: 30%; }
|
32 |
+
|
33 |
+
.livemesh-doc .panels {
|
34 |
+
margin: 5% 0 0 0; }
|
35 |
+
|
36 |
+
.livemesh-doc .panel {
|
37 |
+
display: inline-block;
|
38 |
+
width: 100%;
|
39 |
+
padding: 3%;
|
40 |
+
background: #fff;
|
41 |
+
font-size: 16px;
|
42 |
+
animation: smoothFade .3s;
|
43 |
+
-moz-animation: smoothFade .3s;
|
44 |
+
-webkit-animation: smoothFade .3s;
|
45 |
+
-o-animation: smoothFade .3s; }
|
46 |
+
|
47 |
+
@keyframes smoothFade {
|
48 |
+
from {
|
49 |
+
opacity: 0; }
|
50 |
+
to {
|
51 |
+
opacity: 1; } }
|
52 |
+
@-moz-keyframes smoothFade {
|
53 |
+
from {
|
54 |
+
opacity: 0; }
|
55 |
+
to {
|
56 |
+
opacity: 1; } }
|
57 |
+
@-webkit-keyframes smoothFade {
|
58 |
+
from {
|
59 |
+
opacity: 0; }
|
60 |
+
to {
|
61 |
+
opacity: 1; } }
|
62 |
+
.livemesh-doc .panel-left.visible {
|
63 |
+
display: inline-block;
|
64 |
+
animation: smoothFade .3s;
|
65 |
+
-moz-animation: smoothFade .3s;
|
66 |
+
-webkit-animation: smoothFade .3s;
|
67 |
+
-o-animation: smoothFade .3s; }
|
68 |
+
|
69 |
+
.livemesh-doc .panel p {
|
70 |
+
font-size: 16px;
|
71 |
+
line-height: 1.7;
|
72 |
+
margin: 0 0 2em 0; }
|
73 |
+
|
74 |
+
.livemesh-doc .panel-right p {
|
75 |
+
font-size: 15px;
|
76 |
+
line-height: 1.6; }
|
77 |
+
|
78 |
+
.livemesh-doc .panel a {
|
79 |
+
text-decoration: none; }
|
80 |
+
|
81 |
+
.livemesh-doc .panel a:focus,
|
82 |
+
.livemesh-doc .panel a:active {
|
83 |
+
outline: none;
|
84 |
+
box-shadow: none;
|
85 |
+
border: none; }
|
86 |
+
|
87 |
+
.livemesh-doc .panel hr {
|
88 |
+
height: 1px;
|
89 |
+
margin: 2em 0;
|
90 |
+
border: 0;
|
91 |
+
border-top: solid 2px #E6EAED; }
|
92 |
+
|
93 |
+
#plugins-panel hr {
|
94 |
+
padding-bottom: 0;
|
95 |
+
display: inline-block;
|
96 |
+
width: 100%;
|
97 |
+
margin-top: 10px; }
|
98 |
+
|
99 |
+
.livemesh-doc .panel-left ul, .livemesh-doc .panel-left ol {
|
100 |
+
margin: 0 0 5% 0;
|
101 |
+
background: #F8F8F8;
|
102 |
+
padding: 5% 5% 5% 8%;
|
103 |
+
list-style-type: square;
|
104 |
+
font-size: 16px;
|
105 |
+
line-height: 1.8; }
|
106 |
+
|
107 |
+
.livemesh-doc .panel-left ul li, .livemesh-doc .panel-left ol li {
|
108 |
+
border-bottom: dotted 1px #ddd;
|
109 |
+
margin-bottom: 20px;
|
110 |
+
padding-bottom: 20px; }
|
111 |
+
|
112 |
+
.livemesh-doc .panel-left ul li:last-child, .livemesh-doc .panel-left ol li:last-child {
|
113 |
+
border: none;
|
114 |
+
margin-bottom: 0;
|
115 |
+
padding-bottom: 0; }
|
116 |
+
|
117 |
+
.livemesh-doc .panel-left {
|
118 |
+
display: inline-block;
|
119 |
+
display: none;
|
120 |
+
width: 64%; }
|
121 |
+
|
122 |
+
.livemesh-doc .panel-left img {
|
123 |
+
max-width: 100%;
|
124 |
+
height: auto;
|
125 |
+
border: solid 1px #E6EAED;
|
126 |
+
margin-top: 15px; }
|
127 |
+
|
128 |
+
.livemesh-doc .panel-left h3 {
|
129 |
+
display: inline-block; }
|
130 |
+
|
131 |
+
.livemesh-doc .panel-left h3, .livemesh-doc .panel-right h3, .livemesh-doc .panel-right p:first-child {
|
132 |
+
margin-top: 0;
|
133 |
+
line-height: 1.3; }
|
134 |
+
|
135 |
+
.panel-left ul.anchor-nav {
|
136 |
+
padding: 5%; }
|
137 |
+
|
138 |
+
.anchor-nav li {
|
139 |
+
list-style: none; }
|
140 |
+
|
141 |
+
.back-to-top {
|
142 |
+
text-transform: uppercase;
|
143 |
+
font-size: 11px;
|
144 |
+
color: #999;
|
145 |
+
position: absolute;
|
146 |
+
right: 0;
|
147 |
+
top: 8px; }
|
148 |
+
|
149 |
+
.livemesh-doc .panels h3 {
|
150 |
+
width: 100%;
|
151 |
+
position: relative;
|
152 |
+
padding-right: 90px; }
|
153 |
+
|
154 |
+
.livemesh-doc h3 .back-to-top {
|
155 |
+
float: right; }
|
156 |
+
|
157 |
+
.livemesh-doc .panel-right {
|
158 |
+
position: relative;
|
159 |
+
display: inline-block;
|
160 |
+
width: 32%;
|
161 |
+
float: right;
|
162 |
+
vertical-align: top; }
|
163 |
+
|
164 |
+
.livemesh-doc .panel-aside {
|
165 |
+
margin-bottom: 25px;
|
166 |
+
background: #F8F8F8;
|
167 |
+
padding: 40px; }
|
168 |
+
.livemesh-doc .panel-aside.banner {
|
169 |
+
padding: 0; }
|
170 |
+
.livemesh-doc .panel-aside img {
|
171 |
+
max-width: 100%; }
|
172 |
+
|
173 |
+
.livemesh-doc .panel-aside:last-child {
|
174 |
+
margin-bottom: 0; }
|
175 |
+
|
176 |
+
.livemesh-doc .panel-aside h4 {
|
177 |
+
margin-top: 0;
|
178 |
+
font-size: 1.1em;
|
179 |
+
line-height: 1.4; }
|
180 |
+
|
181 |
+
.livemesh-doc .panel-aside ul {
|
182 |
+
margin-bottom: 25px; }
|
183 |
+
|
184 |
+
.livemesh-doc .panel-aside li {
|
185 |
+
list-style-type: square;
|
186 |
+
margin-left: 18px; }
|
187 |
+
|
188 |
+
.notices {
|
189 |
+
margin: 0;
|
190 |
+
display: none; }
|
191 |
+
|
192 |
+
#wpbody-content .livemesh-doc .updated,
|
193 |
+
#wpbody-content .livemesh-doc .error {
|
194 |
+
margin-top: 2%; }
|
195 |
+
|
196 |
+
.livemesh-doc .updated + .intro-wrap,
|
197 |
+
.livemesh-doc .error + .intro-wrap {
|
198 |
+
padding-top: 2%; }
|
199 |
+
|
200 |
+
.livemesh-doc .intro-wrap {
|
201 |
+
padding: 4% 0 0 0; }
|
202 |
+
|
203 |
+
.livemesh-doc .intro {
|
204 |
+
display: inline-block;
|
205 |
+
width: 50%;
|
206 |
+
margin-left: 4%;
|
207 |
+
vertical-align: top; }
|
208 |
+
|
209 |
+
.livemesh-doc .intro h3 {
|
210 |
+
font-size: 50px;
|
211 |
+
line-height: 1.2;
|
212 |
+
font-weight: 300;
|
213 |
+
margin: 0 0 20px 0; }
|
214 |
+
|
215 |
+
.livemesh-doc .intro h4 {
|
216 |
+
color: #868B96;
|
217 |
+
font-weight: normal;
|
218 |
+
font-size: 18px;
|
219 |
+
line-height: 1.6;
|
220 |
+
margin: 0; }
|
221 |
+
|
222 |
+
.livemesh-doc .inline-list {
|
223 |
+
display: inline-block;
|
224 |
+
width: 100%;
|
225 |
+
margin: 0; }
|
226 |
+
|
227 |
+
.livemesh-doc .inline-list li {
|
228 |
+
display: inline-block;
|
229 |
+
margin: 0 0 0 0; }
|
230 |
+
|
231 |
+
.livemesh-doc .inline-list li:last-child {
|
232 |
+
margin-right: 0;
|
233 |
+
padding-right: 0; }
|
234 |
+
|
235 |
+
.livemesh-doc .inline-list li a {
|
236 |
+
font-size: 18px;
|
237 |
+
text-decoration: none;
|
238 |
+
padding: 25px 30px;
|
239 |
+
display: inline-block; }
|
240 |
+
|
241 |
+
.livemesh-doc .inline-list li span {
|
242 |
+
font-size: 18px;
|
243 |
+
width: 18px;
|
244 |
+
height: 18px; }
|
245 |
+
|
246 |
+
.livemesh-doc .inline-list li a:active,
|
247 |
+
.livemesh-doc .inline-list li a::-moz-focus-inner,
|
248 |
+
.livemesh-doc ul.inline-list a:focus {
|
249 |
+
outline: none;
|
250 |
+
border: 0;
|
251 |
+
box-shadow: none; }
|
252 |
+
|
253 |
+
.livemesh-doc ul.toc {
|
254 |
+
padding-left: 5%; }
|
255 |
+
|
256 |
+
.livemesh-doc .toc li {
|
257 |
+
list-style-type: none; }
|
258 |
+
|
259 |
+
.livemesh-doc .inline-list li.current a {
|
260 |
+
background: #fff;
|
261 |
+
outline: none;
|
262 |
+
border: none;
|
263 |
+
box-shadow: none;
|
264 |
+
border-top-right-radius: 3px;
|
265 |
+
border-top-left-radius: 3px; }
|
266 |
+
|
267 |
+
.livemesh-doc .inline-list li a i {
|
268 |
+
font-size: 16px;
|
269 |
+
margin-right: 5px; }
|
270 |
+
|
271 |
+
.livemesh-doc .enter-license {
|
272 |
+
display: inline-block;
|
273 |
+
width: 100%;
|
274 |
+
margin: 3% 0 1% 0; }
|
275 |
+
|
276 |
+
::-webkit-input-placeholder {
|
277 |
+
font-family: 'Open Sans', sans-serif;
|
278 |
+
font-size: 15px;
|
279 |
+
line-height: 1.2; }
|
280 |
+
|
281 |
+
:-moz-placeholder {
|
282 |
+
font-family: 'Open Sans', sans-serif;
|
283 |
+
font-size: 15px;
|
284 |
+
line-height: 1.2; }
|
285 |
+
|
286 |
+
::-moz-placeholder {
|
287 |
+
font-family: 'Open Sans', sans-serif;
|
288 |
+
font-size: 15px;
|
289 |
+
line-height: 1.2; }
|
290 |
+
|
291 |
+
:-ms-input-placeholder {
|
292 |
+
font-family: 'Open Sans', sans-serif;
|
293 |
+
font-size: 15px;
|
294 |
+
line-height: 1.2; }
|
295 |
+
|
296 |
+
.livemesh-doc .enter-license label {
|
297 |
+
display: inline-block;
|
298 |
+
width: 100%;
|
299 |
+
margin-bottom: 2%; }
|
300 |
+
|
301 |
+
.livemesh-doc .enter-license .license-key-input {
|
302 |
+
display: inline-block;
|
303 |
+
width: 100%;
|
304 |
+
padding: 10px;
|
305 |
+
margin-bottom: 4%;
|
306 |
+
font-family: 'Andale Mono', 'Lucida Console', monospace;
|
307 |
+
font-size: 16px; }
|
308 |
+
|
309 |
+
.livemesh-doc .enter-license .submit {
|
310 |
+
display: inline-block;
|
311 |
+
width: 25%;
|
312 |
+
margin: 0;
|
313 |
+
padding: 0; }
|
314 |
+
|
315 |
+
.livemesh-doc .activate {
|
316 |
+
display: inline-block;
|
317 |
+
width: 100%;
|
318 |
+
vertical-align: top; }
|
319 |
+
|
320 |
+
.livemesh-doc .activate-text {
|
321 |
+
font-size: 14px;
|
322 |
+
line-height: 28px;
|
323 |
+
display: inline-block;
|
324 |
+
margin-right: 5px;
|
325 |
+
color: green; }
|
326 |
+
|
327 |
+
.livemesh-doc #changelog {
|
328 |
+
display: none; }
|
329 |
+
|
330 |
+
.livemesh-doc #install-video {
|
331 |
+
display: none; }
|
332 |
+
|
333 |
+
.livemesh-doc .pro-feature {
|
334 |
+
color: #f94213; }
|
335 |
+
|
336 |
+
#updates-panel ul {
|
337 |
+
border-bottom: 1px dotted #ddd;
|
338 |
+
padding: 1% 0 5% 3%;
|
339 |
+
list-style-position: inside;
|
340 |
+
background: transparent; }
|
341 |
+
|
342 |
+
#updates-panel li {
|
343 |
+
border-bottom: 0;
|
344 |
+
margin-bottom: 0;
|
345 |
+
padding-bottom: 7px; }
|
346 |
+
|
347 |
+
#updates-panel h4 {
|
348 |
+
font-size: 1.1em;
|
349 |
+
margin: .5em 0; }
|
350 |
+
|
351 |
+
h4 .button {
|
352 |
+
float: right;
|
353 |
+
background: #5AC779;
|
354 |
+
color: #fff;
|
355 |
+
border-radius: 3px;
|
356 |
+
font-size: 14px;
|
357 |
+
padding: 3px 6px;
|
358 |
+
vertical-align: middle; }
|
359 |
+
|
360 |
+
@media only screen and (max-width: 768px) {
|
361 |
+
.livemesh-doc .intro, .plugin-image, .livemesh-doc .panel-left, .livemesh-doc .panel-right {
|
362 |
+
width: 100%;
|
363 |
+
float: none; }
|
364 |
+
|
365 |
+
.livemesh-doc .intro {
|
366 |
+
padding: 0;
|
367 |
+
margin: 0; }
|
368 |
+
|
369 |
+
.livemesh-doc .intro h2 {
|
370 |
+
font-size: 34px; }
|
371 |
+
|
372 |
+
.livemesh-doc .intro h3 {
|
373 |
+
margin-bottom: 0; }
|
374 |
+
|
375 |
+
.livemesh-doc .inline-list {
|
376 |
+
margin-bottom: 5%; }
|
377 |
+
|
378 |
+
.livemesh-doc .inline-list li {
|
379 |
+
width: 100%; }
|
380 |
+
|
381 |
+
.livemesh-doc .inline-list li a {
|
382 |
+
width: 100%;
|
383 |
+
display: block; }
|
384 |
+
|
385 |
+
.livemesh-doc .plugin-image {
|
386 |
+
width: 100%;
|
387 |
+
margin-bottom: 15px;
|
388 |
+
padding: 6% 6% 0 6%; }
|
389 |
+
|
390 |
+
.livemesh-doc .enter-license .submit {
|
391 |
+
width: 100%; }
|
392 |
+
|
393 |
+
.livemesh-doc .activate {
|
394 |
+
width: 100%;
|
395 |
+
float: none;
|
396 |
+
text-align: left;
|
397 |
+
margin-bottom: 20px; } }
|
398 |
+
.livemesh-doc .button-wrap {
|
399 |
+
width: 100%; }
|
400 |
+
.livemesh-doc .button-wrap a {
|
401 |
+
position: relative;
|
402 |
+
display: block;
|
403 |
+
margin: 60px auto;
|
404 |
+
max-width: 400px; }
|
405 |
+
.livemesh-doc .button-wrap img.button-image {
|
406 |
+
max-width: 100%;
|
407 |
+
-webkit-transform: scale(1);
|
408 |
+
-ms-transform: scale(1);
|
409 |
+
transform: scale(1);
|
410 |
+
-webkit-transition: -webkit-transform 0.4s ease-in-out;
|
411 |
+
transition: transform 0.4s ease-in-out; }
|
412 |
+
.livemesh-doc .button-wrap img.button-image:hover {
|
413 |
+
-webkit-transform: scale(1.1);
|
414 |
+
-ms-transform: scale(1.1);
|
415 |
+
transform: scale(1.1); }
|
416 |
+
|
417 |
+
/*# sourceMappingURL=documentation.css.map */
|
admin/assets/css/documentation.css.map
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"version": 3,
|
3 |
+
"mappings": "AAAA,iCAAkC;EAChC,OAAO,EAAE,EAAE;EACX,OAAO,EAAE,KAAK;;AAGhB,eAAgB;EAAE,KAAK,EAAE,IAAI;;AAE7B,SAAU;EAAE,IAAI,EAAE,CAAC;;AAEnB,eAAgB;EACd,kBAAkB,EAAE,UAAU;EAC9B,eAAe,EAAE,UAAU;EAC3B,UAAU,EAAE,UAAU;;AAGxB,aAAc;EACZ,QAAQ,EAAE,MAAM;EAChB,OAAO,EAAE,IAAI;;AAGf,kDAAmD;EACjD,SAAS,EAAE,IAAI;EACf,cAAc,EAAE,MAAM;EACtB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;;AAGd,2BAA4B;EAC1B,UAAU,EAAE,OAAO;EACnB,OAAO,EAAE,UAAU;EACnB,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,IAAI;EACX,KAAK,EAAE,GAAG;;AAGZ,qBAAsB;EACpB,MAAM,EAAE,QAAQ;;AAGlB,oBAAqB;EACnB,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,EAAE;EACX,UAAU,EAAE,IAAI;EAChB,SAAS,EAAE,IAAI;EACf,SAAS,EAAE,cAAc;EACzB,cAAc,EAAE,cAAc;EAC9B,iBAAiB,EAAE,cAAc;EACjC,YAAY,EAAE,cAAc;;AAG9B,qBAOG;EAND,IAAK;IACH,OAAO,EAAC,CAAC;EAEX,EAAG;IACD,OAAO,EAAC,CAAC;AAIb,0BAOG;EAND,IAAK;IACH,OAAO,EAAC,CAAC;EAEX,EAAG;IACD,OAAO,EAAC,CAAC;AAIb,6BAOG;EAND,IAAK;IACH,OAAO,EAAC,CAAC;EAEX,EAAG;IACD,OAAO,EAAC,CAAC;AAIb,iCAAkC;EAChC,OAAO,EAAE,YAAY;EACrB,SAAS,EAAE,cAAc;EACzB,cAAc,EAAE,cAAc;EAC9B,iBAAiB,EAAE,cAAc;EACjC,YAAY,EAAE,cAAc;;AAG9B,sBAAuB;EACrB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,MAAM,EAAE,SAAS;;AAGnB,4BAA6B;EAC3B,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;;AAGlB,sBAAuB;EACrB,eAAe,EAAE,IAAI;;AAGvB;6BAC8B;EAC5B,OAAO,EAAE,IAAI;EACb,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,IAAI;;AAGd,uBAAwB;EACtB,MAAM,EAAE,GAAG;EACX,MAAM,EAAE,KAAK;EAEb,MAAM,EAAE,CAAC;EACT,UAAU,EAAE,iBAAiB;;AAG/B,iBAAkB;EAChB,cAAc,EAAE,CAAC;EACjB,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,IAAI;;AAGlB,0DAA2D;EACzD,MAAM,EAAE,QAAQ;EAChB,UAAU,EAAE,OAAO;EACnB,OAAO,EAAE,WAAW;EACpB,eAAe,EAAE,MAAM;EACvB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;;AAElB,gEAAiE;EAC/D,aAAa,EAAE,eAAe;EAC9B,aAAa,EAAE,IAAI;EACnB,cAAc,EAAE,IAAI;;AAEtB,sFAAuF;EACrF,MAAM,EAAE,IAAI;EACZ,aAAa,EAAE,CAAC;EAChB,cAAc,EAAE,CAAC;;AAGnB,yBAA0B;EACxB,OAAO,EAAE,YAAY;EACrB,OAAO,EAAE,IAAI;EACb,KAAK,EAAE,GAAG;;AAGZ,6BAA8B;EAC5B,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,iBAAiB;EACzB,UAAU,EAAE,IAAI;;AAGlB,4BAA6B;EAC3B,OAAO,EAAE,YAAY;;AAGvB,qGAAsG;EACpG,UAAU,EAAE,CAAC;EACb,WAAW,EAAE,GAAG;;AAGlB,yBAA0B;EACxB,OAAO,EAAE,EAAE;;AAGb,cAAe;EACb,UAAU,EAAE,IAAI;;AAGlB,YAAa;EACX,cAAc,EAAE,SAAS;EACzB,SAAS,EAAE,IAAI;EACf,KAAK,EAAE,IAAI;EACX,QAAQ,EAAE,QAAQ;EAClB,KAAK,EAAE,CAAC;EACR,GAAG,EAAE,GAAG;;AAGV,wBAAyB;EACvB,KAAK,EAAE,IAAI;EACX,QAAQ,EAAE,QAAQ;EAClB,aAAa,EAAE,IAAI;;AAGrB,6BAA8B;EAC5B,KAAK,EAAE,KAAK;;AAGd,0BAA2B;EACzB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,GAAG;EACV,KAAK,EAAE,KAAK;EACZ,cAAc,EAAE,GAAG;;AAGrB,0BAA2B;EACzB,aAAa,EAAE,IAAI;EACnB,UAAU,EAAE,OAAO;EACnB,OAAO,EAAE,IAAI;EACb,iCAAS;IACP,OAAO,EAAE,CAAC;EAEZ,8BAAI;IACF,SAAS,EAAE,IAAI;;AAInB,qCAAsC;EACpC,aAAa,EAAE,CAAC;;AAGlB,6BAA8B;EAC5B,UAAU,EAAE,CAAC;EACb,SAAS,EAAE,KAAK;EAChB,WAAW,EAAE,GAAG;;AAGlB,6BAA8B;EAC5B,aAAa,EAAE,IAAI;;AAGrB,6BAA8B;EAC5B,eAAe,EAAE,MAAM;EACvB,WAAW,EAAE,IAAI;;AAGnB,QAAS;EACP,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,IAAI;;AAGf;oCACqC;EACnC,UAAU,EAAE,EAAE;;AAGhB;kCACmC;EACjC,WAAW,EAAE,EAAE;;AAGjB,yBAA0B;EACxB,OAAO,EAAG,QAAQ;;AAGpB,oBAAqB;EACnB,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,GAAG;EACV,WAAW,EAAE,EAAE;EACf,cAAc,EAAE,GAAG;;AAGrB,uBAAwB;EACtB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,WAAW,EAAE,GAAG;EAChB,MAAM,EAAE,UAAU;;AAGpB,uBAAwB;EACtB,KAAK,EAAE,OAAO;EACd,WAAW,EAAE,MAAM;EACnB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,MAAM,EAAE,CAAC;;AAGX,0BAA2B;EACzB,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,CAAC;;AAGX,6BAA8B;EAC5B,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,OAAO;;AAGjB,wCAAyC;EACvC,YAAY,EAAE,CAAC;EACf,aAAa,EAAE,CAAC;;AAGlB,+BAAgC;EAC9B,SAAS,EAAE,IAAI;EACf,eAAe,EAAE,IAAI;EACrB,OAAO,EAAE,SAAS;EAClB,OAAO,EAAE,YAAY;;AAGvB,kCAAmC;EACjC,SAAS,EAAE,IAAI;EACf,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;;AAGd;;oCAEqC;EACnC,OAAO,EAAE,IAAI;EACb,MAAM,EAAE,CAAC;EACT,UAAU,EAAE,IAAI;;AAGlB,oBAAqB;EACnB,YAAY,EAAE,EAAE;;AAGlB,qBAAsB;EACpB,eAAe,EAAE,IAAI;;AAGvB,uCAAwC;EACtC,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,IAAI;EACb,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,IAAI;EAChB,uBAAuB,EAAE,GAAG;EAC5B,sBAAsB,EAAE,GAAG;;AAG7B,iCAAkC;EAChC,SAAS,EAAE,IAAI;EACf,YAAY,EAAE,GAAG;;AAGnB,4BAA6B;EAC3B,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,SAAS;;AAGnB,2BAA4B;EAC1B,WAAW,EAAE,uBAAuB;EACpC,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;;AAGlB,iBAAkB;EAChB,WAAW,EAAE,uBAAuB;EACpC,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;;AAGlB,kBAAmB;EACjB,WAAW,EAAE,uBAAuB;EACpC,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;;AAGlB,sBAAuB;EACrB,WAAW,EAAE,uBAAuB;EACpC,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;;AAGlB,kCAAmC;EACjC,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,EAAE;;AAGnB,+CAAgD;EAC9C,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,IAAI;EACb,aAAa,EAAE,EAAE;EACjB,WAAW,EAAE,0CAA0C;EACvD,SAAS,EAAE,IAAI;;AAGjB,oCAAqC;EACnC,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;;AAGZ,uBAAwB;EACtB,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,IAAI;EACX,cAAc,EAAE,GAAG;;AAGrB,4BAA6B;EAC3B,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,YAAY;EACrB,YAAY,EAAE,GAAG;EACjB,KAAK,EAAE,KAAK;;AAGd,wBAAyB;EACvB,OAAO,EAAE,IAAI;;AAGf,4BAA6B;EAC3B,OAAO,EAAE,IAAI;;AAGf,0BAA0B;EACxB,KAAK,EAAE,OAAO;;AAGhB,iBAAkB;EAChB,aAAa,EAAE,eAAe;EAC9B,OAAO,EAAE,UAAU;EACnB,mBAAmB,EAAE,MAAM;EAC3B,UAAU,EAAE,WAAW;;AAEzB,iBAAkB;EAChB,aAAa,EAAE,CAAC;EAChB,aAAa,EAAE,CAAC;EAChB,cAAc,EAAE,GAAG;;AAErB,iBAAkB;EAChB,SAAS,EAAE,KAAK;EAChB,MAAM,EAAE,MAAM;;AAGhB,UAAW;EACT,KAAK,EAAE,KAAK;EACZ,UAAU,EAAE,OAAO;EACnB,KAAK,EAAE,IAAI;EACX,aAAa,EAAE,GAAG;EAClB,SAAS,EAAE,IAAI;EACf,OAAO,EAAE,OAAO;EAChB,cAAc,EAAE,MAAM;;AAGxB,yCAAyC;EACvC,0FAA2F;IACzF,KAAK,EAAE,IAAI;IACX,KAAK,EAAE,IAAI;;EAGb,oBAAqB;IACnB,OAAO,EAAE,CAAC;IACV,MAAM,EAAE,CAAC;;EAGX,uBAAwB;IACtB,SAAS,EAAE,IAAI;;EAGjB,uBAAwB;IACtB,aAAa,EAAE,CAAC;;EAGlB,0BAA2B;IACzB,aAAa,EAAE,EAAE;;EAGnB,6BAA8B;IAC5B,KAAK,EAAE,IAAI;;EAGb,+BAAgC;IAC9B,KAAK,EAAE,IAAI;IACX,OAAO,EAAE,KAAK;;EAGhB,2BAA4B;IAC1B,KAAK,EAAE,IAAI;IACX,aAAa,EAAE,IAAI;IACnB,OAAO,EAAE,UAAU;;EAGrB,oCAAqC;IACnC,KAAK,EAAE,IAAI;;EAGb,uBAAwB;IACtB,KAAK,EAAE,IAAI;IACX,KAAK,EAAE,IAAI;IACX,UAAU,EAAE,IAAI;IAChB,aAAa,EAAE,IAAI;AAIvB,0BAA2B;EACzB,KAAK,EAAE,IAAI;EACX,4BAAE;IACA,QAAQ,EAAE,QAAQ;IAClB,OAAO,EAAE,KAAK;IACd,MAAM,EAAE,SAAS;IACjB,SAAS,EAAE,KAAK;EAElB,2CAAiB;IACf,SAAS,EAAE,IAAI;IACf,iBAAiB,EAAE,QAAQ;IAC3B,aAAa,EAAE,QAAQ;IACvB,SAAS,EAAE,QAAQ;IACnB,kBAAkB,EAAE,kCAAkC;IACtD,UAAU,EAAE,0BAA0B;IACtC,iDAAQ;MACN,iBAAiB,EAAE,UAAU;MAC7B,aAAa,EAAE,UAAU;MACzB,SAAS,EAAE,UAAU",
|
4 |
+
"sources": ["documentation.scss"],
|
5 |
+
"names": [],
|
6 |
+
"file": "documentation.css"
|
7 |
+
}
|
admin/assets/css/documentation.scss
ADDED
@@ -0,0 +1,506 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.clearfix:before, .clearfix:after {
|
2 |
+
content: "";
|
3 |
+
display: table;
|
4 |
+
}
|
5 |
+
|
6 |
+
.clearfix:after { clear: both }
|
7 |
+
|
8 |
+
.clearfix { zoom: 1 }
|
9 |
+
|
10 |
+
.livemesh-doc * {
|
11 |
+
-webkit-box-sizing: border-box;
|
12 |
+
-moz-box-sizing: border-box;
|
13 |
+
box-sizing: border-box;
|
14 |
+
}
|
15 |
+
|
16 |
+
.livemesh-doc {
|
17 |
+
overflow: hidden;
|
18 |
+
padding: 0 3%;
|
19 |
+
}
|
20 |
+
|
21 |
+
.livemesh-doc .dashicons, .dashicons-before:before {
|
22 |
+
font-size: 14px;
|
23 |
+
vertical-align: middle;
|
24 |
+
width: 14px;
|
25 |
+
height: 14px;
|
26 |
+
}
|
27 |
+
|
28 |
+
.livemesh-doc .plugin-image {
|
29 |
+
background: #333743;
|
30 |
+
padding: 2% 2% 0 2%;
|
31 |
+
display: inline-block;
|
32 |
+
width: 100%;
|
33 |
+
width: 30%;
|
34 |
+
}
|
35 |
+
|
36 |
+
.livemesh-doc .panels {
|
37 |
+
margin: 5% 0 0 0;
|
38 |
+
}
|
39 |
+
|
40 |
+
.livemesh-doc .panel {
|
41 |
+
display: inline-block;
|
42 |
+
width: 100%;
|
43 |
+
padding: 3%;
|
44 |
+
background: #fff;
|
45 |
+
font-size: 16px;
|
46 |
+
animation: smoothFade .3s;
|
47 |
+
-moz-animation: smoothFade .3s;
|
48 |
+
-webkit-animation: smoothFade .3s;
|
49 |
+
-o-animation: smoothFade .3s;
|
50 |
+
}
|
51 |
+
|
52 |
+
@keyframes smoothFade {
|
53 |
+
from {
|
54 |
+
opacity:0;
|
55 |
+
}
|
56 |
+
to {
|
57 |
+
opacity:1;
|
58 |
+
}
|
59 |
+
}
|
60 |
+
|
61 |
+
@-moz-keyframes smoothFade {
|
62 |
+
from {
|
63 |
+
opacity:0;
|
64 |
+
}
|
65 |
+
to {
|
66 |
+
opacity:1;
|
67 |
+
}
|
68 |
+
}
|
69 |
+
|
70 |
+
@-webkit-keyframes smoothFade {
|
71 |
+
from {
|
72 |
+
opacity:0;
|
73 |
+
}
|
74 |
+
to {
|
75 |
+
opacity:1;
|
76 |
+
}
|
77 |
+
}
|
78 |
+
|
79 |
+
.livemesh-doc .panel-left.visible {
|
80 |
+
display: inline-block;
|
81 |
+
animation: smoothFade .3s;
|
82 |
+
-moz-animation: smoothFade .3s;
|
83 |
+
-webkit-animation: smoothFade .3s;
|
84 |
+
-o-animation: smoothFade .3s;
|
85 |
+
}
|
86 |
+
|
87 |
+
.livemesh-doc .panel p {
|
88 |
+
font-size: 16px;
|
89 |
+
line-height: 1.7;
|
90 |
+
margin: 0 0 2em 0;
|
91 |
+
}
|
92 |
+
|
93 |
+
.livemesh-doc .panel-right p {
|
94 |
+
font-size: 15px;
|
95 |
+
line-height: 1.6;
|
96 |
+
}
|
97 |
+
|
98 |
+
.livemesh-doc .panel a {
|
99 |
+
text-decoration: none;
|
100 |
+
}
|
101 |
+
|
102 |
+
.livemesh-doc .panel a:focus,
|
103 |
+
.livemesh-doc .panel a:active {
|
104 |
+
outline: none;
|
105 |
+
box-shadow: none;
|
106 |
+
border: none;
|
107 |
+
}
|
108 |
+
|
109 |
+
.livemesh-doc .panel hr {
|
110 |
+
height: 1px;
|
111 |
+
margin: 2em 0;
|
112 |
+
|
113 |
+
border: 0;
|
114 |
+
border-top: solid 2px #E6EAED;
|
115 |
+
}
|
116 |
+
|
117 |
+
#plugins-panel hr {
|
118 |
+
padding-bottom: 0;
|
119 |
+
display: inline-block;
|
120 |
+
width: 100%;
|
121 |
+
margin-top: 10px;
|
122 |
+
}
|
123 |
+
|
124 |
+
.livemesh-doc .panel-left ul, .livemesh-doc .panel-left ol {
|
125 |
+
margin: 0 0 5% 0;
|
126 |
+
background: #F8F8F8;
|
127 |
+
padding: 5% 5% 5% 8%;
|
128 |
+
list-style-type: square;
|
129 |
+
font-size: 16px;
|
130 |
+
line-height: 1.8;
|
131 |
+
}
|
132 |
+
.livemesh-doc .panel-left ul li, .livemesh-doc .panel-left ol li {
|
133 |
+
border-bottom: dotted 1px #ddd;
|
134 |
+
margin-bottom: 20px;
|
135 |
+
padding-bottom: 20px;
|
136 |
+
}
|
137 |
+
.livemesh-doc .panel-left ul li:last-child, .livemesh-doc .panel-left ol li:last-child {
|
138 |
+
border: none;
|
139 |
+
margin-bottom: 0;
|
140 |
+
padding-bottom: 0;
|
141 |
+
}
|
142 |
+
|
143 |
+
.livemesh-doc .panel-left {
|
144 |
+
display: inline-block;
|
145 |
+
display: none;
|
146 |
+
width: 64%;
|
147 |
+
}
|
148 |
+
|
149 |
+
.livemesh-doc .panel-left img {
|
150 |
+
max-width: 100%;
|
151 |
+
height: auto;
|
152 |
+
border: solid 1px #E6EAED;
|
153 |
+
margin-top: 15px;
|
154 |
+
}
|
155 |
+
|
156 |
+
.livemesh-doc .panel-left h3 {
|
157 |
+
display: inline-block;
|
158 |
+
}
|
159 |
+
|
160 |
+
.livemesh-doc .panel-left h3, .livemesh-doc .panel-right h3, .livemesh-doc .panel-right p:first-child {
|
161 |
+
margin-top: 0;
|
162 |
+
line-height: 1.3;
|
163 |
+
}
|
164 |
+
|
165 |
+
.panel-left ul.anchor-nav {
|
166 |
+
padding: 5%;
|
167 |
+
}
|
168 |
+
|
169 |
+
.anchor-nav li {
|
170 |
+
list-style: none;
|
171 |
+
}
|
172 |
+
|
173 |
+
.back-to-top {
|
174 |
+
text-transform: uppercase;
|
175 |
+
font-size: 11px;
|
176 |
+
color: #999;
|
177 |
+
position: absolute;
|
178 |
+
right: 0;
|
179 |
+
top: 8px;
|
180 |
+
}
|
181 |
+
|
182 |
+
.livemesh-doc .panels h3 {
|
183 |
+
width: 100%;
|
184 |
+
position: relative;
|
185 |
+
padding-right: 90px;
|
186 |
+
}
|
187 |
+
|
188 |
+
.livemesh-doc h3 .back-to-top {
|
189 |
+
float: right;
|
190 |
+
}
|
191 |
+
|
192 |
+
.livemesh-doc .panel-right {
|
193 |
+
position: relative;
|
194 |
+
display: inline-block;
|
195 |
+
width: 32%;
|
196 |
+
float: right;
|
197 |
+
vertical-align: top;
|
198 |
+
}
|
199 |
+
|
200 |
+
.livemesh-doc .panel-aside {
|
201 |
+
margin-bottom: 25px;
|
202 |
+
background: #F8F8F8;
|
203 |
+
padding: 40px;
|
204 |
+
&.banner {
|
205 |
+
padding: 0;
|
206 |
+
}
|
207 |
+
img {
|
208 |
+
max-width: 100%;
|
209 |
+
}
|
210 |
+
}
|
211 |
+
|
212 |
+
.livemesh-doc .panel-aside:last-child {
|
213 |
+
margin-bottom: 0;
|
214 |
+
}
|
215 |
+
|
216 |
+
.livemesh-doc .panel-aside h4 {
|
217 |
+
margin-top: 0;
|
218 |
+
font-size: 1.1em;
|
219 |
+
line-height: 1.4;
|
220 |
+
}
|
221 |
+
|
222 |
+
.livemesh-doc .panel-aside ul {
|
223 |
+
margin-bottom: 25px;
|
224 |
+
}
|
225 |
+
|
226 |
+
.livemesh-doc .panel-aside li {
|
227 |
+
list-style-type: square;
|
228 |
+
margin-left: 18px;
|
229 |
+
}
|
230 |
+
|
231 |
+
.notices {
|
232 |
+
margin: 0;
|
233 |
+
display: none;
|
234 |
+
}
|
235 |
+
|
236 |
+
#wpbody-content .livemesh-doc .updated,
|
237 |
+
#wpbody-content .livemesh-doc .error {
|
238 |
+
margin-top: 2%;
|
239 |
+
}
|
240 |
+
|
241 |
+
.livemesh-doc .updated + .intro-wrap,
|
242 |
+
.livemesh-doc .error + .intro-wrap {
|
243 |
+
padding-top: 2%;
|
244 |
+
}
|
245 |
+
|
246 |
+
.livemesh-doc .intro-wrap {
|
247 |
+
padding: 4% 0 0 0;
|
248 |
+
}
|
249 |
+
|
250 |
+
.livemesh-doc .intro {
|
251 |
+
display: inline-block;
|
252 |
+
width: 50%;
|
253 |
+
margin-left: 4%;
|
254 |
+
vertical-align: top;
|
255 |
+
}
|
256 |
+
|
257 |
+
.livemesh-doc .intro h3 {
|
258 |
+
font-size: 50px;
|
259 |
+
line-height: 1.2;
|
260 |
+
font-weight: 300;
|
261 |
+
margin: 0 0 20px 0;
|
262 |
+
}
|
263 |
+
|
264 |
+
.livemesh-doc .intro h4 {
|
265 |
+
color: #868B96;
|
266 |
+
font-weight: normal;
|
267 |
+
font-size: 18px;
|
268 |
+
line-height: 1.6;
|
269 |
+
margin: 0;
|
270 |
+
}
|
271 |
+
|
272 |
+
.livemesh-doc .inline-list {
|
273 |
+
display: inline-block;
|
274 |
+
width: 100%;
|
275 |
+
margin: 0;
|
276 |
+
}
|
277 |
+
|
278 |
+
.livemesh-doc .inline-list li {
|
279 |
+
display: inline-block;
|
280 |
+
margin: 0 0 0 0;
|
281 |
+
}
|
282 |
+
|
283 |
+
.livemesh-doc .inline-list li:last-child {
|
284 |
+
margin-right: 0;
|
285 |
+
padding-right: 0;
|
286 |
+
}
|
287 |
+
|
288 |
+
.livemesh-doc .inline-list li a {
|
289 |
+
font-size: 18px;
|
290 |
+
text-decoration: none;
|
291 |
+
padding: 25px 30px;
|
292 |
+
display: inline-block;
|
293 |
+
}
|
294 |
+
|
295 |
+
.livemesh-doc .inline-list li span {
|
296 |
+
font-size: 18px;
|
297 |
+
width: 18px;
|
298 |
+
height: 18px;
|
299 |
+
}
|
300 |
+
|
301 |
+
.livemesh-doc .inline-list li a:active,
|
302 |
+
.livemesh-doc .inline-list li a::-moz-focus-inner,
|
303 |
+
.livemesh-doc ul.inline-list a:focus {
|
304 |
+
outline: none;
|
305 |
+
border: 0;
|
306 |
+
box-shadow: none;
|
307 |
+
}
|
308 |
+
|
309 |
+
.livemesh-doc ul.toc {
|
310 |
+
padding-left: 5%;
|
311 |
+
}
|
312 |
+
|
313 |
+
.livemesh-doc .toc li {
|
314 |
+
list-style-type: none;
|
315 |
+
}
|
316 |
+
|
317 |
+
.livemesh-doc .inline-list li.current a {
|
318 |
+
background: #fff;
|
319 |
+
outline: none;
|
320 |
+
border: none;
|
321 |
+
box-shadow: none;
|
322 |
+
border-top-right-radius: 3px;
|
323 |
+
border-top-left-radius: 3px;
|
324 |
+
}
|
325 |
+
|
326 |
+
.livemesh-doc .inline-list li a i {
|
327 |
+
font-size: 16px;
|
328 |
+
margin-right: 5px;
|
329 |
+
}
|
330 |
+
|
331 |
+
.livemesh-doc .enter-license {
|
332 |
+
display: inline-block;
|
333 |
+
width: 100%;
|
334 |
+
margin: 3% 0 1% 0;
|
335 |
+
}
|
336 |
+
|
337 |
+
::-webkit-input-placeholder {
|
338 |
+
font-family: 'Open Sans', sans-serif;
|
339 |
+
font-size: 15px;
|
340 |
+
line-height: 1.2;
|
341 |
+
}
|
342 |
+
|
343 |
+
:-moz-placeholder {
|
344 |
+
font-family: 'Open Sans', sans-serif;
|
345 |
+
font-size: 15px;
|
346 |
+
line-height: 1.2;
|
347 |
+
}
|
348 |
+
|
349 |
+
::-moz-placeholder {
|
350 |
+
font-family: 'Open Sans', sans-serif;
|
351 |
+
font-size: 15px;
|
352 |
+
line-height: 1.2;
|
353 |
+
}
|
354 |
+
|
355 |
+
:-ms-input-placeholder {
|
356 |
+
font-family: 'Open Sans', sans-serif;
|
357 |
+
font-size: 15px;
|
358 |
+
line-height: 1.2;
|
359 |
+
}
|
360 |
+
|
361 |
+
.livemesh-doc .enter-license label {
|
362 |
+
display: inline-block;
|
363 |
+
width: 100%;
|
364 |
+
margin-bottom: 2%;
|
365 |
+
}
|
366 |
+
|
367 |
+
.livemesh-doc .enter-license .license-key-input {
|
368 |
+
display: inline-block;
|
369 |
+
width: 100%;
|
370 |
+
padding: 10px;
|
371 |
+
margin-bottom: 4%;
|
372 |
+
font-family: 'Andale Mono', 'Lucida Console', monospace;
|
373 |
+
font-size: 16px;
|
374 |
+
}
|
375 |
+
|
376 |
+
.livemesh-doc .enter-license .submit {
|
377 |
+
display: inline-block;
|
378 |
+
width: 25%;
|
379 |
+
margin: 0;
|
380 |
+
padding: 0;
|
381 |
+
}
|
382 |
+
|
383 |
+
.livemesh-doc .activate {
|
384 |
+
display: inline-block;
|
385 |
+
width: 100%;
|
386 |
+
vertical-align: top;
|
387 |
+
}
|
388 |
+
|
389 |
+
.livemesh-doc .activate-text {
|
390 |
+
font-size: 14px;
|
391 |
+
line-height: 28px;
|
392 |
+
display: inline-block;
|
393 |
+
margin-right: 5px;
|
394 |
+
color: green;
|
395 |
+
}
|
396 |
+
|
397 |
+
.livemesh-doc #changelog {
|
398 |
+
display: none;
|
399 |
+
}
|
400 |
+
|
401 |
+
.livemesh-doc #install-video {
|
402 |
+
display: none;
|
403 |
+
}
|
404 |
+
|
405 |
+
.livemesh-doc .pro-feature{
|
406 |
+
color: #f94213;
|
407 |
+
}
|
408 |
+
|
409 |
+
#updates-panel ul {
|
410 |
+
border-bottom: 1px dotted #ddd;
|
411 |
+
padding: 1% 0 5% 3%;
|
412 |
+
list-style-position: inside;
|
413 |
+
background: transparent;
|
414 |
+
}
|
415 |
+
#updates-panel li {
|
416 |
+
border-bottom: 0;
|
417 |
+
margin-bottom: 0;
|
418 |
+
padding-bottom: 7px;
|
419 |
+
}
|
420 |
+
#updates-panel h4 {
|
421 |
+
font-size: 1.1em;
|
422 |
+
margin: .5em 0;
|
423 |
+
}
|
424 |
+
|
425 |
+
h4 .button {
|
426 |
+
float: right;
|
427 |
+
background: #5AC779;
|
428 |
+
color: #fff;
|
429 |
+
border-radius: 3px;
|
430 |
+
font-size: 14px;
|
431 |
+
padding: 3px 6px;
|
432 |
+
vertical-align: middle;
|
433 |
+
}
|
434 |
+
|
435 |
+
@media only screen and (max-width:768px) {
|
436 |
+
.livemesh-doc .intro, .plugin-image, .livemesh-doc .panel-left, .livemesh-doc .panel-right {
|
437 |
+
width: 100%;
|
438 |
+
float: none;
|
439 |
+
}
|
440 |
+
|
441 |
+
.livemesh-doc .intro {
|
442 |
+
padding: 0;
|
443 |
+
margin: 0;
|
444 |
+
}
|
445 |
+
|
446 |
+
.livemesh-doc .intro h2 {
|
447 |
+
font-size: 34px;
|
448 |
+
}
|
449 |
+
|
450 |
+
.livemesh-doc .intro h3 {
|
451 |
+
margin-bottom: 0;
|
452 |
+
}
|
453 |
+
|
454 |
+
.livemesh-doc .inline-list {
|
455 |
+
margin-bottom: 5%;
|
456 |
+
}
|
457 |
+
|
458 |
+
.livemesh-doc .inline-list li {
|
459 |
+
width: 100%;
|
460 |
+
}
|
461 |
+
|
462 |
+
.livemesh-doc .inline-list li a {
|
463 |
+
width: 100%;
|
464 |
+
display: block;
|
465 |
+
}
|
466 |
+
|
467 |
+
.livemesh-doc .plugin-image {
|
468 |
+
width: 100%;
|
469 |
+
margin-bottom: 15px;
|
470 |
+
padding: 6% 6% 0 6%;
|
471 |
+
}
|
472 |
+
|
473 |
+
.livemesh-doc .enter-license .submit {
|
474 |
+
width: 100%;
|
475 |
+
}
|
476 |
+
|
477 |
+
.livemesh-doc .activate {
|
478 |
+
width: 100%;
|
479 |
+
float: none;
|
480 |
+
text-align: left;
|
481 |
+
margin-bottom: 20px;
|
482 |
+
}
|
483 |
+
}
|
484 |
+
|
485 |
+
.livemesh-doc .button-wrap {
|
486 |
+
width: 100%;
|
487 |
+
a {
|
488 |
+
position: relative;
|
489 |
+
display: block;
|
490 |
+
margin: 60px auto;
|
491 |
+
max-width: 400px;
|
492 |
+
}
|
493 |
+
img.button-image {
|
494 |
+
max-width: 100%;
|
495 |
+
-webkit-transform: scale(1);
|
496 |
+
-ms-transform: scale(1);
|
497 |
+
transform: scale(1);
|
498 |
+
-webkit-transition: -webkit-transform 0.4s ease-in-out;
|
499 |
+
transition: transform 0.4s ease-in-out;
|
500 |
+
&:hover {
|
501 |
+
-webkit-transform: scale(1.1);
|
502 |
+
-ms-transform: scale(1.1);
|
503 |
+
transform: scale(1.1);
|
504 |
+
}
|
505 |
+
}
|
506 |
+
}
|
admin/assets/css/lvca-admin-page.css
ADDED
@@ -0,0 +1,418 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
html {
|
2 |
+
box-sizing: border-box; }
|
3 |
+
|
4 |
+
*, *::after, *::before {
|
5 |
+
box-sizing: inherit; }
|
6 |
+
|
7 |
+
html {
|
8 |
+
box-sizing: border-box; }
|
9 |
+
|
10 |
+
*, *::after, *::before {
|
11 |
+
box-sizing: inherit; }
|
12 |
+
|
13 |
+
/* ================= Wrapper DIVs ============================== */
|
14 |
+
.wrap > *,
|
15 |
+
#wpbody-content > * {
|
16 |
+
display: none; }
|
17 |
+
|
18 |
+
#wpbody-content > .wrap,
|
19 |
+
.wrap > form {
|
20 |
+
display: block;
|
21 |
+
overflow: hidden; }
|
22 |
+
|
23 |
+
#wpbody-content .lvca-wrap {
|
24 |
+
position: relative;
|
25 |
+
display: block;
|
26 |
+
padding-right: 20px; }
|
27 |
+
|
28 |
+
#lvca-buttons-wrap {
|
29 |
+
float: right; }
|
30 |
+
|
31 |
+
#lvca-buttons-wrap .lvca-button .dashicons {
|
32 |
+
line-height: 27px; }
|
33 |
+
|
34 |
+
#lvca-buttons-wrap a:last-child {
|
35 |
+
margin-right: 22px; }
|
36 |
+
|
37 |
+
/* =============== Banner ======================= */
|
38 |
+
#lvca-banner-wrap {
|
39 |
+
position: relative;
|
40 |
+
display: block;
|
41 |
+
padding: 0;
|
42 |
+
margin: 18px 1px 1px 1px;
|
43 |
+
min-height: 80px;
|
44 |
+
line-height: 80px;
|
45 |
+
box-sizing: content-box; }
|
46 |
+
|
47 |
+
#lvca-banner {
|
48 |
+
position: absolute;
|
49 |
+
display: block;
|
50 |
+
top: 0;
|
51 |
+
width: 100%;
|
52 |
+
padding: 0;
|
53 |
+
margin: 0;
|
54 |
+
background: #fff;
|
55 |
+
min-height: 80px;
|
56 |
+
line-height: 80px;
|
57 |
+
white-space: nowrap;
|
58 |
+
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); }
|
59 |
+
|
60 |
+
#lvca-banner h2 {
|
61 |
+
min-height: 80px;
|
62 |
+
margin: 0;
|
63 |
+
padding: 0;
|
64 |
+
line-height: 80px;
|
65 |
+
white-space: nowrap;
|
66 |
+
float: left;
|
67 |
+
color: #34495e;
|
68 |
+
font-weight: 500;
|
69 |
+
font-size: 20px; }
|
70 |
+
|
71 |
+
#lvca-banner h2 span {
|
72 |
+
position: relative;
|
73 |
+
display: inline-block;
|
74 |
+
width: 110px;
|
75 |
+
padding: 0 20px;
|
76 |
+
margin: 0 20px 0 0;
|
77 |
+
font-weight: 900;
|
78 |
+
text-transform: uppercase;
|
79 |
+
height: 80px;
|
80 |
+
background: #333743;
|
81 |
+
color: #fff;
|
82 |
+
text-align: center;
|
83 |
+
background-image: url("../images/logo-dark.png");
|
84 |
+
background-size: 93%;
|
85 |
+
background-position: 6px 48%;
|
86 |
+
background-repeat: no-repeat;
|
87 |
+
text-indent: -9999px; }
|
88 |
+
|
89 |
+
#lvca-banner.lvca-fixed {
|
90 |
+
position: fixed;
|
91 |
+
top: 32px;
|
92 |
+
z-index: 999; }
|
93 |
+
|
94 |
+
/* ========================= Buttons ============================= */
|
95 |
+
.lvca-button {
|
96 |
+
position: relative;
|
97 |
+
overflow: hidden;
|
98 |
+
padding: 4px 15px !important;
|
99 |
+
margin: 2px 5px 2px 0 !important;
|
100 |
+
color: #ffffff !important;
|
101 |
+
text-transform: uppercase;
|
102 |
+
letter-spacing: 2px;
|
103 |
+
cursor: pointer;
|
104 |
+
outline: none !important;
|
105 |
+
opacity: 0.9;
|
106 |
+
text-decoration: none;
|
107 |
+
-webkit-transition: all 0.3s ease-out !important;
|
108 |
+
-moz-transition: all 0.3s ease-out !important;
|
109 |
+
-ms-transition: all 0.3s ease-out !important;
|
110 |
+
-o-transition: all 0.3s ease-out !important;
|
111 |
+
transition: all 0.3s ease-out !important; }
|
112 |
+
|
113 |
+
#lvca-banner-wrap .lvca-button {
|
114 |
+
display: inline-block;
|
115 |
+
vertical-align: middle;
|
116 |
+
z-index: 1; }
|
117 |
+
|
118 |
+
.lvca-button:hover {
|
119 |
+
opacity: 1; }
|
120 |
+
|
121 |
+
.lvca-close-infobox,
|
122 |
+
#lvca_settings_save {
|
123 |
+
background: #4ECDC4; }
|
124 |
+
|
125 |
+
.lvca-close-infobox {
|
126 |
+
display: inline-block;
|
127 |
+
margin: 20px 0 11px 0;
|
128 |
+
padding: 4px 15px; }
|
129 |
+
|
130 |
+
#lvca_clear_cache {
|
131 |
+
margin: 0 0 0 18px !important; }
|
132 |
+
|
133 |
+
#lvca_settings_reset,
|
134 |
+
#lvca_clear_cache {
|
135 |
+
background: #e74c3c; }
|
136 |
+
|
137 |
+
.lvca-button .dashicons {
|
138 |
+
position: relative;
|
139 |
+
font-size: 15px;
|
140 |
+
line-height: 26px;
|
141 |
+
margin: 0 2px 0 -4px; }
|
142 |
+
|
143 |
+
.lvca-button:hover .dashicons {
|
144 |
+
-webkit-animation: toTopFromBottom 0.3s forwards;
|
145 |
+
-moz-animation: toTopFromBottom 0.3s forwards;
|
146 |
+
animation: toTopFromBottom 0.3s forwards; }
|
147 |
+
|
148 |
+
@-webkit-keyframes toTopFromBottom {
|
149 |
+
49% {
|
150 |
+
-webkit-transform: translate3d(0, -100%, 0); }
|
151 |
+
50% {
|
152 |
+
opacity: 0;
|
153 |
+
-webkit-transform: translate3d(0, 100%, 0); }
|
154 |
+
51% {
|
155 |
+
opacity: 1; } }
|
156 |
+
@-moz-keyframes toTopFromBottom {
|
157 |
+
49% {
|
158 |
+
-moz-transform: translate3d(0, -100%, 0); }
|
159 |
+
50% {
|
160 |
+
opacity: 0;
|
161 |
+
-moz-transform: translate3d(0, 100%, 0); }
|
162 |
+
51% {
|
163 |
+
opacity: 1; } }
|
164 |
+
@keyframes toTopFromBottom {
|
165 |
+
49% {
|
166 |
+
transform: translate3d(0, -100%, 0); }
|
167 |
+
50% {
|
168 |
+
opacity: 0;
|
169 |
+
transform: translate3d(0, 100%, 0); }
|
170 |
+
51% {
|
171 |
+
opacity: 1; } }
|
172 |
+
/* ============== INFO BOX ============================= */
|
173 |
+
#lvca-infobox {
|
174 |
+
position: fixed;
|
175 |
+
z-index: 99999;
|
176 |
+
top: 0;
|
177 |
+
bottom: 0;
|
178 |
+
left: 0;
|
179 |
+
right: 0;
|
180 |
+
opacity: 0;
|
181 |
+
visibility: hidden;
|
182 |
+
-webkit-transition: all 0.3s ease-out;
|
183 |
+
-moz-transition: all 0.3s ease-out;
|
184 |
+
-ms-transition: all 0.3s ease-out;
|
185 |
+
-o-transition: all 0.3s ease-out;
|
186 |
+
transition: all 0.3s ease-out; }
|
187 |
+
|
188 |
+
#lvca-infobox.lvca-infobox-loading {
|
189 |
+
opacity: 1;
|
190 |
+
visibility: visible; }
|
191 |
+
|
192 |
+
.lvca-info-overlay {
|
193 |
+
position: absolute;
|
194 |
+
top: 0;
|
195 |
+
bottom: 0;
|
196 |
+
left: 0;
|
197 |
+
right: 0;
|
198 |
+
background: #ffffff;
|
199 |
+
opacity: 0.86; }
|
200 |
+
|
201 |
+
.lvca-info-inner {
|
202 |
+
position: absolute;
|
203 |
+
display: block;
|
204 |
+
top: 50%;
|
205 |
+
width: 100%;
|
206 |
+
padding: 0;
|
207 |
+
margin: 0 auto;
|
208 |
+
line-height: 0;
|
209 |
+
text-align: center;
|
210 |
+
-webkit-transform: translateY(-50%);
|
211 |
+
-moz-transform: translateY(-50%);
|
212 |
+
-ms-transform: translateY(-50%);
|
213 |
+
-o-transform: translateY(-50%);
|
214 |
+
transform: translateY(-50%); }
|
215 |
+
|
216 |
+
.lvca-infobox-msg {
|
217 |
+
position: relative;
|
218 |
+
display: inline-block;
|
219 |
+
min-width: 245px;
|
220 |
+
padding: 20px 50px;
|
221 |
+
background: #34495e;
|
222 |
+
text-align: center;
|
223 |
+
line-height: 24px;
|
224 |
+
font-size: 14px;
|
225 |
+
font-weight: 400;
|
226 |
+
color: #ffffff;
|
227 |
+
-webkit-box-sizing: border-box;
|
228 |
+
-moz-box-sizing: border-box;
|
229 |
+
box-sizing: border-box;
|
230 |
+
-webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.3);
|
231 |
+
-moz-box-shadow: 0 0 35px rgba(0, 0, 0, 0.3);
|
232 |
+
box-shadow: 0 0 35px rgba(0, 0, 0, 0.3);
|
233 |
+
-webkit-transform: translateY(-60px);
|
234 |
+
-moz-transform: translateY(-60px);
|
235 |
+
-ms-transform: translateY(-60px);
|
236 |
+
-o-transform: translateY(-60px);
|
237 |
+
transform: translateY(-60px);
|
238 |
+
-webkit-transition: all 0.3s ease-out;
|
239 |
+
-moz-transition: all 0.3s ease-out;
|
240 |
+
-ms-transition: all 0.3s ease-out;
|
241 |
+
-o-transition: all 0.3s ease-out;
|
242 |
+
transition: all 0.3s ease-out; }
|
243 |
+
|
244 |
+
.lvca-infobox-loading .lvca-infobox-msg {
|
245 |
+
-webkit-transform: translateY(0);
|
246 |
+
-moz-transform: translateY(0);
|
247 |
+
-ms-transform: translateY(0);
|
248 |
+
-o-transform: translateY(0);
|
249 |
+
transform: translateY(0); }
|
250 |
+
|
251 |
+
.lvca-infobox-msg strong {
|
252 |
+
position: relative;
|
253 |
+
display: inline-block;
|
254 |
+
padding: 20px 0;
|
255 |
+
font-size: 16px;
|
256 |
+
text-transform: uppercase; }
|
257 |
+
|
258 |
+
#lvca-infobox-confirm {
|
259 |
+
display: none !important; }
|
260 |
+
|
261 |
+
.lvca-infobox-icon {
|
262 |
+
font-size: 24px;
|
263 |
+
margin: 0 10px 0 0; }
|
264 |
+
|
265 |
+
.lvca-infobox-msg .dashicons-yes {
|
266 |
+
color: #4ECDC4; }
|
267 |
+
|
268 |
+
.lvca-infobox-msg .dashicons-no-alt {
|
269 |
+
color: #e74c3c; }
|
270 |
+
|
271 |
+
.lvca-infobox-msg .lvca-infobox-alt {
|
272 |
+
color: #e74c3c; }
|
273 |
+
|
274 |
+
.lvca-close-infobox .dashicons {
|
275 |
+
color: #ffffff;
|
276 |
+
font-size: 16px;
|
277 |
+
font-weight: 900; }
|
278 |
+
|
279 |
+
.lvca-infobox-msg .dashicons-admin-generic {
|
280 |
+
-webkit-animation-name: spin;
|
281 |
+
-webkit-animation-duration: 1500ms;
|
282 |
+
-webkit-animation-iteration-count: infinite;
|
283 |
+
-webkit-animation-timing-function: linear;
|
284 |
+
-moz-animation-name: spin;
|
285 |
+
-moz-animation-duration: 1500ms;
|
286 |
+
-moz-animation-iteration-count: infinite;
|
287 |
+
-moz-animation-timing-function: linear;
|
288 |
+
-ms-animation-name: spin;
|
289 |
+
-ms-animation-duration: 1500ms;
|
290 |
+
-ms-animation-iteration-count: infinite;
|
291 |
+
-ms-animation-timing-function: linear;
|
292 |
+
animation-name: spin;
|
293 |
+
animation-duration: 1500ms;
|
294 |
+
animation-iteration-count: infinite;
|
295 |
+
animation-timing-function: linear; }
|
296 |
+
|
297 |
+
.lvca-infobox-msg .dashicons-admin-generic:before {
|
298 |
+
content: "\f111";
|
299 |
+
text-align: center;
|
300 |
+
display: block;
|
301 |
+
position: relative;
|
302 |
+
height: 22px;
|
303 |
+
width: 22px;
|
304 |
+
top: -3px;
|
305 |
+
left: -1px; }
|
306 |
+
|
307 |
+
@-ms-keyframes spin {
|
308 |
+
from {
|
309 |
+
-ms-transform: rotate(0deg); }
|
310 |
+
to {
|
311 |
+
-ms-transform: rotate(360deg); } }
|
312 |
+
@-moz-keyframes spin {
|
313 |
+
from {
|
314 |
+
-moz-transform: rotate(0deg); }
|
315 |
+
to {
|
316 |
+
-moz-transform: rotate(360deg); } }
|
317 |
+
@-webkit-keyframes spin {
|
318 |
+
from {
|
319 |
+
-webkit-transform: rotate(0deg); }
|
320 |
+
to {
|
321 |
+
-webkit-transform: rotate(360deg); } }
|
322 |
+
@keyframes spin {
|
323 |
+
from {
|
324 |
+
transform: rotate(0deg); }
|
325 |
+
to {
|
326 |
+
transform: rotate(360deg); } }
|
327 |
+
/* ===================== BOX WRAPPER ====================== */
|
328 |
+
.settings-options .lvca-inner {
|
329 |
+
margin: 1px 0 0 0; }
|
330 |
+
|
331 |
+
.lvca-settings .lvca-tabs-wrap {
|
332 |
+
margin: 0; }
|
333 |
+
|
334 |
+
.lvca-settings .lvca-box-side {
|
335 |
+
background: #333743; }
|
336 |
+
|
337 |
+
.lvca-settings .lvca-box-side * {
|
338 |
+
color: #e8e9ef; }
|
339 |
+
|
340 |
+
.lvca-box-side {
|
341 |
+
display: table-cell;
|
342 |
+
vertical-align: top;
|
343 |
+
min-width: 150px;
|
344 |
+
background: #e1e1e1; }
|
345 |
+
|
346 |
+
.lvca-settings .lvca-box-side {
|
347 |
+
border-bottom: 1px solid #bcbfc7; }
|
348 |
+
|
349 |
+
.lvca-box-side h3 {
|
350 |
+
margin: 0;
|
351 |
+
padding: 15px 12px 15px 12px !important;
|
352 |
+
font-size: 13px;
|
353 |
+
line-height: 1.4;
|
354 |
+
text-transform: uppercase;
|
355 |
+
letter-spacing: 4px;
|
356 |
+
background: #404554; }
|
357 |
+
|
358 |
+
.lvca-box-side .lvca-infobox-icon {
|
359 |
+
padding: 15px 12px 15px 12px !important;
|
360 |
+
font-size: 32px; }
|
361 |
+
|
362 |
+
.lvca-box-inner {
|
363 |
+
display: table-cell;
|
364 |
+
margin: 0px !important;
|
365 |
+
padding: 8px 20px 40px 20px !important;
|
366 |
+
vertical-align: top;
|
367 |
+
width: 100%;
|
368 |
+
background: #fff; }
|
369 |
+
|
370 |
+
.lvca-settings .lvca-box-inner {
|
371 |
+
border-top: 1px solid #e1e1e1; }
|
372 |
+
|
373 |
+
.lvca-settings .lvca-box-inner {
|
374 |
+
padding: 0 0 40px 0 !important; }
|
375 |
+
|
376 |
+
.lvca-box-inner p {
|
377 |
+
color: #888;
|
378 |
+
font-style: normal;
|
379 |
+
max-width: 650px; }
|
380 |
+
|
381 |
+
.lvca-box-inner h3 {
|
382 |
+
padding-left: 0 !important;
|
383 |
+
padding-right: 0 !important;
|
384 |
+
font-size: 13px;
|
385 |
+
line-height: 20px; }
|
386 |
+
|
387 |
+
.lvca-label-outside {
|
388 |
+
padding: 0 0 0 18px; }
|
389 |
+
|
390 |
+
.lvca-settings .lvca-toggle {
|
391 |
+
position: relative;
|
392 |
+
display: inline-block;
|
393 |
+
top: 5px;
|
394 |
+
box-sizing: content-box; }
|
395 |
+
|
396 |
+
.lvca-settings .lvca-type-checkbox .lvca-number-label {
|
397 |
+
top: 5px; }
|
398 |
+
|
399 |
+
.lvca-settings .lvca-desc {
|
400 |
+
font-size: 13px;
|
401 |
+
line-height: 20px;
|
402 |
+
max-width: 650px; }
|
403 |
+
|
404 |
+
.lvca-box-inner ul {
|
405 |
+
list-style: inherit;
|
406 |
+
list-style-type: square; }
|
407 |
+
.lvca-box-inner li {
|
408 |
+
margin: 0 0 10px 20px;
|
409 |
+
color: #888;
|
410 |
+
max-width: 600px;
|
411 |
+
line-height: 1.4em; }
|
412 |
+
.lvca-box-inner li strong {
|
413 |
+
color: #444; }
|
414 |
+
.lvca-box-inner .lvca-button.purchase, .lvca-box-inner .lvca-button.know-more {
|
415 |
+
background: #46a5d5;
|
416 |
+
padding: 12px 30px !important; }
|
417 |
+
|
418 |
+
/*# sourceMappingURL=lvca-admin-page.css.map */
|
admin/assets/css/lvca-admin-page.css.map
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"version": 3,
|
3 |
+
"mappings": "AAGE,IAAK;EACH,UAAU,EAAE,UAAU;;AAItB,sBAEU;EACR,UAAU,EAAE,OAAO;;AARvB,IAAK;EACH,UAAU,EAAE,UAAU;;AAItB,sBAEU;EACR,UAAU,EAAE,OAAO;;;ACDzB;mBACoB;EAClB,OAAO,EAAE,IAAI;;AAEf;YACa;EACX,OAAO,EAAE,KAAK;EACd,QAAQ,EAAE,MAAM;;AAElB,0BAA2B;EACzB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,KAAK;EACd,aAAa,EAAE,IAAI;;AAGrB,kBAAmB;EACjB,KAAK,EAAE,KAAK;;AAEd,0CAA2C;EACzC,WAAW,EAAE,IAAI;;AAEnB,+BAAgC;EAC9B,YAAY,EAAE,IAAI;;;AAKpB,iBAAkB;EAChB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,gBAAgB;EACxB,UAAU,EAAE,IAAI;EAChB,WAAW,EAAE,IAAI;EACjB,UAAU,EAAE,WAAW;;AAEzB,YAAa;EACX,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,KAAK;EACd,GAAG,EAAE,CAAC;EACN,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,CAAC;EACT,UAAU,EAAE,IAAI;EAChB,UAAU,EAAE,IAAI;EAChB,WAAW,EAAE,IAAI;EACjB,WAAW,EAAE,MAAM;EACnB,UAAU,EAAE,8BAA0B;;AAExC,eAAgB;EACd,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,WAAW,EAAE,IAAI;EACjB,WAAW,EAAE,MAAM;EACnB,KAAK,EAAE,IAAI;EACX,KAAK,EAAE,OAAO;EACd,WAAW,EAAE,GAAG;EAChB,SAAS,EAAE,IAAI;;AAEjB,oBAAqB;EACnB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,KAAK;EACZ,OAAO,EAAE,MAAM;EACf,MAAM,EAAE,UAAU;EAClB,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,SAAS;EACzB,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,OAAO;EACnB,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;EAClB,gBAAgB,EAAE,8BAA8B;EAChD,eAAe,EAAE,GAAG;EACpB,mBAAmB,EAAE,OAAO;EAC5B,iBAAiB,EAAE,SAAS;EAC5B,WAAW,EAAE,OAAO;;AAEtB,uBAAwB;EACtB,QAAQ,EAAE,KAAK;EACf,GAAG,EAAE,IAAI;EACT,OAAO,EAAE,GAAG;;;AAKd,YAAa;EACX,QAAQ,EAAE,QAAQ;EAClB,QAAQ,EAAE,MAAM;EAChB,OAAO,EAAE,mBAAmB;EAC5B,MAAM,EAAE,wBAAwB;EAChC,KAAK,EAAE,kBAAkB;EACzB,cAAc,EAAE,SAAS;EACzB,cAAc,EAAE,GAAG;EACnB,MAAM,EAAE,OAAO;EACf,OAAO,EAAE,eAAe;EACxB,OAAO,EAAE,GAAG;EACZ,eAAe,EAAE,IAAI;EACrB,kBAAkB,EAAE,4BAA4B;EAChD,eAAe,EAAE,4BAA4B;EAC7C,cAAc,EAAE,4BAA4B;EAC5C,aAAa,EAAE,4BAA4B;EAC3C,UAAU,EAAE,4BAA4B;;AAE1C,8BAA+B;EAC7B,OAAO,EAAE,YAAY;EACrB,cAAc,EAAE,MAAM;EACtB,OAAO,EAAE,CAAC;;AAEZ,kBAAmB;EACjB,OAAO,EAAE,CAAC;;AAGZ;mBACoB;EAClB,UAAU,EAAE,OAAO;;AAErB,mBAAoB;EAClB,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,aAAa;EACrB,OAAO,EAAE,QAAQ;;AAEnB,iBAAkB;EAChB,MAAM,EAAE,qBAAqB;;AAG/B;iBACkB;EAChB,UAAU,EAAE,OAAO;;AAErB,uBAAwB;EACtB,QAAQ,EAAE,QAAQ;EAClB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;EACjB,MAAM,EAAE,YAAY;;AAEtB,6BAA8B;EAC5B,iBAAiB,EAAE,6BAA6B;EAChD,cAAc,EAAE,6BAA6B;EAC7C,SAAS,EAAE,6BAA6B;;AAE1C,kCAIG;EAHD,GAAI;IAAC,iBAAiB,EAAE,wBAAsB;EAC9C,GAAI;IAAC,OAAO,EAAE,CAAC;IAAC,iBAAiB,EAAE,uBAAqB;EACxD,GAAI;IAAC,OAAO,EAAE,CAAC;AAEjB,+BAIG;EAHD,GAAI;IAAC,cAAc,EAAE,wBAAsB;EAC3C,GAAI;IAAC,OAAO,EAAE,CAAC;IAAC,cAAc,EAAE,uBAAqB;EACrD,GAAI;IAAC,OAAO,EAAE,CAAC;AAEjB,0BAIG;EAHD,GAAI;IAAC,SAAS,EAAE,wBAAsB;EACtC,GAAI;IAAC,OAAO,EAAE,CAAC;IAAC,SAAS,EAAE,uBAAqB;EAChD,GAAI;IAAC,OAAO,EAAE,CAAC;;AAKjB,aAAc;EACZ,QAAQ,EAAE,KAAK;EACf,OAAO,EAAE,KAAK;EACd,GAAG,EAAE,CAAC;EACN,MAAM,EAAE,CAAC;EACT,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,CAAC;EACR,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,MAAM;EAClB,kBAAkB,EAAE,iBAAiB;EACrC,eAAe,EAAE,iBAAiB;EAClC,cAAc,EAAE,iBAAiB;EACjC,aAAa,EAAE,iBAAiB;EAChC,UAAU,EAAE,iBAAiB;;AAE/B,kCAAkC;EAChC,OAAO,EAAE,CAAC;EACV,UAAU,EAAE,OAAO;;AAErB,kBAAmB;EACjB,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,CAAC;EACN,MAAM,EAAE,CAAC;EACT,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,CAAC;EACR,UAAU,EAAE,OAAO;EACnB,OAAO,EAAE,IAAI;;AAEf,gBAAiB;EACf,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,KAAK;EACd,GAAG,EAAE,GAAG;EACR,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,MAAM;EACd,WAAW,EAAE,CAAC;EACd,UAAU,EAAE,MAAM;EAClB,iBAAiB,EAAE,gBAAgB;EACnC,cAAc,EAAE,gBAAgB;EAChC,aAAa,EAAE,gBAAgB;EAC/B,YAAY,EAAE,gBAAgB;EAC9B,SAAS,EAAE,gBAAgB;;AAE7B,iBAAkB;EAChB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,SAAS,EAAE,KAAK;EAChB,OAAO,EAAE,SAAS;EAClB,UAAU,EAAE,OAAO;EACnB,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,IAAI;EACjB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,KAAK,EAAE,OAAO;EACd,kBAAkB,EAAE,UAAU;EAC9B,eAAe,EAAE,UAAU;EAC3B,UAAU,EAAE,UAAU;EACtB,kBAAkB,EAAE,2BAAwB;EAC5C,eAAe,EAAE,2BAAwB;EACzC,UAAU,EAAE,2BAAwB;EACpC,iBAAiB,EAAE,iBAAiB;EACpC,cAAc,EAAE,iBAAiB;EACjC,aAAa,EAAE,iBAAiB;EAChC,YAAY,EAAE,iBAAiB;EAC/B,SAAS,EAAE,iBAAiB;EAC5B,kBAAkB,EAAE,iBAAiB;EACrC,eAAe,EAAE,iBAAiB;EAClC,cAAc,EAAE,iBAAiB;EACjC,aAAa,EAAE,iBAAiB;EAChC,UAAU,EAAE,iBAAiB;;AAE/B,uCAAwC;EACtC,iBAAiB,EAAE,aAAa;EAChC,cAAc,EAAE,aAAa;EAC7B,aAAa,EAAE,aAAa;EAC5B,YAAY,EAAE,aAAa;EAC3B,SAAS,EAAE,aAAa;;AAE1B,wBAAyB;EACvB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,OAAO,EAAE,MAAM;EACf,SAAS,EAAE,IAAI;EACf,cAAc,EAAE,SAAS;;AAE3B,qBAAsB;EACpB,OAAO,EAAE,eAAe;;AAE1B,kBAAmB;EACjB,SAAS,EAAE,IAAI;EACf,MAAM,EAAE,UAAU;;AAEpB,gCAAiC;EAC/B,KAAK,EAAE,OAAO;;AAEhB,mCAAoC;EAClC,KAAK,EAAE,OAAO;;AAEhB,mCAAoC;EAClC,KAAK,EAAE,OAAO;;AAEhB,8BAA+B;EAC7B,KAAK,EAAE,OAAO;EACd,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;;AAGlB,0CAA2C;EACzC,sBAAsB,EAAE,IAAI;EAC5B,0BAA0B,EAAE,MAAM;EAClC,iCAAiC,EAAE,QAAQ;EAC3C,iCAAiC,EAAE,MAAM;EACzC,mBAAmB,EAAE,IAAI;EACzB,uBAAuB,EAAE,MAAM;EAC/B,8BAA8B,EAAE,QAAQ;EACxC,8BAA8B,EAAE,MAAM;EACtC,kBAAkB,EAAE,IAAI;EACxB,sBAAsB,EAAE,MAAM;EAC9B,6BAA6B,EAAE,QAAQ;EACvC,6BAA6B,EAAE,MAAM;EACrC,cAAc,EAAE,IAAI;EACpB,kBAAkB,EAAE,MAAM;EAC1B,yBAAyB,EAAE,QAAQ;EACnC,yBAAyB,EAAE,MAAM;;AAEnC,iDAAkD;EAChD,OAAO,EAAE,OAAO;EAChB,UAAU,EAAE,MAAM;EAClB,OAAO,EAAE,KAAK;EACd,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,IAAI;EACZ,KAAK,EAAE,IAAI;EACX,GAAG,EAAE,IAAI;EACT,IAAI,EAAE,IAAI;;AAEZ,mBAGG;EAFD,IAAK;IAAE,aAAa,EAAE,YAAY;EAClC,EAAG;IAAE,aAAa,EAAE,cAAc;AAEpC,oBAGG;EAFD,IAAK;IAAE,cAAc,EAAE,YAAY;EACnC,EAAG;IAAE,cAAc,EAAE,cAAc;AAErC,uBAGG;EAFD,IAAK;IAAE,iBAAiB,EAAE,YAAY;EACtC,EAAG;IAAE,iBAAiB,EAAE,cAAc;AAExC,eAOG;EAND,IAAK;IACH,SAAS,EAAC,YAAY;EAExB,EAAG;IACD,SAAS,EAAC,cAAc;;AAQ5B,6BAA8B;EAC5B,MAAM,EAAE,SAAS;;AAEnB,8BAA+B;EAC7B,MAAM,EAAE,CAAC;;AAEX,6BAA8B;EAC5B,UAAU,EAAE,OAAO;;AAErB,+BAAgC;EAC9B,KAAK,EAAE,OAAO;;AAEhB,cAAe;EACb,OAAO,EAAE,UAAU;EACnB,cAAc,EAAE,GAAG;EACnB,SAAS,EAAE,KAAK;EAChB,UAAU,EAAE,OAAO;;AAErB,6BAA8B;EAC5B,aAAa,EAAE,iBAAiB;;AAElC,iBAAkB;EAChB,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,8BAA8B;EACvC,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;EAChB,cAAc,EAAE,SAAS;EACzB,cAAc,EAAE,GAAG;EACnB,UAAU,EAAE,OAAO;;AAErB,iCAAkC;EAChC,OAAO,EAAE,8BAA8B;EACvC,SAAS,EAAE,IAAI;;AAEjB,eAAgB;EACd,OAAO,EAAE,UAAU;EACnB,MAAM,EAAE,cAAc;EACtB,OAAO,EAAE,6BAA6B;EACtC,cAAc,EAAE,GAAG;EACnB,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,IAAI;;AAElB,8BAA+B;EAC7B,UAAU,EAAE,iBAAiB;;AAE/B,8BAA+B;EAC7B,OAAO,EAAE,qBAAqB;;AAEhC,iBAAkB;EAChB,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;EAClB,SAAS,EAAE,KAAK;;AAElB,kBAAmB;EACjB,YAAY,EAAE,YAAY;EAC1B,aAAa,EAAE,YAAY;EAC3B,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;;AAEnB,mBAAoB;EAClB,OAAO,EAAE,UAAU;;AAErB,2BAA4B;EAC1B,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,GAAG,EAAE,GAAG;EACR,UAAU,EAAE,WAAW;;AAEzB,qDAAsD;EACpD,GAAG,EAAE,GAAG;;AAEV,yBAA0B;EACxB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;EACjB,SAAS,EAAE,KAAK;;AAIhB,kBAAG;EACD,UAAU,EAAE,OAAO;EACnB,eAAe,EAAE,MAAM;AAEzB,kBAAG;EACD,MAAM,EAAE,aAAa;EACrB,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,KAAK;EAChB,WAAW,EAAE,KAAK;AAGpB,yBAAU;EACR,KAAK,EAAE,IAAI;AAGb,6EAA8C;EAC5C,UAAU,EAAE,OAAO;EACnB,OAAO,EAAE,oBAAoB",
|
4 |
+
"sources": ["../../../../../bower_components/neat/app/assets/stylesheets/grid/_box-sizing.scss","lvca-admin-page.scss"],
|
5 |
+
"names": [],
|
6 |
+
"file": "lvca-admin-page.css"
|
7 |
+
}
|
admin/assets/css/lvca-admin-page.scss
ADDED
@@ -0,0 +1,428 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@import "bourbon";
|
2 |
+
@import "neat";
|
3 |
+
@import "flexbox";
|
4 |
+
|
5 |
+
@import "../../../assets/css/lvca-lib";
|
6 |
+
|
7 |
+
|
8 |
+
/* ================= Wrapper DIVs ============================== */
|
9 |
+
|
10 |
+
|
11 |
+
.wrap > *,
|
12 |
+
#wpbody-content > * {
|
13 |
+
display: none;
|
14 |
+
}
|
15 |
+
#wpbody-content >.wrap,
|
16 |
+
.wrap > form {
|
17 |
+
display: block;
|
18 |
+
overflow: hidden;
|
19 |
+
}
|
20 |
+
#wpbody-content .lvca-wrap {
|
21 |
+
position: relative;
|
22 |
+
display: block;
|
23 |
+
padding-right: 20px;
|
24 |
+
}
|
25 |
+
|
26 |
+
#lvca-buttons-wrap {
|
27 |
+
float: right;
|
28 |
+
}
|
29 |
+
#lvca-buttons-wrap .lvca-button .dashicons {
|
30 |
+
line-height: 27px;
|
31 |
+
}
|
32 |
+
#lvca-buttons-wrap a:last-child {
|
33 |
+
margin-right: 22px;
|
34 |
+
}
|
35 |
+
|
36 |
+
/* =============== Banner ======================= */
|
37 |
+
|
38 |
+
#lvca-banner-wrap {
|
39 |
+
position: relative;
|
40 |
+
display: block;
|
41 |
+
padding: 0;
|
42 |
+
margin: 18px 1px 1px 1px;
|
43 |
+
min-height: 80px;
|
44 |
+
line-height: 80px;
|
45 |
+
box-sizing: content-box;
|
46 |
+
}
|
47 |
+
#lvca-banner {
|
48 |
+
position: absolute;
|
49 |
+
display: block;
|
50 |
+
top: 0;
|
51 |
+
width: 100%;
|
52 |
+
padding: 0;
|
53 |
+
margin: 0;
|
54 |
+
background: #fff;
|
55 |
+
min-height: 80px;
|
56 |
+
line-height: 80px;
|
57 |
+
white-space: nowrap;
|
58 |
+
box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
|
59 |
+
}
|
60 |
+
#lvca-banner h2 {
|
61 |
+
min-height: 80px;
|
62 |
+
margin: 0;
|
63 |
+
padding: 0;
|
64 |
+
line-height: 80px;
|
65 |
+
white-space: nowrap;
|
66 |
+
float: left;
|
67 |
+
color: #34495e;
|
68 |
+
font-weight: 500;
|
69 |
+
font-size: 20px;
|
70 |
+
}
|
71 |
+
#lvca-banner h2 span {
|
72 |
+
position: relative;
|
73 |
+
display: inline-block;
|
74 |
+
width: 110px;
|
75 |
+
padding: 0 20px;
|
76 |
+
margin: 0 20px 0 0;
|
77 |
+
font-weight: 900;
|
78 |
+
text-transform: uppercase;
|
79 |
+
height: 80px;
|
80 |
+
background: #333743;
|
81 |
+
color: #fff;
|
82 |
+
text-align: center;
|
83 |
+
background-image: url('../images/logo-dark.png');
|
84 |
+
background-size: 93%;
|
85 |
+
background-position: 6px 48%;
|
86 |
+
background-repeat: no-repeat;
|
87 |
+
text-indent: -9999px;
|
88 |
+
}
|
89 |
+
#lvca-banner.lvca-fixed {
|
90 |
+
position: fixed;
|
91 |
+
top: 32px;
|
92 |
+
z-index: 999;
|
93 |
+
}
|
94 |
+
|
95 |
+
/* ========================= Buttons ============================= */
|
96 |
+
|
97 |
+
.lvca-button {
|
98 |
+
position: relative;
|
99 |
+
overflow: hidden;
|
100 |
+
padding: 4px 15px !important;
|
101 |
+
margin: 2px 5px 2px 0 !important;
|
102 |
+
color: #ffffff !important;
|
103 |
+
text-transform: uppercase;
|
104 |
+
letter-spacing: 2px;
|
105 |
+
cursor: pointer;
|
106 |
+
outline: none !important;
|
107 |
+
opacity: 0.9;
|
108 |
+
text-decoration: none;
|
109 |
+
-webkit-transition: all 0.3s ease-out !important;
|
110 |
+
-moz-transition: all 0.3s ease-out !important;
|
111 |
+
-ms-transition: all 0.3s ease-out !important;
|
112 |
+
-o-transition: all 0.3s ease-out !important;
|
113 |
+
transition: all 0.3s ease-out !important;
|
114 |
+
}
|
115 |
+
#lvca-banner-wrap .lvca-button {
|
116 |
+
display: inline-block;
|
117 |
+
vertical-align: middle;
|
118 |
+
z-index: 1;
|
119 |
+
}
|
120 |
+
.lvca-button:hover {
|
121 |
+
opacity: 1;
|
122 |
+
}
|
123 |
+
|
124 |
+
.lvca-close-infobox,
|
125 |
+
#lvca_settings_save {
|
126 |
+
background: #4ECDC4;
|
127 |
+
}
|
128 |
+
.lvca-close-infobox {
|
129 |
+
display: inline-block;
|
130 |
+
margin: 20px 0 11px 0;
|
131 |
+
padding: 4px 15px;
|
132 |
+
}
|
133 |
+
#lvca_clear_cache {
|
134 |
+
margin: 0 0 0 18px !important;
|
135 |
+
}
|
136 |
+
|
137 |
+
#lvca_settings_reset,
|
138 |
+
#lvca_clear_cache {
|
139 |
+
background: #e74c3c;
|
140 |
+
}
|
141 |
+
.lvca-button .dashicons {
|
142 |
+
position: relative;
|
143 |
+
font-size: 15px;
|
144 |
+
line-height: 26px;
|
145 |
+
margin: 0 2px 0 -4px;
|
146 |
+
}
|
147 |
+
.lvca-button:hover .dashicons {
|
148 |
+
-webkit-animation: toTopFromBottom 0.3s forwards;
|
149 |
+
-moz-animation: toTopFromBottom 0.3s forwards;
|
150 |
+
animation: toTopFromBottom 0.3s forwards;
|
151 |
+
}
|
152 |
+
@-webkit-keyframes toTopFromBottom {
|
153 |
+
49% {-webkit-transform: translate3d(0,-100%,0);}
|
154 |
+
50% {opacity: 0;-webkit-transform: translate3d(0,100%,0);}
|
155 |
+
51% {opacity: 1;}
|
156 |
+
}
|
157 |
+
@-moz-keyframes toTopFromBottom {
|
158 |
+
49% {-moz-transform: translate3d(0,-100%,0);}
|
159 |
+
50% {opacity: 0;-moz-transform: translate3d(0,100%,0);}
|
160 |
+
51% {opacity: 1;}
|
161 |
+
}
|
162 |
+
@keyframes toTopFromBottom {
|
163 |
+
49% {transform: translate3d(0,-100%,0);}
|
164 |
+
50% {opacity: 0;transform: translate3d(0,100%,0);}
|
165 |
+
51% {opacity: 1;}
|
166 |
+
}
|
167 |
+
|
168 |
+
/* ============== INFO BOX ============================= */
|
169 |
+
|
170 |
+
#lvca-infobox {
|
171 |
+
position: fixed;
|
172 |
+
z-index: 99999;
|
173 |
+
top: 0;
|
174 |
+
bottom: 0;
|
175 |
+
left: 0;
|
176 |
+
right: 0;
|
177 |
+
opacity: 0;
|
178 |
+
visibility: hidden;
|
179 |
+
-webkit-transition: all 0.3s ease-out;
|
180 |
+
-moz-transition: all 0.3s ease-out;
|
181 |
+
-ms-transition: all 0.3s ease-out;
|
182 |
+
-o-transition: all 0.3s ease-out;
|
183 |
+
transition: all 0.3s ease-out;
|
184 |
+
}
|
185 |
+
#lvca-infobox.lvca-infobox-loading{
|
186 |
+
opacity: 1;
|
187 |
+
visibility: visible;
|
188 |
+
}
|
189 |
+
.lvca-info-overlay {
|
190 |
+
position: absolute;
|
191 |
+
top: 0;
|
192 |
+
bottom: 0;
|
193 |
+
left: 0;
|
194 |
+
right: 0;
|
195 |
+
background: #ffffff;
|
196 |
+
opacity: 0.86;
|
197 |
+
}
|
198 |
+
.lvca-info-inner {
|
199 |
+
position: absolute;
|
200 |
+
display: block;
|
201 |
+
top: 50%;
|
202 |
+
width: 100%;
|
203 |
+
padding: 0;
|
204 |
+
margin: 0 auto;
|
205 |
+
line-height: 0;
|
206 |
+
text-align: center;
|
207 |
+
-webkit-transform: translateY(-50%);
|
208 |
+
-moz-transform: translateY(-50%);
|
209 |
+
-ms-transform: translateY(-50%);
|
210 |
+
-o-transform: translateY(-50%);
|
211 |
+
transform: translateY(-50%);
|
212 |
+
}
|
213 |
+
.lvca-infobox-msg {
|
214 |
+
position: relative;
|
215 |
+
display: inline-block;
|
216 |
+
min-width: 245px;
|
217 |
+
padding: 20px 50px;
|
218 |
+
background: #34495e;
|
219 |
+
text-align: center;
|
220 |
+
line-height: 24px;
|
221 |
+
font-size: 14px;
|
222 |
+
font-weight: 400;
|
223 |
+
color: #ffffff;
|
224 |
+
-webkit-box-sizing: border-box;
|
225 |
+
-moz-box-sizing: border-box;
|
226 |
+
box-sizing: border-box;
|
227 |
+
-webkit-box-shadow: 0 0 35px rgba(0,0,0,0.3);
|
228 |
+
-moz-box-shadow: 0 0 35px rgba(0,0,0,0.3);
|
229 |
+
box-shadow: 0 0 35px rgba(0,0,0,0.3);
|
230 |
+
-webkit-transform: translateY(-60px);
|
231 |
+
-moz-transform: translateY(-60px);
|
232 |
+
-ms-transform: translateY(-60px);
|
233 |
+
-o-transform: translateY(-60px);
|
234 |
+
transform: translateY(-60px);
|
235 |
+
-webkit-transition: all 0.3s ease-out;
|
236 |
+
-moz-transition: all 0.3s ease-out;
|
237 |
+
-ms-transition: all 0.3s ease-out;
|
238 |
+
-o-transition: all 0.3s ease-out;
|
239 |
+
transition: all 0.3s ease-out;
|
240 |
+
}
|
241 |
+
.lvca-infobox-loading .lvca-infobox-msg {
|
242 |
+
-webkit-transform: translateY(0);
|
243 |
+
-moz-transform: translateY(0);
|
244 |
+
-ms-transform: translateY(0);
|
245 |
+
-o-transform: translateY(0);
|
246 |
+
transform: translateY(0);
|
247 |
+
}
|
248 |
+
.lvca-infobox-msg strong {
|
249 |
+
position: relative;
|
250 |
+
display: inline-block;
|
251 |
+
padding: 20px 0;
|
252 |
+
font-size: 16px;
|
253 |
+
text-transform: uppercase;
|
254 |
+
}
|
255 |
+
#lvca-infobox-confirm {
|
256 |
+
display: none !important;
|
257 |
+
}
|
258 |
+
.lvca-infobox-icon {
|
259 |
+
font-size: 24px;
|
260 |
+
margin: 0 10px 0 0;
|
261 |
+
}
|
262 |
+
.lvca-infobox-msg .dashicons-yes {
|
263 |
+
color: #4ECDC4;
|
264 |
+
}
|
265 |
+
.lvca-infobox-msg .dashicons-no-alt {
|
266 |
+
color: #e74c3c;
|
267 |
+
}
|
268 |
+
.lvca-infobox-msg .lvca-infobox-alt {
|
269 |
+
color: #e74c3c;
|
270 |
+
}
|
271 |
+
.lvca-close-infobox .dashicons {
|
272 |
+
color: #ffffff;
|
273 |
+
font-size: 16px;
|
274 |
+
font-weight: 900;
|
275 |
+
}
|
276 |
+
|
277 |
+
.lvca-infobox-msg .dashicons-admin-generic {
|
278 |
+
-webkit-animation-name: spin;
|
279 |
+
-webkit-animation-duration: 1500ms;
|
280 |
+
-webkit-animation-iteration-count: infinite;
|
281 |
+
-webkit-animation-timing-function: linear;
|
282 |
+
-moz-animation-name: spin;
|
283 |
+
-moz-animation-duration: 1500ms;
|
284 |
+
-moz-animation-iteration-count: infinite;
|
285 |
+
-moz-animation-timing-function: linear;
|
286 |
+
-ms-animation-name: spin;
|
287 |
+
-ms-animation-duration: 1500ms;
|
288 |
+
-ms-animation-iteration-count: infinite;
|
289 |
+
-ms-animation-timing-function: linear;
|
290 |
+
animation-name: spin;
|
291 |
+
animation-duration: 1500ms;
|
292 |
+
animation-iteration-count: infinite;
|
293 |
+
animation-timing-function: linear;
|
294 |
+
}
|
295 |
+
.lvca-infobox-msg .dashicons-admin-generic:before {
|
296 |
+
content: "\f111";
|
297 |
+
text-align: center;
|
298 |
+
display: block;
|
299 |
+
position: relative;
|
300 |
+
height: 22px;
|
301 |
+
width: 22px;
|
302 |
+
top: -3px;
|
303 |
+
left: -1px;
|
304 |
+
}
|
305 |
+
@-ms-keyframes spin {
|
306 |
+
from { -ms-transform: rotate(0deg); }
|
307 |
+
to { -ms-transform: rotate(360deg); }
|
308 |
+
}
|
309 |
+
@-moz-keyframes spin {
|
310 |
+
from { -moz-transform: rotate(0deg); }
|
311 |
+
to { -moz-transform: rotate(360deg); }
|
312 |
+
}
|
313 |
+
@-webkit-keyframes spin {
|
314 |
+
from { -webkit-transform: rotate(0deg); }
|
315 |
+
to { -webkit-transform: rotate(360deg); }
|
316 |
+
}
|
317 |
+
@keyframes spin {
|
318 |
+
from {
|
319 |
+
transform:rotate(0deg);
|
320 |
+
}
|
321 |
+
to {
|
322 |
+
transform:rotate(360deg);
|
323 |
+
}
|
324 |
+
}
|
325 |
+
|
326 |
+
|
327 |
+
/* ===================== BOX WRAPPER ====================== */
|
328 |
+
|
329 |
+
|
330 |
+
.settings-options .lvca-inner {
|
331 |
+
margin: 1px 0 0 0;
|
332 |
+
}
|
333 |
+
.lvca-settings .lvca-tabs-wrap {
|
334 |
+
margin: 0;
|
335 |
+
}
|
336 |
+
.lvca-settings .lvca-box-side {
|
337 |
+
background: #333743;
|
338 |
+
}
|
339 |
+
.lvca-settings .lvca-box-side * {
|
340 |
+
color: #e8e9ef;
|
341 |
+
}
|
342 |
+
.lvca-box-side {
|
343 |
+
display: table-cell;
|
344 |
+
vertical-align: top;
|
345 |
+
min-width: 150px;
|
346 |
+
background: #e1e1e1;
|
347 |
+
}
|
348 |
+
.lvca-settings .lvca-box-side {
|
349 |
+
border-bottom: 1px solid #bcbfc7;
|
350 |
+
}
|
351 |
+
.lvca-box-side h3 {
|
352 |
+
margin: 0;
|
353 |
+
padding: 15px 12px 15px 12px !important;
|
354 |
+
font-size: 13px;
|
355 |
+
line-height: 1.4;
|
356 |
+
text-transform: uppercase;
|
357 |
+
letter-spacing: 4px;
|
358 |
+
background: #404554;
|
359 |
+
}
|
360 |
+
.lvca-box-side .lvca-infobox-icon {
|
361 |
+
padding: 15px 12px 15px 12px !important;
|
362 |
+
font-size: 32px;
|
363 |
+
}
|
364 |
+
.lvca-box-inner {
|
365 |
+
display: table-cell;
|
366 |
+
margin: 0px !important;
|
367 |
+
padding: 8px 20px 40px 20px !important;
|
368 |
+
vertical-align: top;
|
369 |
+
width: 100%;
|
370 |
+
background: #fff;
|
371 |
+
}
|
372 |
+
.lvca-settings .lvca-box-inner {
|
373 |
+
border-top: 1px solid #e1e1e1;
|
374 |
+
}
|
375 |
+
.lvca-settings .lvca-box-inner {
|
376 |
+
padding: 0 0 40px 0 !important;
|
377 |
+
}
|
378 |
+
.lvca-box-inner p {
|
379 |
+
color: #888;
|
380 |
+
font-style: normal;
|
381 |
+
max-width: 650px;
|
382 |
+
}
|
383 |
+
.lvca-box-inner h3 {
|
384 |
+
padding-left: 0 !important;
|
385 |
+
padding-right: 0 !important;
|
386 |
+
font-size: 13px;
|
387 |
+
line-height: 20px;
|
388 |
+
}
|
389 |
+
.lvca-label-outside {
|
390 |
+
padding: 0 0 0 18px;
|
391 |
+
}
|
392 |
+
.lvca-settings .lvca-toggle {
|
393 |
+
position: relative;
|
394 |
+
display: inline-block;
|
395 |
+
top: 5px;
|
396 |
+
box-sizing: content-box;
|
397 |
+
}
|
398 |
+
.lvca-settings .lvca-type-checkbox .lvca-number-label {
|
399 |
+
top: 5px;
|
400 |
+
}
|
401 |
+
.lvca-settings .lvca-desc {
|
402 |
+
font-size: 13px;
|
403 |
+
line-height: 20px;
|
404 |
+
max-width: 650px;
|
405 |
+
}
|
406 |
+
|
407 |
+
.lvca-box-inner {
|
408 |
+
ul {
|
409 |
+
list-style: inherit;
|
410 |
+
list-style-type: square;
|
411 |
+
}
|
412 |
+
li {
|
413 |
+
margin: 0 0 10px 20px;
|
414 |
+
color: #888;
|
415 |
+
max-width: 600px;
|
416 |
+
line-height: 1.4em;
|
417 |
+
}
|
418 |
+
|
419 |
+
li strong {
|
420 |
+
color: #444;
|
421 |
+
}
|
422 |
+
|
423 |
+
.lvca-button.purchase, .lvca-button.know-more {
|
424 |
+
background: #46a5d5;
|
425 |
+
padding: 12px 30px !important;
|
426 |
+
}
|
427 |
+
|
428 |
+
}
|
admin/assets/css/lvca-admin.css
ADDED
@@ -0,0 +1,151 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
html {
|
2 |
+
box-sizing: border-box; }
|
3 |
+
|
4 |
+
*, *::after, *::before {
|
5 |
+
box-sizing: inherit; }
|
6 |
+
|
7 |
+
html {
|
8 |
+
box-sizing: border-box; }
|
9 |
+
|
10 |
+
*, *::after, *::before {
|
11 |
+
box-sizing: inherit; }
|
12 |
+
|
13 |
+
/* =============== Visual Composer Elements ==================== */
|
14 |
+
[class*=vc_element-icon][class*=icon-lvca-] {
|
15 |
+
background-position: 0 0 !important;
|
16 |
+
background-size: contain; }
|
17 |
+
|
18 |
+
input[type=number].wpb_vc_param_value.lvca_number {
|
19 |
+
max-width: 100px;
|
20 |
+
margin-right: 10px; }
|
21 |
+
|
22 |
+
.icon-lvca-services.vc_element-icon {
|
23 |
+
background-image: url(../images/admin/services.png); }
|
24 |
+
|
25 |
+
.icon-lvca-service.vc_element-icon {
|
26 |
+
background-image: url(../images/admin/service-add.png); }
|
27 |
+
|
28 |
+
.icon-lvca-statsbars.vc_element-icon {
|
29 |
+
background-image: url(../images/admin/stats-bar.png); }
|
30 |
+
|
31 |
+
.icon-lvca-statsbar.vc_element-icon {
|
32 |
+
background-image: url(../images/admin/stats-bar.png); }
|
33 |
+
|
34 |
+
.icon-lvca-piecharts.vc_element-icon {
|
35 |
+
background-image: url(../images/admin/piecharts.png); }
|
36 |
+
|
37 |
+
.icon-lvca-piechart.vc_element-icon {
|
38 |
+
background-image: url(../images/admin/piechart-add.png); }
|
39 |
+
|
40 |
+
.icon-lvca-odometers.vc_element-icon {
|
41 |
+
background-image: url(../images/admin/odometers.png); }
|
42 |
+
|
43 |
+
.icon-lvca-odometer.vc_element-icon {
|
44 |
+
background-image: url(../images/admin/odometer-add.png); }
|
45 |
+
|
46 |
+
.icon-lvca-clients.vc_element-icon {
|
47 |
+
background-image: url(../images/admin/clients.png); }
|
48 |
+
|
49 |
+
.icon-lvca-client.vc_element-icon {
|
50 |
+
background-image: url(../images/admin/client-add.png); }
|
51 |
+
|
52 |
+
.icon-lvca-heading.vc_element-icon {
|
53 |
+
background-image: url(../images/admin/heading.png); }
|
54 |
+
|
55 |
+
.icon-lvca-team.vc_element-icon {
|
56 |
+
background-image: url(../images/admin/team.png); }
|
57 |
+
|
58 |
+
.icon-lvca-team-member.vc_element-icon {
|
59 |
+
background-image: url(../images/admin/team-member-add.png); }
|
60 |
+
|
61 |
+
.icon-lvca-testimonials.vc_element-icon {
|
62 |
+
background-image: url(../images/admin/testimonials.png); }
|
63 |
+
|
64 |
+
.icon-lvca-testimonial.vc_element-icon {
|
65 |
+
background-image: url(../images/admin/testimonial-add.png); }
|
66 |
+
|
67 |
+
.icon-lvca-testimonials-slider.vc_element-icon {
|
68 |
+
background-image: url(../images/admin/testimonials-slider.png); }
|
69 |
+
|
70 |
+
.icon-lvca-testimonials-slide.vc_element-icon {
|
71 |
+
background-image: url(../images/admin/testimonials-slider-add.png); }
|
72 |
+
|
73 |
+
.icon-lvca-carousel.vc_element-icon {
|
74 |
+
background-image: url(../images/admin/generic-carousel.png); }
|
75 |
+
|
76 |
+
.icon-lvca-carousel-item.vc_element-icon {
|
77 |
+
background-image: url(../images/admin/carousel-add.png); }
|
78 |
+
|
79 |
+
.icon-lvca-posts-carousel.vc_element-icon {
|
80 |
+
background-image: url(../images/admin/posts-carousel.png); }
|
81 |
+
|
82 |
+
.icon-lvca-portfolio.vc_element-icon {
|
83 |
+
background-image: url(../images/admin/grid-alt.png); }
|
84 |
+
|
85 |
+
.icon-lvca-pricing-table.vc_element-icon {
|
86 |
+
background-image: url(../images/admin/pricing-table.png); }
|
87 |
+
|
88 |
+
.icon-lvca-pricing.vc_element-icon {
|
89 |
+
background-image: url(../images/admin/pricing-plan.png); }
|
90 |
+
|
91 |
+
.icon-lvca-spacer.vc_element-icon {
|
92 |
+
background-image: url(../images/admin/spacer.png); }
|
93 |
+
|
94 |
+
.icon-lvca-accordion.vc_element-icon {
|
95 |
+
background-image: url(../images/admin/accordion.png); }
|
96 |
+
|
97 |
+
.icon-lvca-panel.vc_element-icon {
|
98 |
+
background-image: url(../images/admin/accordion-add.png); }
|
99 |
+
|
100 |
+
.icon-lvca-tabs.vc_element-icon {
|
101 |
+
background-image: url(../images/admin/tabs.png); }
|
102 |
+
|
103 |
+
.icon-lvca-tab.vc_element-icon {
|
104 |
+
background-image: url(../images/admin/tab-add.png); }
|
105 |
+
|
106 |
+
.icon-lvca-countdown.vc_element-icon {
|
107 |
+
background-image: url(../images/admin/countdown.png); }
|
108 |
+
|
109 |
+
.icon-lvca-features.vc_element-icon {
|
110 |
+
background-image: url(../images/admin/features.png); }
|
111 |
+
|
112 |
+
.icon-lvca-feature-add.vc_element-icon {
|
113 |
+
background-image: url(../images/admin/feature-add.png); }
|
114 |
+
|
115 |
+
.icon-lvca-faq.vc_element-icon {
|
116 |
+
background-image: url(../images/admin/faq.png); }
|
117 |
+
|
118 |
+
.icon-lvca-faq-add.vc_element-icon {
|
119 |
+
background-image: url(../images/admin/faq-add.png); }
|
120 |
+
|
121 |
+
.icon-lvca-button.vc_element-icon {
|
122 |
+
background-image: url(../images/admin/button.png); }
|
123 |
+
|
124 |
+
.icon-lvca-gallery.vc_element-icon {
|
125 |
+
background-image: url(../images/admin/gallery.png); }
|
126 |
+
|
127 |
+
.icon-lvca-gallery-add.vc_element-icon {
|
128 |
+
background-image: url(../images/admin/gallery-add.png); }
|
129 |
+
|
130 |
+
.icon-lvca-gallery-carousel.vc_element-icon {
|
131 |
+
background-image: url(../images/admin/carousel.png); }
|
132 |
+
|
133 |
+
.icon-lvca-image-slider.vc_element-icon {
|
134 |
+
background-image: url(../images/admin/sliders2.png); }
|
135 |
+
|
136 |
+
.icon-lvca-image-slider-add.vc_element-icon {
|
137 |
+
background-image: url(../images/admin/slider-add2.png); }
|
138 |
+
|
139 |
+
.icon-lvca-slider.vc_element-icon {
|
140 |
+
background-image: url(../images/admin/sliders.png); }
|
141 |
+
|
142 |
+
.icon-lvca-slider-add.vc_element-icon {
|
143 |
+
background-image: url(../images/admin/slider-add.png); }
|
144 |
+
|
145 |
+
.icon-lvca-icons.vc_element-icon {
|
146 |
+
background-image: url(../images/admin/icons.png); }
|
147 |
+
|
148 |
+
.icon-lvca-icon-add.vc_element-icon {
|
149 |
+
background-image: url(../images/admin/icon-add.png); }
|
150 |
+
|
151 |
+
/*# sourceMappingURL=lvca-admin.css.map */
|
admin/assets/css/lvca-admin.css.map
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"version": 3,
|
3 |
+
"mappings": "AAGE,IAAK;EACH,UAAU,EAAE,UAAU;;AAItB,sBAEU;EACR,UAAU,EAAE,OAAO;;AARvB,IAAK;EACH,UAAU,EAAE,UAAU;;AAItB,sBAEU;EACR,UAAU,EAAE,OAAO;;;ACDzB,2CAA4C;EAC1C,mBAAmB,EAAE,cAAc;EACnC,eAAe,EAAE,OAAO;;AAG1B,iDAAkD;EAChD,SAAS,EAAE,KAAK;EAChB,YAAY,EAAE,IAAI;;AAGpB,mCAAoC;EAClC,gBAAgB,EAAE,iCAAiC;;AAGrD,kCAAmC;EACjC,gBAAgB,EAAE,oCAAoC;;AAGxD,oCAAqC;EACnC,gBAAgB,EAAE,kCAAkC;;AAGtD,mCAAoC;EAClC,gBAAgB,EAAE,kCAAkC;;AAGtD,oCAAqC;EACnC,gBAAgB,EAAE,kCAAkC;;AAGtD,mCAAoC;EAClC,gBAAgB,EAAE,qCAAqC;;AAGzD,oCAAqC;EACnC,gBAAgB,EAAE,kCAAkC;;AAGtD,mCAAoC;EAClC,gBAAgB,EAAE,qCAAqC;;AAGzD,kCAAmC;EACjC,gBAAgB,EAAE,gCAAgC;;AAGpD,iCAAkC;EAChC,gBAAgB,EAAE,mCAAmC;;AAGvD,kCAAmC;EACjC,gBAAgB,EAAE,gCAAgC;;AAGpD,+BAAgC;EAC9B,gBAAgB,EAAE,6BAA6B;;AAGjD,sCAAuC;EACrC,gBAAgB,EAAE,wCAAwC;;AAG5D,uCAAwC;EACtC,gBAAgB,EAAE,qCAAqC;;AAGzD,sCAAuC;EACrC,gBAAgB,EAAE,wCAAwC;;AAG5D,8CAA+C;EAC7C,gBAAgB,EAAE,4CAA4C;;AAGhE,6CAA8C;EAC5C,gBAAgB,EAAE,gDAAgD;;AAGpE,mCAAoC;EAClC,gBAAgB,EAAE,yCAAyC;;AAG7D,wCAAyC;EACvC,gBAAgB,EAAE,qCAAqC;;AAGzD,yCAA0C;EACxC,gBAAgB,EAAE,uCAAuC;;AAG3D,oCAAqC;EACnC,gBAAgB,EAAE,iCAAiC;;AAGrD,wCAAyC;EACvC,gBAAgB,EAAE,sCAAsC;;AAG1D,kCAAmC;EACjC,gBAAgB,EAAE,qCAAqC;;AAGzD,iCAAkC;EAChC,gBAAgB,EAAE,+BAA+B;;AAGnD,oCAAqC;EACnC,gBAAgB,EAAE,kCAAkC;;AAGtD,gCAAiC;EAC/B,gBAAgB,EAAE,sCAAsC;;AAG1D,+BAAgC;EAC9B,gBAAgB,EAAE,6BAA6B;;AAGjD,8BAA+B;EAC7B,gBAAgB,EAAE,gCAAgC;;AAGpD,oCAAqC;EACnC,gBAAgB,EAAE,kCAAkC;;AAGtD,mCAAoC;EAClC,gBAAgB,EAAE,iCAAiC;;AAGrD,sCAAuC;EACrC,gBAAgB,EAAE,oCAAoC;;AAGxD,8BAA+B;EAC7B,gBAAgB,EAAE,4BAA4B;;AAGhD,kCAAmC;EACjC,gBAAgB,EAAE,gCAAgC;;AAGpD,iCAAkC;EAChC,gBAAgB,EAAE,+BAA+B;;AAGnD,kCAAmC;EACjC,gBAAgB,EAAE,gCAAgC;;AAGpD,sCAAuC;EACrC,gBAAgB,EAAE,oCAAoC;;AAGxD,2CAA4C;EAC1C,gBAAgB,EAAE,iCAAiC;;AAGrD,uCAAwC;EACtC,gBAAgB,EAAE,iCAAiC;;AAGrD,2CAA4C;EAC1C,gBAAgB,EAAE,oCAAoC;;AAGxD,iCAAkC;EAChC,gBAAgB,EAAE,gCAAgC;;AAGpD,qCAAsC;EACpC,gBAAgB,EAAE,mCAAmC;;AAGvD,gCAAiC;EAC/B,gBAAgB,EAAE,8BAA8B;;AAGlD,mCAAoC;EAClC,gBAAgB,EAAE,iCAAiC",
|
4 |
+
"sources": ["../../../../../bower_components/neat/app/assets/stylesheets/grid/_box-sizing.scss","lvca-admin.scss"],
|
5 |
+
"names": [],
|
6 |
+
"file": "lvca-admin.css"
|
7 |
+
}
|
admin/assets/css/lvca-admin.scss
ADDED
@@ -0,0 +1,191 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@import "bourbon";
|
2 |
+
@import "neat";
|
3 |
+
@import "flexbox";
|
4 |
+
|
5 |
+
@import "../../../assets/css/lvca-lib";
|
6 |
+
|
7 |
+
|
8 |
+
/* =============== Visual Composer Elements ==================== */
|
9 |
+
|
10 |
+
|
11 |
+
[class*=vc_element-icon][class*=icon-lvca-] {
|
12 |
+
background-position: 0 0 !important;
|
13 |
+
background-size: contain;
|
14 |
+
}
|
15 |
+
|
16 |
+
input[type=number].wpb_vc_param_value.lvca_number {
|
17 |
+
max-width: 100px;
|
18 |
+
margin-right: 10px;
|
19 |
+
}
|
20 |
+
|
21 |
+
.icon-lvca-services.vc_element-icon {
|
22 |
+
background-image: url(../images/admin/services.png);
|
23 |
+
}
|
24 |
+
|
25 |
+
.icon-lvca-service.vc_element-icon {
|
26 |
+
background-image: url(../images/admin/service-add.png);
|
27 |
+
}
|
28 |
+
|
29 |
+
.icon-lvca-statsbars.vc_element-icon {
|
30 |
+
background-image: url(../images/admin/stats-bar.png);
|
31 |
+
}
|
32 |
+
|
33 |
+
.icon-lvca-statsbar.vc_element-icon {
|
34 |
+
background-image: url(../images/admin/stats-bar.png);
|
35 |
+
}
|
36 |
+
|
37 |
+
.icon-lvca-piecharts.vc_element-icon {
|
38 |
+
background-image: url(../images/admin/piecharts.png);
|
39 |
+
}
|
40 |
+
|
41 |
+
.icon-lvca-piechart.vc_element-icon {
|
42 |
+
background-image: url(../images/admin/piechart-add.png);
|
43 |
+
}
|
44 |
+
|
45 |
+
.icon-lvca-odometers.vc_element-icon {
|
46 |
+
background-image: url(../images/admin/odometers.png);
|
47 |
+
}
|
48 |
+
|
49 |
+
.icon-lvca-odometer.vc_element-icon {
|
50 |
+
background-image: url(../images/admin/odometer-add.png);
|
51 |
+
}
|
52 |
+
|
53 |
+
.icon-lvca-clients.vc_element-icon {
|
54 |
+
background-image: url(../images/admin/clients.png);
|
55 |
+
}
|
56 |
+
|
57 |
+
.icon-lvca-client.vc_element-icon {
|
58 |
+
background-image: url(../images/admin/client-add.png);
|
59 |
+
}
|
60 |
+
|
61 |
+
.icon-lvca-heading.vc_element-icon {
|
62 |
+
background-image: url(../images/admin/heading.png);
|
63 |
+
}
|
64 |
+
|
65 |
+
.icon-lvca-team.vc_element-icon {
|
66 |
+
background-image: url(../images/admin/team.png);
|
67 |
+
}
|
68 |
+
|
69 |
+
.icon-lvca-team-member.vc_element-icon {
|
70 |
+
background-image: url(../images/admin/team-member-add.png);
|
71 |
+
}
|
72 |
+
|
73 |
+
.icon-lvca-testimonials.vc_element-icon {
|
74 |
+
background-image: url(../images/admin/testimonials.png);
|
75 |
+
}
|
76 |
+
|
77 |
+
.icon-lvca-testimonial.vc_element-icon {
|
78 |
+
background-image: url(../images/admin/testimonial-add.png);
|
79 |
+
}
|
80 |
+
|
81 |
+
.icon-lvca-testimonials-slider.vc_element-icon {
|
82 |
+
background-image: url(../images/admin/testimonials-slider.png);
|
83 |
+
}
|
84 |
+
|
85 |
+
.icon-lvca-testimonials-slide.vc_element-icon {
|
86 |
+
background-image: url(../images/admin/testimonials-slider-add.png);
|
87 |
+
}
|
88 |
+
|
89 |
+
.icon-lvca-carousel.vc_element-icon {
|
90 |
+
background-image: url(../images/admin/generic-carousel.png);
|
91 |
+
}
|
92 |
+
|
93 |
+
.icon-lvca-carousel-item.vc_element-icon {
|
94 |
+
background-image: url(../images/admin/carousel-add.png);
|
95 |
+
}
|
96 |
+
|
97 |
+
.icon-lvca-posts-carousel.vc_element-icon {
|
98 |
+
background-image: url(../images/admin/posts-carousel.png);
|
99 |
+
}
|
100 |
+
|
101 |
+
.icon-lvca-portfolio.vc_element-icon {
|
102 |
+
background-image: url(../images/admin/grid-alt.png);
|
103 |
+
}
|
104 |
+
|
105 |
+
.icon-lvca-pricing-table.vc_element-icon {
|
106 |
+
background-image: url(../images/admin/pricing-table.png);
|
107 |
+
}
|
108 |
+
|
109 |
+
.icon-lvca-pricing.vc_element-icon {
|
110 |
+
background-image: url(../images/admin/pricing-plan.png);
|
111 |
+
}
|
112 |
+
|
113 |
+
.icon-lvca-spacer.vc_element-icon {
|
114 |
+
background-image: url(../images/admin/spacer.png);
|
115 |
+
}
|
116 |
+
|
117 |
+
.icon-lvca-accordion.vc_element-icon {
|
118 |
+
background-image: url(../images/admin/accordion.png);
|
119 |
+
}
|
120 |
+
|
121 |
+
.icon-lvca-panel.vc_element-icon {
|
122 |
+
background-image: url(../images/admin/accordion-add.png);
|
123 |
+
}
|
124 |
+
|
125 |
+
.icon-lvca-tabs.vc_element-icon {
|
126 |
+
background-image: url(../images/admin/tabs.png);
|
127 |
+
}
|
128 |
+
|
129 |
+
.icon-lvca-tab.vc_element-icon {
|
130 |
+
background-image: url(../images/admin/tab-add.png);
|
131 |
+
}
|
132 |
+
|
133 |
+
.icon-lvca-countdown.vc_element-icon {
|
134 |
+
background-image: url(../images/admin/countdown.png);
|
135 |
+
}
|
136 |
+
|
137 |
+
.icon-lvca-features.vc_element-icon {
|
138 |
+
background-image: url(../images/admin/features.png);
|
139 |
+
}
|
140 |
+
|
141 |
+
.icon-lvca-feature-add.vc_element-icon {
|
142 |
+
background-image: url(../images/admin/feature-add.png);
|
143 |
+
}
|
144 |
+
|
145 |
+
.icon-lvca-faq.vc_element-icon {
|
146 |
+
background-image: url(../images/admin/faq.png);
|
147 |
+
}
|
148 |
+
|
149 |
+
.icon-lvca-faq-add.vc_element-icon {
|
150 |
+
background-image: url(../images/admin/faq-add.png);
|
151 |
+
}
|
152 |
+
|
153 |
+
.icon-lvca-button.vc_element-icon {
|
154 |
+
background-image: url(../images/admin/button.png);
|
155 |
+
}
|
156 |
+
|
157 |
+
.icon-lvca-gallery.vc_element-icon {
|
158 |
+
background-image: url(../images/admin/gallery.png);
|
159 |
+
}
|
160 |
+
|
161 |
+
.icon-lvca-gallery-add.vc_element-icon {
|
162 |
+
background-image: url(../images/admin/gallery-add.png);
|
163 |
+
}
|
164 |
+
|
165 |
+
.icon-lvca-gallery-carousel.vc_element-icon {
|
166 |
+
background-image: url(../images/admin/carousel.png);
|
167 |
+
}
|
168 |
+
|
169 |
+
.icon-lvca-image-slider.vc_element-icon {
|
170 |
+
background-image: url(../images/admin/sliders2.png);
|
171 |
+
}
|
172 |
+
|
173 |
+
.icon-lvca-image-slider-add.vc_element-icon {
|
174 |
+
background-image: url(../images/admin/slider-add2.png);
|
175 |
+
}
|
176 |
+
|
177 |
+
.icon-lvca-slider.vc_element-icon {
|
178 |
+
background-image: url(../images/admin/sliders.png);
|
179 |
+
}
|
180 |
+
|
181 |
+
.icon-lvca-slider-add.vc_element-icon {
|
182 |
+
background-image: url(../images/admin/slider-add.png);
|
183 |
+
}
|
184 |
+
|
185 |
+
.icon-lvca-icons.vc_element-icon {
|
186 |
+
background-image: url(../images/admin/icons.png);
|
187 |
+
}
|
188 |
+
|
189 |
+
.icon-lvca-icon-add.vc_element-icon {
|
190 |
+
background-image: url(../images/admin/icon-add.png);
|
191 |
+
}
|
admin/assets/css/lvca-elements.css
ADDED
@@ -0,0 +1,379 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
html {
|
2 |
+
box-sizing: border-box; }
|
3 |
+
|
4 |
+
*, *::after, *::before {
|
5 |
+
box-sizing: inherit; }
|
6 |
+
|
7 |
+
html {
|
8 |
+
box-sizing: border-box; }
|
9 |
+
|
10 |
+
*, *::after, *::before {
|
11 |
+
box-sizing: inherit; }
|
12 |
+
|
13 |
+
/* =============== Common Styles ===================== */
|
14 |
+
.lvca-icon {
|
15 |
+
position: relative;
|
16 |
+
display: inline-block;
|
17 |
+
margin-right: 5px; }
|
18 |
+
|
19 |
+
.lvca-row {
|
20 |
+
position: relative;
|
21 |
+
display: inline-block;
|
22 |
+
vertical-align: top;
|
23 |
+
padding: 15px 18px;
|
24 |
+
margin: 0 25px 0 0; }
|
25 |
+
|
26 |
+
h3.lvca-title {
|
27 |
+
padding: 8px 18px 0 18px !important;
|
28 |
+
font-size: 13px !important;
|
29 |
+
font-weight: bold; }
|
30 |
+
|
31 |
+
.lvca-title.description {
|
32 |
+
padding: 4px 18px 0 18px !important;
|
33 |
+
margin: 0;
|
34 |
+
font-size: 12px;
|
35 |
+
font-style: initial; }
|
36 |
+
|
37 |
+
.lvca-label {
|
38 |
+
font-weight: bold;
|
39 |
+
display: block;
|
40 |
+
font-size: 15px;
|
41 |
+
line-height: 24px;
|
42 |
+
cursor: default; }
|
43 |
+
|
44 |
+
.lvca-type-number {
|
45 |
+
margin: 0;
|
46 |
+
padding-right: 0;
|
47 |
+
max-height: 28px; }
|
48 |
+
|
49 |
+
label.lvca-inline {
|
50 |
+
display: inline-block;
|
51 |
+
vertical-align: baseline; }
|
52 |
+
|
53 |
+
.lvca-desc {
|
54 |
+
color: #666666;
|
55 |
+
line-height: 15px;
|
56 |
+
margin: 4px 0 12px 0;
|
57 |
+
font-size: 12px;
|
58 |
+
font-weight: normal; }
|
59 |
+
|
60 |
+
.lvca-sub-desc {
|
61 |
+
color: #666666;
|
62 |
+
line-height: 1.5;
|
63 |
+
margin: 4px 0 0 0;
|
64 |
+
font-size: 12px;
|
65 |
+
font-style: italic;
|
66 |
+
font-weight: normal; }
|
67 |
+
|
68 |
+
.lvca-select-wrap {
|
69 |
+
position: relative;
|
70 |
+
display: inline-block;
|
71 |
+
width: 200px;
|
72 |
+
height: 28px;
|
73 |
+
background: #ffffff; }
|
74 |
+
|
75 |
+
[data-multiple="true"].lvca-select-wrap {
|
76 |
+
height: auto; }
|
77 |
+
|
78 |
+
/* ============= TABS ==================== */
|
79 |
+
.lvca-tab-content {
|
80 |
+
position: relative;
|
81 |
+
display: none;
|
82 |
+
margin: 0; }
|
83 |
+
|
84 |
+
.lvca-tab-content:first-child {
|
85 |
+
display: block; }
|
86 |
+
|
87 |
+
.lvca-tabs-wrap {
|
88 |
+
margin: -7px -12px 15px;
|
89 |
+
background-color: #f1f1f1;
|
90 |
+
padding-top: 10px; }
|
91 |
+
|
92 |
+
.lvca-menu-options .lvca-tabs-wrap {
|
93 |
+
padding: 0; }
|
94 |
+
|
95 |
+
.lvca-tab {
|
96 |
+
display: inline-block;
|
97 |
+
list-style: none;
|
98 |
+
margin: 0px 1px;
|
99 |
+
padding: 10px 15px;
|
100 |
+
line-height: 18px;
|
101 |
+
cursor: pointer;
|
102 |
+
color: #999;
|
103 |
+
text-transform: uppercase;
|
104 |
+
letter-spacing: 1px;
|
105 |
+
font-weight: bold;
|
106 |
+
font-size: 14px;
|
107 |
+
line-height: 20px;
|
108 |
+
border: 1px solid transparent;
|
109 |
+
border-top-left-radius: 4px;
|
110 |
+
border-top-right-radius: 4px;
|
111 |
+
border-bottom-width: 0;
|
112 |
+
white-space: nowrap;
|
113 |
+
-webkit-transition: all 0.4s ease-in-out;
|
114 |
+
-moz-transition: all 0.4s ease-in-out;
|
115 |
+
-ms-transition: all 0.4s ease-in-out;
|
116 |
+
transition: all 0.4s ease-in-out; }
|
117 |
+
|
118 |
+
.lvca-menu-options .lvca-tab {
|
119 |
+
padding: 15px;
|
120 |
+
border-right: 1px solid #ddd;
|
121 |
+
border-top: 1px solid #ddd;
|
122 |
+
border-left: 1px solid #ddd;
|
123 |
+
margin-top: 10px;
|
124 |
+
background: #f9f9f9; }
|
125 |
+
.lvca-menu-options .lvca-tab:hover {
|
126 |
+
background: #fff; }
|
127 |
+
|
128 |
+
.lvca-menu-options .lvca-tab:first-child {
|
129 |
+
margin: 0 0 0 150px; }
|
130 |
+
@media only screen and (max-width: 600px) {
|
131 |
+
.lvca-menu-options .lvca-tab:first-child {
|
132 |
+
margin: 0; } }
|
133 |
+
|
134 |
+
.lvca-tab:hover {
|
135 |
+
background-color: #f9f9f9;
|
136 |
+
color: #666; }
|
137 |
+
|
138 |
+
.lvca-tab:first-child {
|
139 |
+
margin-left: 12px; }
|
140 |
+
|
141 |
+
.lvca-tab.selected {
|
142 |
+
background: #ffffff;
|
143 |
+
color: #666;
|
144 |
+
position: relative;
|
145 |
+
top: 1px;
|
146 |
+
z-index: 1; }
|
147 |
+
|
148 |
+
.lvca-clearfix:after {
|
149 |
+
content: "";
|
150 |
+
display: table;
|
151 |
+
clear: both; }
|
152 |
+
|
153 |
+
/* ====================== Inputs ====================== */
|
154 |
+
textarea.lvca-textarea,
|
155 |
+
input[type=text].lvca-text {
|
156 |
+
background: #f1f1f1;
|
157 |
+
-webkit-box-shadow: none;
|
158 |
+
box-shadow: none;
|
159 |
+
padding: 3px 5px !important; }
|
160 |
+
|
161 |
+
input[type=text].lvca-text {
|
162 |
+
height: 28px;
|
163 |
+
line-height: 26px; }
|
164 |
+
|
165 |
+
.lvca-text.number {
|
166 |
+
width: 65px;
|
167 |
+
background: #f1f1f1;
|
168 |
+
box-shadow: none; }
|
169 |
+
|
170 |
+
.lvca-number-label {
|
171 |
+
position: relative;
|
172 |
+
display: inline-block;
|
173 |
+
margin: 0 10px 0 0;
|
174 |
+
width: auto;
|
175 |
+
color: #888; }
|
176 |
+
|
177 |
+
input[type=radio].lvca-radio {
|
178 |
+
opacity: 1;
|
179 |
+
filter: alpha(opacity=100);
|
180 |
+
background: #ffffff;
|
181 |
+
margin-left: 15px;
|
182 |
+
padding: 0 !important;
|
183 |
+
color: #34495e;
|
184 |
+
border: 2px solid #34495e;
|
185 |
+
width: 14px !important;
|
186 |
+
height: 14px !important;
|
187 |
+
max-width: 14px !important;
|
188 |
+
min-width: 0px !important; }
|
189 |
+
|
190 |
+
input[type=radio].first-input {
|
191 |
+
margin-left: 0; }
|
192 |
+
|
193 |
+
input[type=radio].lvca-radio:checked:before {
|
194 |
+
background-color: #2c3e50;
|
195 |
+
margin: 2px;
|
196 |
+
width: 6px;
|
197 |
+
height: 6px; }
|
198 |
+
|
199 |
+
/* ======================== Checkbox ======================= */
|
200 |
+
.lvca-toggle {
|
201 |
+
position: relative;
|
202 |
+
display: inline-block;
|
203 |
+
margin: 0 0 6px 0; }
|
204 |
+
|
205 |
+
input[type=checkbox].lvca-checkbox {
|
206 |
+
position: absolute;
|
207 |
+
display: block;
|
208 |
+
z-index: 2;
|
209 |
+
width: 100%;
|
210 |
+
height: 100%;
|
211 |
+
margin: 0;
|
212 |
+
opacity: 0 !important; }
|
213 |
+
|
214 |
+
.lvca-checkbox + label {
|
215 |
+
display: inline-block;
|
216 |
+
position: relative;
|
217 |
+
margin: 0 4px 0 0;
|
218 |
+
cursor: pointer;
|
219 |
+
outline: none;
|
220 |
+
-webkit-user-select: none;
|
221 |
+
-moz-user-select: none;
|
222 |
+
-ms-user-select: none;
|
223 |
+
user-select: none; }
|
224 |
+
|
225 |
+
input.lvca-checkbox + label {
|
226 |
+
padding: 2px;
|
227 |
+
width: 43px;
|
228 |
+
height: 20px;
|
229 |
+
background-color: #2c3e50;
|
230 |
+
-webkit-border-radius: 60px;
|
231 |
+
-moz-border-radius: 60px;
|
232 |
+
-ms-border-radius: 60px;
|
233 |
+
-o-border-radius: 60px;
|
234 |
+
border-radius: 60px;
|
235 |
+
-webkit-transition: background 0.2s;
|
236 |
+
-moz-transition: background 0.2s;
|
237 |
+
-o-transition: background 0.2s;
|
238 |
+
transition: background 0.2s; }
|
239 |
+
|
240 |
+
input.lvca-checkbox + label:before, input.lvca-checkbox + label:after {
|
241 |
+
display: block;
|
242 |
+
position: absolute;
|
243 |
+
content: ""; }
|
244 |
+
|
245 |
+
input.lvca-checkbox + label:before {
|
246 |
+
top: 2px;
|
247 |
+
left: 2px;
|
248 |
+
bottom: 2px;
|
249 |
+
right: 2px;
|
250 |
+
background-color: #ffffff;
|
251 |
+
-webkit-border-radius: 10px;
|
252 |
+
-moz-border-radius: 10px;
|
253 |
+
-ms-border-radius: 10px;
|
254 |
+
-o-border-radius: 10px;
|
255 |
+
border-radius: 10px;
|
256 |
+
-webkit-transition: background 0.2s;
|
257 |
+
-moz-transition: background 0.2s;
|
258 |
+
-o-transition: background 0.2s;
|
259 |
+
transition: background 0.2s; }
|
260 |
+
|
261 |
+
input.lvca-checkbox + label:after {
|
262 |
+
top: 3px;
|
263 |
+
left: 3px;
|
264 |
+
bottom: 3px;
|
265 |
+
width: 18px;
|
266 |
+
background-color: #2c3e50;
|
267 |
+
-webkit-border-radius: 10px;
|
268 |
+
-moz-border-radius: 10px;
|
269 |
+
-ms-border-radius: 10px;
|
270 |
+
-o-border-radius: 10px;
|
271 |
+
border-radius: 10px;
|
272 |
+
-webkit-transition: margin 0.2s, background 0.2s;
|
273 |
+
-moz-transition: margin 0.2s, background 0.2s;
|
274 |
+
-o-transition: margin 0.2s, background 0.2s;
|
275 |
+
transition: margin 0.2s, background 0.2s; }
|
276 |
+
|
277 |
+
input.lvca-checkbox:checked + label {
|
278 |
+
background-color: #4ECDC4; }
|
279 |
+
|
280 |
+
input.lvca-checkbox:checked + label:after {
|
281 |
+
margin-left: 23px;
|
282 |
+
background-color: #4ECDC4; }
|
283 |
+
|
284 |
+
/* =========================== Buttons ==================== */
|
285 |
+
.lvca-button {
|
286 |
+
border: none !important;
|
287 |
+
text-shadow: none !important;
|
288 |
+
border: none !important;
|
289 |
+
outline: none !important;
|
290 |
+
box-shadow: none !important;
|
291 |
+
line-height: 26px !important;
|
292 |
+
height: auto !important;
|
293 |
+
margin: 0 !important;
|
294 |
+
padding: 0 10px !important;
|
295 |
+
color: #fff !important;
|
296 |
+
background: #f94213;
|
297 |
+
-webkit-border-radius: 0 !important;
|
298 |
+
border-radius: 0 !important;
|
299 |
+
vertical-align: top;
|
300 |
+
-webkit-transition: opacity 0.2s;
|
301 |
+
-moz-transition: opacity 0.2s;
|
302 |
+
-o-transition: opacity 0.2s;
|
303 |
+
transition: opacity 0.2s; }
|
304 |
+
|
305 |
+
.lvca-button:hover {
|
306 |
+
opacity: 0.8; }
|
307 |
+
|
308 |
+
/* ========================== Info box ====================== */
|
309 |
+
.lvca-infobox {
|
310 |
+
position: relative;
|
311 |
+
display: block;
|
312 |
+
background: #f1f1f1;
|
313 |
+
margin: 30px;
|
314 |
+
padding: 15px;
|
315 |
+
line-height: 20px;
|
316 |
+
font-style: italic;
|
317 |
+
box-sizing: border-box;
|
318 |
+
-moz-box-sizing: border-box;
|
319 |
+
-webkit-box-sizing: border-box; }
|
320 |
+
|
321 |
+
.lvca-infobox .dashicons {
|
322 |
+
float: left;
|
323 |
+
margin-right: 10px;
|
324 |
+
-webkit-animation: flash linear 1s infinite;
|
325 |
+
animation: flash linear 1s infinite; }
|
326 |
+
|
327 |
+
.lvca-infobox-wrap {
|
328 |
+
margin-left: 40px 30px 30px 30px; }
|
329 |
+
|
330 |
+
.lvca-infobox h3 {
|
331 |
+
font-size: 14px;
|
332 |
+
padding: 0 !important;
|
333 |
+
margin: 0;
|
334 |
+
line-height: 1.4; }
|
335 |
+
|
336 |
+
@-webkit-keyframes flash {
|
337 |
+
0% {
|
338 |
+
opacity: 1; }
|
339 |
+
50% {
|
340 |
+
opacity: .1; }
|
341 |
+
100% {
|
342 |
+
opacity: 1; } }
|
343 |
+
@keyframes flash {
|
344 |
+
0% {
|
345 |
+
opacity: 1; }
|
346 |
+
50% {
|
347 |
+
opacity: .1; }
|
348 |
+
100% {
|
349 |
+
opacity: 1; } }
|
350 |
+
/* ========= Misc ============= */
|
351 |
+
.wp-picker-container {
|
352 |
+
box-sizing: content-box; }
|
353 |
+
|
354 |
+
.lvca-elements-deactivate {
|
355 |
+
display: -webkit-box;
|
356 |
+
display: -moz-box;
|
357 |
+
display: box;
|
358 |
+
display: -webkit-flex;
|
359 |
+
display: -moz-flex;
|
360 |
+
display: -ms-flexbox;
|
361 |
+
display: flex;
|
362 |
+
-webkit-flex-flow: row wrap;
|
363 |
+
-moz-flex-flow: row wrap;
|
364 |
+
-ms-flex-flow: row wrap;
|
365 |
+
flex-flow: row wrap;
|
366 |
+
-webkit-box-pack: start;
|
367 |
+
-ms-flex-pack: start;
|
368 |
+
-webkit-justify-content: flex-start;
|
369 |
+
-moz-justify-content: flex-start;
|
370 |
+
justify-content: flex-start;
|
371 |
+
-webkit-align-content: space-between;
|
372 |
+
-moz-align-content: space-between;
|
373 |
+
-ms-flex-line-pack: space-between;
|
374 |
+
align-content: space-between; }
|
375 |
+
.lvca-elements-deactivate .lvca-row {
|
376 |
+
width: 280px;
|
377 |
+
margin-bottom: 15px; }
|
378 |
+
|
379 |
+
/*# sourceMappingURL=lvca-elements.css.map */
|
admin/assets/css/lvca-elements.css.map
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"version": 3,
|
3 |
+
"mappings": "AAGE,IAAK;EACH,UAAU,EAAE,UAAU;;AAItB,sBAEU;EACR,UAAU,EAAE,OAAO;;AARvB,IAAK;EACH,UAAU,EAAE,UAAU;;AAItB,sBAEU;EACR,UAAU,EAAE,OAAO;;;ACFzB,UAAW;EACT,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,YAAY,EAAE,GAAG;;AAEnB,SAAU;EACR,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,cAAc,EAAE,GAAG;EACnB,OAAO,EAAE,SAAS;EAClB,MAAM,EAAE,UAAU;;AAGpB,aAAc;EACZ,OAAO,EAAE,0BAA0B;EACnC,SAAS,EAAE,eAAe;EAC1B,WAAW,EAAE,IAAI;;AAEnB,uBAAwB;EACtB,OAAO,EAAE,0BAAyB;EAClC,MAAM,EAAE,CAAC;EACT,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,OAAO;;AAErB,WAAY;EACV,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,KAAK;EACd,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;EACjB,MAAM,EAAE,OAAO;;AAEjB,iBAAkB;EAChB,MAAM,EAAE,CAAC;EACT,aAAa,EAAE,CAAC;EAChB,UAAU,EAAE,IAAI;;AAElB,iBAAkB;EAChB,OAAO,EAAE,YAAY;EACrB,cAAc,EAAE,QAAQ;;AAE1B,UAAW;EACT,KAAK,EAAE,OAAO;EACd,WAAW,EAAE,IAAI;EACjB,MAAM,EAAE,YAAY;EACpB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,MAAM;;AAErB,cAAe;EACb,KAAK,EAAE,OAAO;EACd,WAAW,EAAE,GAAG;EAChB,MAAM,EAAE,SAAS;EACjB,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,MAAM;;AAErB,iBAAkB;EAChB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,KAAK;EACZ,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,OAAO;;AAErB,uCAAwC;EACtC,MAAM,EAAE,IAAI;;;AAKd,iBAAkB;EAChB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,IAAI;EACb,MAAM,EAAE,CAAC;;AAEX,6BAA8B;EAC5B,OAAO,EAAE,KAAK;;AAGhB,eAAgB;EACd,MAAM,EAAE,eAAe;EACvB,gBAAgB,EAAE,OAAO;EACzB,WAAW,EAAE,IAAI;;AAEnB,kCAAmC;EACjC,OAAO,EAAE,CAAC;;AAEZ,SAAU;EACR,OAAO,EAAE,YAAY;EACrB,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,OAAO;EACf,OAAO,EAAE,SAAS;EAClB,WAAW,EAAE,IAAI;EACjB,MAAM,EAAE,OAAO;EACf,KAAK,EAAE,IAAI;EACX,cAAc,EAAE,SAAS;EACzB,cAAc,EAAE,GAAG;EACnB,WAAW,EAAE,IAAI;EACjB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;EACjB,MAAM,EAAE,qBAAqB;EAC7B,sBAAsB,EAAE,GAAG;EAC3B,uBAAuB,EAAE,GAAG;EAC5B,mBAAmB,EAAE,CAAC;EACtB,WAAW,EAAE,MAAM;ECjFnB,kBAAoB,EDkFU,oBAAqB;ECjFnD,eAAiB,EDiFa,oBAAqB;EChFnD,cAAgB,EDgFc,oBAAqB;EC/EnD,UAAY,ED+EkB,oBAAqB;;AAErD,4BAA6B;EAC3B,OAAO,EAAE,IAAI;EACb,YAAY,EAAE,cAAc;EAC5B,UAAU,EAAE,cAAc;EAC1B,WAAW,EAAE,cAAc;EAC3B,UAAU,EAAE,IAAI;EAChB,UAAU,EAAE,OAAO;EACnB,kCAAQ;IACN,UAAU,EAAE,IAAI;;AAGpB,wCAAyC;EACvC,MAAM,EAAE,WAAW;EC9DnB,yCAA8C;ID6DhD,wCAAyC;MAGrC,MAAM,EAAE,CAAC;;AAGb,eAAgB;EACd,gBAAgB,EAAE,OAAO;EACzB,KAAK,EAAE,IAAI;;AAEb,qBAAsB;EACpB,WAAW,EAAE,IAAI;;AAEnB,kBAAmB;EACjB,UAAU,EAAE,OAAO;EACnB,KAAK,EAAE,IAAI;EACX,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,GAAG;EACR,OAAO,EAAC,CAAC;;AAEX,oBAAqB;EACnB,OAAO,EAAC,EAAE;EACV,OAAO,EAAC,KAAK;EACb,KAAK,EAAC,IAAI;;;AAKZ;0BAC2B;EACzB,UAAU,EAAE,OAAO;EACnB,kBAAkB,EAAE,IAAI;EACxB,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,kBAAkB;;AAE7B,0BAA2B;EACzB,MAAM,EAAE,IAAI;EACZ,WAAW,EAAE,IAAI;;AAEnB,iBAAkB;EAChB,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,OAAO;EACnB,UAAU,EAAE,IAAI;;AAElB,kBAAmB;EACjB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,UAAU;EAClB,KAAK,EAAE,IAAI;EACX,KAAK,EAAE,IAAI;;AAEb,4BAA6B;EAC3B,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,kBAAkB;EAC1B,UAAU,EAAE,OAAO;EACnB,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,OAAO;EACd,MAAM,EAAE,iBAAiB;EACzB,KAAK,EAAE,eAAe;EACtB,MAAM,EAAE,eAAe;EACvB,SAAS,EAAE,eAAe;EAC1B,SAAS,EAAE,cAAc;;AAE3B,6BAA8B;EAC5B,WAAW,EAAE,CAAC;;AAEhB,2CAA4C;EAC1C,gBAAgB,EAAE,OAAO;EACzB,MAAM,EAAE,GAAG;EACX,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,GAAG;;;AAKb,YAAa;EACX,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,SAAS;;AAEnB,kCAAmC;EACjC,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,KAAK;EACd,OAAO,EAAE,CAAC;EACV,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,YAAY;;AAEvB,sBAAuB;EACrB,OAAO,EAAE,YAAY;EACrB,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,SAAS;EACjB,MAAM,EAAE,OAAO;EACf,OAAO,EAAE,IAAI;EACb,mBAAmB,EAAE,IAAI;EACzB,gBAAgB,EAAE,IAAI;EACtB,eAAe,EAAE,IAAI;EACrB,WAAW,EAAE,IAAI;;AAEnB,2BAA4B;EAC1B,OAAO,EAAE,GAAG;EACZ,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,gBAAgB,EAAE,OAAO;EACzB,qBAAqB,EAAE,IAAI;EAC3B,kBAAkB,EAAE,IAAI;EACxB,iBAAiB,EAAE,IAAI;EACvB,gBAAgB,EAAE,IAAI;EACtB,aAAa,EAAE,IAAI;EACnB,kBAAkB,EAAE,eAAe;EACnC,eAAe,EAAE,eAAe;EAChC,aAAa,EAAE,eAAe;EAC9B,UAAU,EAAE,eAAe;;AAE7B,qEAAsE;EACpE,OAAO,EAAE,KAAK;EACd,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,EAAE;;AAEb,kCAAmC;EACjC,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,GAAG;EACT,MAAM,EAAE,GAAG;EACX,KAAK,EAAE,GAAG;EACV,gBAAgB,EAAE,OAAO;EACzB,qBAAqB,EAAE,IAAI;EAC3B,kBAAkB,EAAE,IAAI;EACxB,iBAAiB,EAAE,IAAI;EACvB,gBAAgB,EAAE,IAAI;EACtB,aAAa,EAAE,IAAI;EACnB,kBAAkB,EAAE,eAAe;EACnC,eAAe,EAAE,eAAe;EAChC,aAAa,EAAE,eAAe;EAC9B,UAAU,EAAE,eAAe;;AAE7B,iCAAkC;EAChC,GAAG,EAAE,GAAG;EACR,IAAI,EAAE,GAAG;EACT,MAAM,EAAE,GAAG;EACX,KAAK,EAAE,IAAI;EACX,gBAAgB,EAAE,OAAO;EACzB,qBAAqB,EAAE,IAAI;EAC3B,kBAAkB,EAAE,IAAI;EACxB,iBAAiB,EAAE,IAAI;EACvB,gBAAgB,EAAE,IAAI;EACtB,aAAa,EAAE,IAAI;EACnB,kBAAkB,EAAE,4BAA4B;EAChD,eAAe,EAAE,4BAA4B;EAC7C,aAAa,EAAE,4BAA4B;EAC3C,UAAU,EAAE,4BAA4B;;AAE1C,mCAAoC;EAClC,gBAAgB,EAAE,OAAO;;AAE3B,yCAA0C;EACxC,WAAW,EAAE,IAAI;EACjB,gBAAgB,EAAE,OAAO;;;AAK3B,YAAa;EACX,MAAM,EAAE,eAAe;EACvB,WAAW,EAAE,eAAe;EAC5B,MAAM,EAAE,eAAe;EACvB,OAAO,EAAE,eAAe;EACxB,UAAU,EAAE,eAAe;EAC3B,WAAW,EAAE,eAAe;EAC5B,MAAM,EAAE,eAAe;EACvB,MAAM,EAAE,YAAY;EACpB,OAAO,EAAE,iBAAiB;EAC1B,KAAK,EAAE,eAAe;EACtB,UAAU,EAAE,OAAO;EACnB,qBAAqB,EAAE,YAAY;EACnC,aAAa,EAAE,YAAY;EAC3B,cAAc,EAAE,GAAG;EACnB,kBAAkB,EAAE,YAAY;EAChC,eAAe,EAAE,YAAY;EAC7B,aAAa,EAAE,YAAY;EAC3B,UAAU,EAAE,YAAY;;AAE1B,kBAAmB;EACjB,OAAO,EAAE,GAAG;;;AAKd,aAAc;EACZ,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,OAAO;EACnB,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,IAAI;EACb,WAAW,EAAE,IAAI;EACjB,UAAU,EAAE,MAAM;EAClB,UAAU,EAAE,UAAU;EACtB,eAAe,EAAE,UAAU;EAC3B,kBAAkB,EAAE,UAAU;;AAEhC,wBAAyB;EACvB,KAAK,EAAE,IAAI;EACX,YAAY,EAAE,IAAI;EAClB,iBAAiB,EAAE,wBAAwB;EAC3C,SAAS,EAAE,wBAAwB;;AAErC,kBAAmB;EACjB,WAAW,EAAE,mBAAmB;;AAElC,gBAAiB;EACf,SAAS,EAAE,IAAI;EACf,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,CAAC;EACT,WAAW,EAAE,GAAG;;AAElB,wBAIG;EAHD,EAAG;IAAE,OAAO,EAAE,CAAC;EACf,GAAI;IAAE,OAAO,EAAE,EAAE;EACjB,IAAK;IAAE,OAAO,EAAE,CAAC;AAEnB,gBAIG;EAHD,EAAG;IAAE,OAAO,EAAE,CAAC;EACf,GAAI;IAAE,OAAO,EAAE,EAAE;EACjB,IAAK;IAAE,OAAO,EAAE,CAAC;;AAKnB,oBAAqB;EACnB,UAAU,EAAE,WAAW;;AAGzB,yBAA0B;EEjStB,OAAO,EAAE,WAAW;EACpB,OAAO,EAAE,QAAQ;EACjB,OAAO,EAAE,GAAG;EAGZ,OAAO,EAAE,YAAY;EACrB,OAAO,EAAE,SAAS;EAClB,OAAO,EAAE,WAAW;EACpB,OAAO,EAAE,IAAI;ECiFhB,iBAAiB,EH0MG,QAAQ;EGzM5B,cAAc,EHyMM,QAAQ;EGxM5B,aAAa,EHwMO,QAAQ;EGvM5B,SAAS,EHuMW,QAAQ;EGpE3B,gBAAgB,EAAE,KAAK;EACvB,aAAa,EAAE,KAAK;EAarB,uBAAuB,EHuDG,UAAU;EGtDpC,oBAAoB,EHsDM,UAAU;EGrDpC,eAAe,EHqDW,UAAU;EGsBpC,qBAAqB,EHrBG,aAAa;EGsBrC,kBAAkB,EHtBM,aAAa;EG4BpC,kBAAkB,EH5BK,aAAa;EG8BrC,aAAa,EH9BW,aAAa;EACpC,mCAAU;IACR,KAAK,EAAE,KAAK;IACZ,aAAa,EAAE,IAAI",
|
4 |
+
"sources": ["../../../../../bower_components/neat/app/assets/stylesheets/grid/_box-sizing.scss","lvca-elements.scss","../../../assets/css/_lvca-lib.scss","../../../../../bower_components/bourbon/app/assets/stylesheets/css3/_flex-box.scss","../../../../../bower_components/sass-flex-mixin/_flexbox.scss"],
|
5 |
+
"names": [],
|
6 |
+
"file": "lvca-elements.css"
|
7 |
+
}
|
admin/assets/css/lvca-elements.scss
ADDED
@@ -0,0 +1,370 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@import "bourbon";
|
2 |
+
@import "neat";
|
3 |
+
@import "flexbox";
|
4 |
+
|
5 |
+
@import "../../../assets/css/lvca-lib";
|
6 |
+
|
7 |
+
|
8 |
+
/* =============== Common Styles ===================== */
|
9 |
+
|
10 |
+
.lvca-icon {
|
11 |
+
position: relative;
|
12 |
+
display: inline-block;
|
13 |
+
margin-right: 5px;
|
14 |
+
}
|
15 |
+
.lvca-row {
|
16 |
+
position: relative;
|
17 |
+
display: inline-block;
|
18 |
+
vertical-align: top;
|
19 |
+
padding: 15px 18px;
|
20 |
+
margin: 0 25px 0 0;
|
21 |
+
}
|
22 |
+
|
23 |
+
h3.lvca-title {
|
24 |
+
padding: 8px 18px 0 18px !important;
|
25 |
+
font-size: 13px !important;
|
26 |
+
font-weight: bold;
|
27 |
+
}
|
28 |
+
.lvca-title.description {
|
29 |
+
padding: 4px 18px 0 18px!important;
|
30 |
+
margin: 0;
|
31 |
+
font-size: 12px;
|
32 |
+
font-style: initial;
|
33 |
+
}
|
34 |
+
.lvca-label {
|
35 |
+
font-weight: bold;
|
36 |
+
display: block;
|
37 |
+
font-size: 15px;
|
38 |
+
line-height: 24px;
|
39 |
+
cursor: default;
|
40 |
+
}
|
41 |
+
.lvca-type-number {
|
42 |
+
margin: 0;
|
43 |
+
padding-right: 0;
|
44 |
+
max-height: 28px;
|
45 |
+
}
|
46 |
+
label.lvca-inline {
|
47 |
+
display: inline-block;
|
48 |
+
vertical-align: baseline;
|
49 |
+
}
|
50 |
+
.lvca-desc {
|
51 |
+
color: #666666;
|
52 |
+
line-height: 15px;
|
53 |
+
margin: 4px 0 12px 0;
|
54 |
+
font-size: 12px;
|
55 |
+
font-weight: normal;
|
56 |
+
}
|
57 |
+
.lvca-sub-desc {
|
58 |
+
color: #666666;
|
59 |
+
line-height: 1.5;
|
60 |
+
margin: 4px 0 0 0;
|
61 |
+
font-size: 12px;
|
62 |
+
font-style: italic;
|
63 |
+
font-weight: normal;
|
64 |
+
}
|
65 |
+
.lvca-select-wrap {
|
66 |
+
position: relative;
|
67 |
+
display: inline-block;
|
68 |
+
width: 200px;
|
69 |
+
height: 28px;
|
70 |
+
background: #ffffff;
|
71 |
+
}
|
72 |
+
[data-multiple="true"].lvca-select-wrap {
|
73 |
+
height: auto;
|
74 |
+
}
|
75 |
+
|
76 |
+
/* ============= TABS ==================== */
|
77 |
+
|
78 |
+
.lvca-tab-content {
|
79 |
+
position: relative;
|
80 |
+
display: none;
|
81 |
+
margin: 0;
|
82 |
+
}
|
83 |
+
.lvca-tab-content:first-child {
|
84 |
+
display: block;
|
85 |
+
}
|
86 |
+
|
87 |
+
.lvca-tabs-wrap {
|
88 |
+
margin: -7px -12px 15px;
|
89 |
+
background-color: #f1f1f1;
|
90 |
+
padding-top: 10px;
|
91 |
+
}
|
92 |
+
.lvca-menu-options .lvca-tabs-wrap {
|
93 |
+
padding: 0;
|
94 |
+
}
|
95 |
+
.lvca-tab {
|
96 |
+
display: inline-block;
|
97 |
+
list-style: none;
|
98 |
+
margin: 0px 1px;
|
99 |
+
padding: 10px 15px;
|
100 |
+
line-height: 18px;
|
101 |
+
cursor: pointer;
|
102 |
+
color: #999;
|
103 |
+
text-transform: uppercase;
|
104 |
+
letter-spacing: 1px;
|
105 |
+
font-weight: bold;
|
106 |
+
font-size: 14px;
|
107 |
+
line-height: 20px;
|
108 |
+
border: 1px solid transparent;
|
109 |
+
border-top-left-radius: 4px;
|
110 |
+
border-top-right-radius: 4px;
|
111 |
+
border-bottom-width: 0;
|
112 |
+
white-space: nowrap;
|
113 |
+
@include vendorize(transition, all 0.4s ease-in-out);
|
114 |
+
}
|
115 |
+
.lvca-menu-options .lvca-tab {
|
116 |
+
padding: 15px;
|
117 |
+
border-right: 1px solid #ddd;
|
118 |
+
border-top: 1px solid #ddd;
|
119 |
+
border-left: 1px solid #ddd;
|
120 |
+
margin-top: 10px;
|
121 |
+
background: #f9f9f9;
|
122 |
+
&:hover {
|
123 |
+
background: #fff;
|
124 |
+
}
|
125 |
+
}
|
126 |
+
.lvca-menu-options .lvca-tab:first-child {
|
127 |
+
margin: 0 0 0 150px;
|
128 |
+
@include respond-to-max(600) {
|
129 |
+
margin: 0;
|
130 |
+
}
|
131 |
+
}
|
132 |
+
.lvca-tab:hover {
|
133 |
+
background-color: #f9f9f9;
|
134 |
+
color: #666;
|
135 |
+
}
|
136 |
+
.lvca-tab:first-child {
|
137 |
+
margin-left: 12px;
|
138 |
+
}
|
139 |
+
.lvca-tab.selected {
|
140 |
+
background: #ffffff;
|
141 |
+
color: #666;
|
142 |
+
position: relative;
|
143 |
+
top: 1px;
|
144 |
+
z-index:1;
|
145 |
+
}
|
146 |
+
.lvca-clearfix:after {
|
147 |
+
content:"";
|
148 |
+
display:table;
|
149 |
+
clear:both;
|
150 |
+
}
|
151 |
+
|
152 |
+
/* ====================== Inputs ====================== */
|
153 |
+
|
154 |
+
textarea.lvca-textarea,
|
155 |
+
input[type=text].lvca-text {
|
156 |
+
background: #f1f1f1;
|
157 |
+
-webkit-box-shadow: none;
|
158 |
+
box-shadow: none;
|
159 |
+
padding: 3px 5px !important;
|
160 |
+
}
|
161 |
+
input[type=text].lvca-text {
|
162 |
+
height: 28px;
|
163 |
+
line-height: 26px;
|
164 |
+
}
|
165 |
+
.lvca-text.number {
|
166 |
+
width: 65px;
|
167 |
+
background: #f1f1f1;
|
168 |
+
box-shadow: none;
|
169 |
+
}
|
170 |
+
.lvca-number-label {
|
171 |
+
position: relative;
|
172 |
+
display: inline-block;
|
173 |
+
margin: 0 10px 0 0;
|
174 |
+
width: auto;
|
175 |
+
color: #888;
|
176 |
+
}
|
177 |
+
input[type=radio].lvca-radio {
|
178 |
+
opacity: 1;
|
179 |
+
filter: alpha(opacity=100);
|
180 |
+
background: #ffffff;
|
181 |
+
margin-left: 15px;
|
182 |
+
padding: 0 !important;
|
183 |
+
color: #34495e;
|
184 |
+
border: 2px solid #34495e;
|
185 |
+
width: 14px !important;
|
186 |
+
height: 14px !important;
|
187 |
+
max-width: 14px !important;
|
188 |
+
min-width: 0px !important;
|
189 |
+
}
|
190 |
+
input[type=radio].first-input {
|
191 |
+
margin-left: 0;
|
192 |
+
}
|
193 |
+
input[type=radio].lvca-radio:checked:before {
|
194 |
+
background-color: #2c3e50;
|
195 |
+
margin: 2px;
|
196 |
+
width: 6px;
|
197 |
+
height: 6px;
|
198 |
+
}
|
199 |
+
|
200 |
+
/* ======================== Checkbox ======================= */
|
201 |
+
|
202 |
+
.lvca-toggle {
|
203 |
+
position: relative;
|
204 |
+
display: inline-block;
|
205 |
+
margin: 0 0 6px 0;
|
206 |
+
}
|
207 |
+
input[type=checkbox].lvca-checkbox {
|
208 |
+
position: absolute;
|
209 |
+
display: block;
|
210 |
+
z-index: 2;
|
211 |
+
width: 100%;
|
212 |
+
height: 100%;
|
213 |
+
margin: 0;
|
214 |
+
opacity: 0 !important;
|
215 |
+
}
|
216 |
+
.lvca-checkbox + label {
|
217 |
+
display: inline-block;
|
218 |
+
position: relative;
|
219 |
+
margin: 0 4px 0 0;
|
220 |
+
cursor: pointer;
|
221 |
+
outline: none;
|
222 |
+
-webkit-user-select: none;
|
223 |
+
-moz-user-select: none;
|
224 |
+
-ms-user-select: none;
|
225 |
+
user-select: none;
|
226 |
+
}
|
227 |
+
input.lvca-checkbox + label {
|
228 |
+
padding: 2px;
|
229 |
+
width: 43px;
|
230 |
+
height: 20px;
|
231 |
+
background-color: #2c3e50;
|
232 |
+
-webkit-border-radius: 60px;
|
233 |
+
-moz-border-radius: 60px;
|
234 |
+
-ms-border-radius: 60px;
|
235 |
+
-o-border-radius: 60px;
|
236 |
+
border-radius: 60px;
|
237 |
+
-webkit-transition: background 0.2s;
|
238 |
+
-moz-transition: background 0.2s;
|
239 |
+
-o-transition: background 0.2s;
|
240 |
+
transition: background 0.2s;
|
241 |
+
}
|
242 |
+
input.lvca-checkbox + label:before, input.lvca-checkbox + label:after {
|
243 |
+
display: block;
|
244 |
+
position: absolute;
|
245 |
+
content: "";
|
246 |
+
}
|
247 |
+
input.lvca-checkbox + label:before {
|
248 |
+
top: 2px;
|
249 |
+
left: 2px;
|
250 |
+
bottom: 2px;
|
251 |
+
right: 2px;
|
252 |
+
background-color: #ffffff;
|
253 |
+
-webkit-border-radius: 10px;
|
254 |
+
-moz-border-radius: 10px;
|
255 |
+
-ms-border-radius: 10px;
|
256 |
+
-o-border-radius: 10px;
|
257 |
+
border-radius: 10px;
|
258 |
+
-webkit-transition: background 0.2s;
|
259 |
+
-moz-transition: background 0.2s;
|
260 |
+
-o-transition: background 0.2s;
|
261 |
+
transition: background 0.2s;
|
262 |
+
}
|
263 |
+
input.lvca-checkbox + label:after {
|
264 |
+
top: 3px;
|
265 |
+
left: 3px;
|
266 |
+
bottom: 3px;
|
267 |
+
width: 18px;
|
268 |
+
background-color: #2c3e50;
|
269 |
+
-webkit-border-radius: 10px;
|
270 |
+
-moz-border-radius: 10px;
|
271 |
+
-ms-border-radius: 10px;
|
272 |
+
-o-border-radius: 10px;
|
273 |
+
border-radius: 10px;
|
274 |
+
-webkit-transition: margin 0.2s, background 0.2s;
|
275 |
+
-moz-transition: margin 0.2s, background 0.2s;
|
276 |
+
-o-transition: margin 0.2s, background 0.2s;
|
277 |
+
transition: margin 0.2s, background 0.2s;
|
278 |
+
}
|
279 |
+
input.lvca-checkbox:checked + label {
|
280 |
+
background-color: #4ECDC4;
|
281 |
+
}
|
282 |
+
input.lvca-checkbox:checked + label:after {
|
283 |
+
margin-left: 23px;
|
284 |
+
background-color: #4ECDC4;
|
285 |
+
}
|
286 |
+
|
287 |
+
/* =========================== Buttons ==================== */
|
288 |
+
|
289 |
+
.lvca-button {
|
290 |
+
border: none !important;
|
291 |
+
text-shadow: none !important;
|
292 |
+
border: none !important;
|
293 |
+
outline: none !important;
|
294 |
+
box-shadow: none !important;
|
295 |
+
line-height: 26px !important;
|
296 |
+
height: auto !important;
|
297 |
+
margin: 0 !important;
|
298 |
+
padding: 0 10px !important;
|
299 |
+
color: #fff !important;
|
300 |
+
background: #f94213;
|
301 |
+
-webkit-border-radius: 0 !important;
|
302 |
+
border-radius: 0 !important;
|
303 |
+
vertical-align: top;
|
304 |
+
-webkit-transition: opacity 0.2s;
|
305 |
+
-moz-transition: opacity 0.2s;
|
306 |
+
-o-transition: opacity 0.2s;
|
307 |
+
transition: opacity 0.2s;
|
308 |
+
}
|
309 |
+
.lvca-button:hover {
|
310 |
+
opacity: 0.8;
|
311 |
+
}
|
312 |
+
|
313 |
+
/* ========================== Info box ====================== */
|
314 |
+
|
315 |
+
.lvca-infobox {
|
316 |
+
position: relative;
|
317 |
+
display: block;
|
318 |
+
background: #f1f1f1;
|
319 |
+
margin: 30px;
|
320 |
+
padding: 15px;
|
321 |
+
line-height: 20px;
|
322 |
+
font-style: italic;
|
323 |
+
box-sizing: border-box;
|
324 |
+
-moz-box-sizing: border-box;
|
325 |
+
-webkit-box-sizing: border-box;
|
326 |
+
}
|
327 |
+
.lvca-infobox .dashicons {
|
328 |
+
float: left;
|
329 |
+
margin-right: 10px;
|
330 |
+
-webkit-animation: flash linear 1s infinite;
|
331 |
+
animation: flash linear 1s infinite;
|
332 |
+
}
|
333 |
+
.lvca-infobox-wrap {
|
334 |
+
margin-left: 40px 30px 30px 30px;
|
335 |
+
}
|
336 |
+
.lvca-infobox h3 {
|
337 |
+
font-size: 14px;
|
338 |
+
padding: 0 !important;
|
339 |
+
margin: 0;
|
340 |
+
line-height: 1.4;
|
341 |
+
}
|
342 |
+
@-webkit-keyframes flash {
|
343 |
+
0% { opacity: 1; }
|
344 |
+
50% { opacity: .1; }
|
345 |
+
100% { opacity: 1; }
|
346 |
+
}
|
347 |
+
@keyframes flash {
|
348 |
+
0% { opacity: 1; }
|
349 |
+
50% { opacity: .1; }
|
350 |
+
100% { opacity: 1; }
|
351 |
+
}
|
352 |
+
|
353 |
+
/* ========= Misc ============= */
|
354 |
+
|
355 |
+
.wp-picker-container {
|
356 |
+
box-sizing: content-box;
|
357 |
+
}
|
358 |
+
|
359 |
+
.lvca-elements-deactivate {
|
360 |
+
@include display(flex);
|
361 |
+
@include flex-flow(row wrap);
|
362 |
+
@include justify-content(flex-start);
|
363 |
+
@include align-content(space-between);
|
364 |
+
.lvca-row {
|
365 |
+
width: 280px;
|
366 |
+
margin-bottom: 15px;
|
367 |
+
}
|
368 |
+
}
|
369 |
+
|
370 |
+
|
admin/assets/css/premium-upgrade.css
ADDED
@@ -0,0 +1,607 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* -------------------- Pricing Plan ------------ */
|
2 |
+
.clear:after {
|
3 |
+
visibility: hidden;
|
4 |
+
display: block;
|
5 |
+
font-size: 0;
|
6 |
+
content: " ";
|
7 |
+
clear: both;
|
8 |
+
height: 0; }
|
9 |
+
|
10 |
+
.clear {
|
11 |
+
display: inline-table;
|
12 |
+
clear: both; }
|
13 |
+
|
14 |
+
* html .clear {
|
15 |
+
height: 1%; }
|
16 |
+
|
17 |
+
.clear {
|
18 |
+
display: block; }
|
19 |
+
|
20 |
+
.hide {
|
21 |
+
display: none !important; }
|
22 |
+
|
23 |
+
.flex-wrap {
|
24 |
+
display: -webkit-flex;
|
25 |
+
display: -ms-flexbox;
|
26 |
+
display: flex;
|
27 |
+
-webkit-flex-wrap: wrap;
|
28 |
+
-ms-flex-wrap: wrap;
|
29 |
+
flex-wrap: wrap; }
|
30 |
+
|
31 |
+
.flex-col {
|
32 |
+
display: -webkit-flex;
|
33 |
+
display: -ms-flexbox;
|
34 |
+
display: flex; }
|
35 |
+
|
36 |
+
.btn {
|
37 |
+
line-height: 20px;
|
38 |
+
display: block;
|
39 |
+
float: left;
|
40 |
+
position: relative;
|
41 |
+
overflow: hidden;
|
42 |
+
padding: 13px 20px;
|
43 |
+
font-size: 0.9375em;
|
44 |
+
font-weight: 400;
|
45 |
+
text-align: center;
|
46 |
+
cursor: pointer;
|
47 |
+
text-decoration: none;
|
48 |
+
margin: 0;
|
49 |
+
border: 0;
|
50 |
+
outline: 0;
|
51 |
+
border-image-width: 0;
|
52 |
+
-webkit-border-radius: 3px;
|
53 |
+
-moz-border-radius: 3px;
|
54 |
+
border-radius: 3px; }
|
55 |
+
|
56 |
+
.btn,
|
57 |
+
.btn:hover,
|
58 |
+
.btn:focus,
|
59 |
+
.btn:active {
|
60 |
+
color: #fff;
|
61 |
+
text-decoration: none; }
|
62 |
+
|
63 |
+
.btn {
|
64 |
+
background-color: #00bcd4; }
|
65 |
+
|
66 |
+
.btn:hover {
|
67 |
+
background-color: #26c6da; }
|
68 |
+
|
69 |
+
.btn:focus,
|
70 |
+
.btn:active {
|
71 |
+
background-color: #05a7bd; }
|
72 |
+
|
73 |
+
.m0 {
|
74 |
+
margin: 0 !important; }
|
75 |
+
|
76 |
+
.mb0 {
|
77 |
+
margin-bottom: 0 !important; }
|
78 |
+
|
79 |
+
.mb1 {
|
80 |
+
margin-bottom: 1px !important; }
|
81 |
+
|
82 |
+
.mb5 {
|
83 |
+
margin-bottom: 5px !important; }
|
84 |
+
|
85 |
+
.mb10 {
|
86 |
+
margin-bottom: 10px !important; }
|
87 |
+
|
88 |
+
.mb15 {
|
89 |
+
margin-bottom: 15px !important; }
|
90 |
+
|
91 |
+
.mb20 {
|
92 |
+
margin-bottom: 20px !important; }
|
93 |
+
|
94 |
+
.mb30 {
|
95 |
+
margin-bottom: 30px !important; }
|
96 |
+
|
97 |
+
.c-wh {
|
98 |
+
color: #fff !important; }
|
99 |
+
|
100 |
+
.c-red {
|
101 |
+
color: #da4f49 !important; }
|
102 |
+
|
103 |
+
.c-mg {
|
104 |
+
color: #9e9e9e; }
|
105 |
+
|
106 |
+
.w100 {
|
107 |
+
width: 100% !important; }
|
108 |
+
|
109 |
+
.bg-cy {
|
110 |
+
background-color: #00bcd4; }
|
111 |
+
|
112 |
+
.bg-gr {
|
113 |
+
background-color: #8ac249; }
|
114 |
+
|
115 |
+
.pricing-content {
|
116 |
+
max-width: 1000px;
|
117 |
+
margin: 0 auto; }
|
118 |
+
|
119 |
+
.pricing-content, .pricing-content p {
|
120 |
+
font-size: 18px;
|
121 |
+
line-height: 1.6; }
|
122 |
+
|
123 |
+
.pricing-content p:empty {
|
124 |
+
display: none; }
|
125 |
+
|
126 |
+
div.plans-wrapper ul {
|
127 |
+
list-style-type: none;
|
128 |
+
margin: 0 0 15px 0; }
|
129 |
+
|
130 |
+
div#plans {
|
131 |
+
margin-top: 50px; }
|
132 |
+
|
133 |
+
div.plans-wrapper {
|
134 |
+
width: 100%;
|
135 |
+
margin: 0 auto;
|
136 |
+
position: relative;
|
137 |
+
background: #f5f8f9;
|
138 |
+
z-index: 4;
|
139 |
+
-webkit-box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
|
140 |
+
-moz-box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
|
141 |
+
box-shadow: 0 0 30px rgba(34, 44, 55, 0.15); }
|
142 |
+
|
143 |
+
div.plans-wrapper div.plan-intro div.w100 {
|
144 |
+
padding: 20px 30px 0 30px;
|
145 |
+
position: relative; }
|
146 |
+
|
147 |
+
div.plans-wrapper div.plan-intro {
|
148 |
+
width: 340px;
|
149 |
+
float: left;
|
150 |
+
padding: 30px 0;
|
151 |
+
position: relative;
|
152 |
+
z-index: 4; }
|
153 |
+
|
154 |
+
div.plans-wrapper div.plans {
|
155 |
+
width: 100%;
|
156 |
+
float: left;
|
157 |
+
margin: 0 0 0 -340px;
|
158 |
+
position: relative; }
|
159 |
+
|
160 |
+
div.plans-wrapper div.content-wrapper {
|
161 |
+
margin: 0 0 0 340px;
|
162 |
+
position: relative; }
|
163 |
+
|
164 |
+
div.plans-wrapper div.plan {
|
165 |
+
width: 50%;
|
166 |
+
float: left;
|
167 |
+
text-align: center;
|
168 |
+
position: relative;
|
169 |
+
z-index: 2;
|
170 |
+
-webkit-transition: all .5s;
|
171 |
+
-moz-transition: all .5s;
|
172 |
+
transition: all .5s; }
|
173 |
+
|
174 |
+
div.plans-wrapper div.plan h3 {
|
175 |
+
color: #fff; }
|
176 |
+
|
177 |
+
div.plans-wrapper div.plan:last-child {
|
178 |
+
border-right: 0; }
|
179 |
+
|
180 |
+
div.plans-wrapper div.plan {
|
181 |
+
background: #222c37;
|
182 |
+
-webkit-transition: all .25s;
|
183 |
+
-moz-transition: all .25s;
|
184 |
+
transition: all .25s; }
|
185 |
+
|
186 |
+
div.plans-wrapper div.plan2,
|
187 |
+
div.plans-wrapper div.plan4 {
|
188 |
+
background: #2d3741; }
|
189 |
+
|
190 |
+
div.plans-wrapper div.plan div.w100 {
|
191 |
+
position: relative;
|
192 |
+
padding: 40px 20px 80px 20px; }
|
193 |
+
|
194 |
+
div.plans-wrapper div.plan-intro img {
|
195 |
+
width: 100%;
|
196 |
+
height: auto; }
|
197 |
+
|
198 |
+
div.plans-wrapper div.plan p {
|
199 |
+
font-size: 1.0625em;
|
200 |
+
color: #ccc;
|
201 |
+
backface-visibility: hidden; }
|
202 |
+
|
203 |
+
div.plans-wrapper div.plan .price {
|
204 |
+
position: relative;
|
205 |
+
display: inline-block;
|
206 |
+
font-size: 1.875em;
|
207 |
+
margin: 0 0 30px 0; }
|
208 |
+
|
209 |
+
div.plans-wrapper div.plan div.action {
|
210 |
+
position: absolute;
|
211 |
+
bottom: 30px;
|
212 |
+
left: 30px;
|
213 |
+
right: 30px;
|
214 |
+
text-align: center; }
|
215 |
+
|
216 |
+
div.plans-wrapper div.plan div.action .btn {
|
217 |
+
width: 100%;
|
218 |
+
vertical-align: top; }
|
219 |
+
|
220 |
+
div.compare-wrapper {
|
221 |
+
width: 100%;
|
222 |
+
margin: 0 auto;
|
223 |
+
background: #ececec;
|
224 |
+
position: relative; }
|
225 |
+
|
226 |
+
div.compare-wrapper div.benefits {
|
227 |
+
width: 340px;
|
228 |
+
float: left; }
|
229 |
+
|
230 |
+
div.compare-wrapper div.plans {
|
231 |
+
width: 100%;
|
232 |
+
float: left;
|
233 |
+
margin: 0 0 0 -340px;
|
234 |
+
position: relative; }
|
235 |
+
|
236 |
+
div.compare-wrapper div.content-wrapper {
|
237 |
+
margin: 0 0 0 340px;
|
238 |
+
position: relative; }
|
239 |
+
|
240 |
+
div.compare-wrapper div.plan {
|
241 |
+
width: 50%;
|
242 |
+
float: left;
|
243 |
+
padding: 30px 0 0 0;
|
244 |
+
text-align: center;
|
245 |
+
background: #f5f8f9; }
|
246 |
+
|
247 |
+
div.compare-wrapper div.plan.even {
|
248 |
+
background: #ececec; }
|
249 |
+
|
250 |
+
div.compare-wrapper div.tooltip {
|
251 |
+
padding: 20px;
|
252 |
+
background: #fff;
|
253 |
+
position: absolute;
|
254 |
+
border-bottom: #37BF91 5px solid;
|
255 |
+
top: 48px;
|
256 |
+
left: 10px;
|
257 |
+
right: 10px;
|
258 |
+
font-weight: 300;
|
259 |
+
z-index: 999;
|
260 |
+
text-align: left;
|
261 |
+
-webkit-box-shadow: 0 1px 20px rgba(34, 44, 55, 0.3);
|
262 |
+
-moz-box-shadow: 0 1px 20px rgba(34, 44, 55, 0.3);
|
263 |
+
box-shadow: 0 1px 20px rgba(34, 44, 55, 0.3); }
|
264 |
+
|
265 |
+
div.compare-wrapper div.tooltip:before {
|
266 |
+
content: '';
|
267 |
+
display: block;
|
268 |
+
position: absolute;
|
269 |
+
top: -19px;
|
270 |
+
right: 21px;
|
271 |
+
z-index: 18;
|
272 |
+
border: transparent 10px solid;
|
273 |
+
border-bottom-color: #fff; }
|
274 |
+
|
275 |
+
div.compare-wrapper div.tooltip p {
|
276 |
+
font-size: 1em;
|
277 |
+
margin: 0; }
|
278 |
+
|
279 |
+
div.compare-wrapper div.action {
|
280 |
+
padding: 30px;
|
281 |
+
background: #f0f3f4; }
|
282 |
+
|
283 |
+
div.compare-wrapper div.plan.even div.action {
|
284 |
+
background: #e7e7e7; }
|
285 |
+
|
286 |
+
div.compare-wrapper div.action .btn {
|
287 |
+
width: 100%;
|
288 |
+
vertical-align: top; }
|
289 |
+
|
290 |
+
div.compare-wrapper div.benefits h4 {
|
291 |
+
margin: 0;
|
292 |
+
padding: 30px;
|
293 |
+
background: #f5f8f9;
|
294 |
+
position: relative;
|
295 |
+
z-index: 3; }
|
296 |
+
|
297 |
+
div.compare-wrapper div.benefits ul {
|
298 |
+
list-style: none !important;
|
299 |
+
margin: 0 !important;
|
300 |
+
padding: 0 !important;
|
301 |
+
position: relative;
|
302 |
+
z-index: 4; }
|
303 |
+
|
304 |
+
div.compare-wrapper div.benefits ul li {
|
305 |
+
height: 50px;
|
306 |
+
padding: 0 30px !important;
|
307 |
+
margin: 0 !important;
|
308 |
+
text-align: left;
|
309 |
+
font-size: 0.9375em;
|
310 |
+
font-weight: 400;
|
311 |
+
position: relative;
|
312 |
+
background: #f5f8f9; }
|
313 |
+
|
314 |
+
div.compare-wrapper div.benefits ul li div.text {
|
315 |
+
vertical-align: middle;
|
316 |
+
display: table-cell;
|
317 |
+
height: 50px; }
|
318 |
+
|
319 |
+
div.compare-wrapper div.benefits ul li:nth-child(odd) {
|
320 |
+
background: #ececec; }
|
321 |
+
|
322 |
+
div.compare-wrapper div.benefits ul li:before {
|
323 |
+
display: none; }
|
324 |
+
|
325 |
+
div.compare-wrapper div.benefits ul li span.dashicons-editor-help {
|
326 |
+
line-height: 22px;
|
327 |
+
display: block;
|
328 |
+
position: absolute;
|
329 |
+
top: 5px;
|
330 |
+
right: 30px;
|
331 |
+
cursor: pointer;
|
332 |
+
text-align: center;
|
333 |
+
color: #9e9e9e;
|
334 |
+
font-size: 32px;
|
335 |
+
line-height: 1; }
|
336 |
+
|
337 |
+
div.compare-wrapper div.benefits ul li span.dashicons-editor-help:before {
|
338 |
+
font-size: 85%; }
|
339 |
+
|
340 |
+
div.compare-wrapper div.plan h4 {
|
341 |
+
color: #222c37;
|
342 |
+
margin: 0 0 30px 0; }
|
343 |
+
|
344 |
+
div.compare-wrapper div.plan ul {
|
345 |
+
width: 100%;
|
346 |
+
margin: 0 !important;
|
347 |
+
padding: 0 !important;
|
348 |
+
list-style: none !important; }
|
349 |
+
|
350 |
+
div.compare-wrapper div.plan ul li {
|
351 |
+
position: relative;
|
352 |
+
height: 50px;
|
353 |
+
line-height: 20px;
|
354 |
+
padding: 15px 20px !important;
|
355 |
+
margin: 0 !important;
|
356 |
+
text-align: center;
|
357 |
+
font-size: 0.9375em; }
|
358 |
+
|
359 |
+
div.compare-wrapper div.plan ul li:nth-child(odd) {
|
360 |
+
background: rgba(0, 0, 0, 0.02); }
|
361 |
+
|
362 |
+
div.compare-wrapper div.plan ul li:before {
|
363 |
+
display: none; }
|
364 |
+
|
365 |
+
div.compare-wrapper div.plan ul li span.dashicons-editor-help {
|
366 |
+
font-size: 24px;
|
367 |
+
vertical-align: top;
|
368 |
+
line-height: 1;
|
369 |
+
color: #9e9e9e;
|
370 |
+
margin: 0 0 0 2px;
|
371 |
+
cursor: pointer; }
|
372 |
+
|
373 |
+
div.compare-wrapper div.plan ul li span.pay {
|
374 |
+
font-weight: 700; }
|
375 |
+
|
376 |
+
div.compare-wrapper div.plan ul li div.tooltip:before {
|
377 |
+
right: 50%;
|
378 |
+
margin: 0 -10px 0 0; }
|
379 |
+
|
380 |
+
div.compare-wrapper div.plan ul li div.dashicons-no-alt {
|
381 |
+
color: #da4f49; }
|
382 |
+
|
383 |
+
div.compare-wrapper div.plan1 ul li div.dashicons-yes {
|
384 |
+
color: #8ac249; }
|
385 |
+
|
386 |
+
div.compare-wrapper div.plan2 ul li div.dashicons-yes {
|
387 |
+
color: #00bcd4; }
|
388 |
+
|
389 |
+
div.compare-wrapper div.plan3 ul li div.dashicons-yes {
|
390 |
+
color: #37BF91; }
|
391 |
+
|
392 |
+
div.compare-wrapper div.plan4 ul li div.dashicons-yes {
|
393 |
+
color: #009688; }
|
394 |
+
|
395 |
+
div.compare-wrapper .dashicons {
|
396 |
+
font-size: 28px;
|
397 |
+
line-height: 1;
|
398 |
+
width: auto;
|
399 |
+
height: auto; }
|
400 |
+
|
401 |
+
div.compare-wrapper div.plan1 ul li div.tooltip {
|
402 |
+
border-color: #8ac249; }
|
403 |
+
|
404 |
+
div.compare-wrapper div.plan2 ul li div.tooltip {
|
405 |
+
border-color: #00bcd4; }
|
406 |
+
|
407 |
+
div.compare-wrapper div.plan3 ul li div.tooltip {
|
408 |
+
border-color: #37BF91; }
|
409 |
+
|
410 |
+
div.compare-wrapper div.plan4 ul li div.tooltip {
|
411 |
+
border-color: #009688; }
|
412 |
+
|
413 |
+
div.compare-wrapper div.plan ul li .m {
|
414 |
+
display: none; }
|
415 |
+
|
416 |
+
@media only screen and (min-width: 150px) and (max-width: 1380px) {
|
417 |
+
div#plans {
|
418 |
+
margin-bottom: 40px; }
|
419 |
+
|
420 |
+
div.plans-wrapper div.plan-intro {
|
421 |
+
display: none; }
|
422 |
+
|
423 |
+
div.plans-wrapper div.plans {
|
424 |
+
margin: 0; }
|
425 |
+
|
426 |
+
div.plans-wrapper div.content-wrapper {
|
427 |
+
margin: 0; }
|
428 |
+
|
429 |
+
div.compare-wrapper {
|
430 |
+
background: transparent; }
|
431 |
+
|
432 |
+
div.compare-wrapper div.benefits {
|
433 |
+
width: 100%;
|
434 |
+
margin: 0 0 30px 0; }
|
435 |
+
|
436 |
+
div.compare-wrapper div.benefits h4 {
|
437 |
+
padding: 0;
|
438 |
+
background: transparent;
|
439 |
+
font-size: 2em;
|
440 |
+
line-height: 1em;
|
441 |
+
font-weight: 100;
|
442 |
+
color: #222c37; }
|
443 |
+
|
444 |
+
div.compare-wrapper div.benefits ul {
|
445 |
+
display: none; }
|
446 |
+
|
447 |
+
div.compare-wrapper div.plans {
|
448 |
+
margin: 0; }
|
449 |
+
|
450 |
+
div.compare-wrapper div.content-wrapper {
|
451 |
+
margin: 0; }
|
452 |
+
|
453 |
+
div.compare-wrapper div.plan h4 {
|
454 |
+
color: #fff;
|
455 |
+
margin: 0;
|
456 |
+
padding: 15px 20px;
|
457 |
+
background: #222c37; }
|
458 |
+
|
459 |
+
div.compare-wrapper div.plan {
|
460 |
+
width: 100%;
|
461 |
+
padding: 0;
|
462 |
+
margin: 0 0 15px 0;
|
463 |
+
text-align: left;
|
464 |
+
background: #f5f8f9 !important; }
|
465 |
+
|
466 |
+
div.compare-wrapper div.plan ul {
|
467 |
+
width: 100%;
|
468 |
+
margin: 0;
|
469 |
+
display: -webkit-flex;
|
470 |
+
display: -ms-flexbox;
|
471 |
+
display: flex;
|
472 |
+
-webkit-flex-wrap: wrap;
|
473 |
+
-ms-flex-wrap: wrap;
|
474 |
+
flex-wrap: wrap; }
|
475 |
+
|
476 |
+
div.compare-wrapper div.plan ul li {
|
477 |
+
width: 50%;
|
478 |
+
height: auto;
|
479 |
+
float: left;
|
480 |
+
line-height: 20px;
|
481 |
+
padding: 15px 20px 15px 40px !important;
|
482 |
+
text-align: left;
|
483 |
+
display: -webkit-flex;
|
484 |
+
display: -ms-flexbox;
|
485 |
+
display: flex; }
|
486 |
+
|
487 |
+
div.compare-wrapper div.plan ul li:nth-child(odd) {
|
488 |
+
background: transparent; }
|
489 |
+
|
490 |
+
div.compare-wrapper div.plan ul li:nth-child(2),
|
491 |
+
div.compare-wrapper div.plan ul li:nth-child(3),
|
492 |
+
div.compare-wrapper div.plan ul li:nth-child(6),
|
493 |
+
div.compare-wrapper div.plan ul li:nth-child(7),
|
494 |
+
div.compare-wrapper div.plan ul li:nth-child(10),
|
495 |
+
div.compare-wrapper div.plan ul li:nth-child(11),
|
496 |
+
div.compare-wrapper div.plan ul li:nth-child(14),
|
497 |
+
div.compare-wrapper div.plan ul li:nth-child(15),
|
498 |
+
div.compare-wrapper div.plan ul li:nth-child(18),
|
499 |
+
div.compare-wrapper div.plan ul li:nth-child(19),
|
500 |
+
div.compare-wrapper div.plan ul li:nth-child(22),
|
501 |
+
div.compare-wrapper div.plan ul li:nth-child(23) {
|
502 |
+
background: rgba(0, 0, 0, 0.02); }
|
503 |
+
|
504 |
+
div.compare-wrapper div.plan ul li span.message {
|
505 |
+
display: none; }
|
506 |
+
|
507 |
+
div.compare-wrapper div.plan ul li .m {
|
508 |
+
display: inline-block; }
|
509 |
+
|
510 |
+
div.compare-wrapper div.plan ul li div.dashicons-yes,
|
511 |
+
div.compare-wrapper div.plan ul li div.dashicons-no-alt {
|
512 |
+
position: absolute;
|
513 |
+
top: 13px;
|
514 |
+
left: 8px; }
|
515 |
+
|
516 |
+
div.compare-wrapper div.plan ul li div.dashicons-no-alt {
|
517 |
+
top: 16px; }
|
518 |
+
|
519 |
+
div.compare-wrapper div.plan ul li span.m-message {
|
520 |
+
display: inline-block; }
|
521 |
+
|
522 |
+
div.compare-wrapper div.action {
|
523 |
+
padding: 15px;
|
524 |
+
background: #e7e7e7; }
|
525 |
+
|
526 |
+
div.compare-wrapper div.plan.even div.action {
|
527 |
+
background: #e7e7e7; }
|
528 |
+
|
529 |
+
div.compare-wrapper div.action .btn {
|
530 |
+
width: auto; } }
|
531 |
+
@media only screen and (min-width: 150px) and (max-width: 1023px) {
|
532 |
+
div#plans {
|
533 |
+
padding-left: 30px;
|
534 |
+
padding-right: 30px; }
|
535 |
+
|
536 |
+
div.plans-wrapper div.plan {
|
537 |
+
width: 50%; }
|
538 |
+
|
539 |
+
div#compare {
|
540 |
+
padding-left: 30px;
|
541 |
+
padding-right: 30px; } }
|
542 |
+
@media only screen and (min-width: 150px) and (max-width: 767px) {
|
543 |
+
div#plans {
|
544 |
+
padding-left: 20px;
|
545 |
+
padding-right: 20px; }
|
546 |
+
|
547 |
+
div.plans-wrapper {
|
548 |
+
background: #fff;
|
549 |
+
-webkit-box-shadow: none;
|
550 |
+
-moz-box-shadow: none;
|
551 |
+
box-shadow: none; }
|
552 |
+
|
553 |
+
div.plans-wrapper div.plan {
|
554 |
+
width: 100%;
|
555 |
+
margin: 0 0 15px 0;
|
556 |
+
-webkit-box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
|
557 |
+
-moz-box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
|
558 |
+
box-shadow: 0 0 30px rgba(34, 44, 55, 0.15); }
|
559 |
+
|
560 |
+
div.plans-wrapper div.plan div.icon {
|
561 |
+
display: none; }
|
562 |
+
|
563 |
+
div.plans-wrapper div.plan p.text {
|
564 |
+
height: auto !important; }
|
565 |
+
|
566 |
+
div#compare {
|
567 |
+
padding-left: 20px;
|
568 |
+
padding-right: 20px; }
|
569 |
+
|
570 |
+
div.compare-wrapper div.plan ul li {
|
571 |
+
width: 100%; }
|
572 |
+
|
573 |
+
div.compare-wrapper div.plan ul li:nth-child(2),
|
574 |
+
div.compare-wrapper div.plan ul li:nth-child(3),
|
575 |
+
div.compare-wrapper div.plan ul li:nth-child(6),
|
576 |
+
div.compare-wrapper div.plan ul li:nth-child(7),
|
577 |
+
div.compare-wrapper div.plan ul li:nth-child(10),
|
578 |
+
div.compare-wrapper div.plan ul li:nth-child(11),
|
579 |
+
div.compare-wrapper div.plan ul li:nth-child(14),
|
580 |
+
div.compare-wrapper div.plan ul li:nth-child(15),
|
581 |
+
div.compare-wrapper div.plan ul li:nth-child(18),
|
582 |
+
div.compare-wrapper div.plan ul li:nth-child(19),
|
583 |
+
div.compare-wrapper div.plan ul li:nth-child(22),
|
584 |
+
div.compare-wrapper div.plan ul li:nth-child(23) {
|
585 |
+
background: transparent; }
|
586 |
+
|
587 |
+
div.compare-wrapper div.plan ul li:nth-child(even) {
|
588 |
+
background: rgba(0, 0, 0, 0.02) !important; }
|
589 |
+
|
590 |
+
div.faq-wrapper div.g12 {
|
591 |
+
padding-bottom: 15px !important; }
|
592 |
+
|
593 |
+
div.faq-wrapper div.g4 {
|
594 |
+
width: 100%;
|
595 |
+
padding-bottom: 0;
|
596 |
+
padding-top: 0; } }
|
597 |
+
@media only screen and (min-width: 150px) and (max-width: 479px) {
|
598 |
+
div#plans {
|
599 |
+
padding-left: 15px;
|
600 |
+
padding-right: 15px; }
|
601 |
+
|
602 |
+
div#compare {
|
603 |
+
padding-left: 15px;
|
604 |
+
padding-right: 15px; } }
|
605 |
+
/* ------- END: Pricing Plan --------- */
|
606 |
+
|
607 |
+
/*# sourceMappingURL=premium-upgrade.css.map */
|
admin/assets/css/premium-upgrade.css.map
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"version": 3,
|
3 |
+
"mappings": ";AAEA,YAAa;EACX,UAAU,EAAE,MAAM;EAClB,OAAO,EAAE,KAAK;EACd,SAAS,EAAE,CAAC;EACZ,OAAO,EAAE,GAAG;EACZ,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,CAAC;;AAGX,MAAO;EACL,OAAO,EAAE,YAAY;EACrB,KAAK,EAAE,IAAI;;AAGb,aAAc;EACZ,MAAM,EAAE,EAAE;;AAGZ,MAAO;EACL,OAAO,EAAE,KAAK;;AAGhB,KAAM;EACJ,OAAO,EAAE,eAAe;;AAG1B,UAAW;EACT,OAAO,EAAE,YAAY;EACrB,OAAO,EAAE,WAAW;EACpB,OAAO,EAAE,IAAI;EACb,iBAAiB,EAAE,IAAI;EACvB,aAAa,EAAE,IAAI;EACnB,SAAS,EAAE,IAAI;;AAGjB,SAAU;EACR,OAAO,EAAE,YAAY;EACrB,OAAO,EAAE,WAAW;EACpB,OAAO,EAAE,IAAI;;AAGf,IAAK;EACH,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;EACX,QAAQ,EAAE,QAAQ;EAClB,QAAQ,EAAE,MAAM;EAChB,OAAO,EAAE,SAAS;EAClB,SAAS,EAAE,QAAQ;EACnB,WAAW,EAAE,GAAG;EAChB,UAAU,EAAE,MAAM;EAClB,MAAM,EAAE,OAAO;EACf,eAAe,EAAE,IAAI;EACrB,MAAM,EAAE,CAAC;EACT,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,CAAC;EACV,kBAAkB,EAAE,CAAC;EACrB,qBAAqB,EAAE,GAAG;EAC1B,kBAAkB,EAAE,GAAG;EACvB,aAAa,EAAE,GAAG;;AAGpB;;;WAGY;EACV,KAAK,EAAE,IAAI;EACX,eAAe,EAAE,IAAI;;AAGvB,IAAK;EACH,gBAAgB,EAAE,OAAO;;AAG3B,UAAW;EACT,gBAAgB,EAAE,OAAO;;AAG3B;WACY;EACV,gBAAgB,EAAE,OAAO;;AAG3B,GAAI;EACF,MAAM,EAAE,YAAY;;AAGtB,IAAK;EACH,aAAa,EAAE,YAAY;;AAG7B,IAAK;EACH,aAAa,EAAE,cAAc;;AAG/B,IAAK;EACH,aAAa,EAAE,cAAc;;AAG/B,KAAM;EACJ,aAAa,EAAE,eAAe;;AAGhC,KAAM;EACJ,aAAa,EAAE,eAAe;;AAGhC,KAAM;EACJ,aAAa,EAAE,eAAe;;AAGhC,KAAM;EACJ,aAAa,EAAE,eAAe;;AAGhC,KAAM;EACJ,KAAK,EAAE,eAAe;;AAExB,MAAO;EACL,KAAK,EAAE,kBAAkB;;AAE3B,KAAM;EACJ,KAAK,EAAE,OAAO;;AAEhB,KAAM;EACJ,KAAK,EAAE,eAAe;;AAGxB,MAAO;EACL,gBAAgB,EAAE,OAAO;;AAG3B,MAAO;EACL,gBAAgB,EAAE,OAAO;;AAG3B,gBAAiB;EACf,SAAS,EAAE,MAAM;EACjB,MAAM,EAAE,MAAM;;AAEhB,oCAAqC;EACnC,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,GAAG;;AAElB,wBAAyB;EACvB,OAAO,EAAE,IAAI;;AAGf,oBAAqB;EACnB,eAAe,EAAE,IAAI;EACrB,MAAM,EAAE,UAAU;;AAGpB,SAAU;EACR,UAAU,EAAE,IAAI;;AAGlB,iBAAkB;EAChB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,MAAM;EACd,QAAQ,EAAE,QAAQ;EAClB,UAAU,EAAE,OAAO;EACnB,OAAO,EAAE,CAAC;EACV,kBAAkB,EAAE,+BAA+B;EACnD,eAAe,EAAE,+BAA+B;EAChD,UAAU,EAAE,+BAA+B;;AAG7C,yCAA0C;EACxC,OAAO,EAAE,gBAAgB;EACzB,QAAQ,EAAE,QAAQ;;AAGpB,gCAAiC;EAC/B,KAAK,EAAE,KAAK;EACZ,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,MAAM;EACf,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,CAAC;;AAGZ,2BAA4B;EAC1B,KAAK,EAAE,IAAI;EACX,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,YAAY;EACpB,QAAQ,EAAE,QAAQ;;AAGpB,qCAAqC;EACnC,MAAM,EAAE,WAAW;EACnB,QAAQ,EAAE,QAAQ;;AAGpB,0BAA2B;EACzB,KAAK,EAAE,GAAG;EACV,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;EAClB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,CAAC;EACV,kBAAkB,EAAE,OAAO;EAC3B,eAAe,EAAE,OAAO;EACxB,UAAU,EAAE,OAAO;;AAGrB,6BAA8B;EAC5B,KAAK,EAAE,IAAI;;AAGb,qCAAsC;EACpC,YAAY,EAAE,CAAC;;AAGjB,0BAA2B;EACzB,UAAU,EAAE,OAAO;EACnB,kBAAkB,EAAE,QAAQ;EAC5B,eAAe,EAAE,QAAQ;EACzB,UAAU,EAAE,QAAQ;;AAGtB;2BAC4B;EAC1B,UAAU,EAAE,OAAO;;AAGrB,mCAAoC;EAClC,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,mBAAmB;;AAG9B,oCAAqC;EACnC,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;;AAGd,4BAA6B;EAC3B,SAAS,EAAE,QAAQ;EACnB,KAAK,EAAE,IAAI;EACX,mBAAmB,EAAE,MAAM;;AAG7B,iCAAkC;EAChC,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,YAAY;EACrB,SAAS,EAAE,OAAO;EAClB,MAAM,EAAE,UAAU;;AAGpB,qCAAsC;EACpC,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,IAAI;EACZ,IAAI,EAAE,IAAI;EACV,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;;AAGpB,0CAA2C;EACzC,KAAK,EAAE,IAAI;EACX,cAAc,EAAE,GAAG;;AAGrB,mBAAoB;EAClB,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,MAAM;EACd,UAAU,EAAE,OAAO;EACnB,QAAQ,EAAE,QAAQ;;AAGpB,gCAAiC;EAC/B,KAAK,EAAE,KAAK;EACZ,KAAK,EAAE,IAAI;;AAGb,6BAA8B;EAC5B,KAAK,EAAE,IAAI;EACX,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,YAAY;EACpB,QAAQ,EAAE,QAAQ;;AAGpB,uCAAuC;EACrC,MAAM,EAAE,WAAW;EACnB,QAAQ,EAAE,QAAQ;;AAGpB,4BAA6B;EAC3B,KAAK,EAAE,GAAG;EACV,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,UAAU;EACnB,UAAU,EAAE,MAAM;EAClB,UAAU,EAAE,OAAO;;AAGrB,iCAAkC;EAChC,UAAU,EAAE,OAAO;;AAGrB,+BAAgC;EAC9B,OAAO,EAAE,IAAI;EACb,UAAU,EAAE,IAAI;EAChB,QAAQ,EAAE,QAAQ;EAClB,aAAa,EAAE,iBAAiB;EAChC,GAAG,EAAE,IAAI;EACT,IAAI,EAAE,IAAI;EACV,KAAK,EAAE,IAAI;EACX,WAAW,EAAE,GAAG;EAChB,OAAO,EAAE,GAAG;EACZ,UAAU,EAAE,IAAI;EAChB,kBAAkB,EAAE,gCAAgC;EACpD,eAAe,EAAE,gCAAgC;EACjD,UAAU,EAAE,gCAAgC;;AAG9C,sCAAuC;EACrC,OAAO,EAAE,EAAE;EACX,OAAO,EAAE,KAAK;EACd,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,KAAK;EACV,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,EAAE;EACX,MAAM,EAAE,sBAAsB;EAC9B,mBAAmB,EAAE,IAAI;;AAG3B,iCAAkC;EAChC,SAAS,EAAE,GAAG;EACd,MAAM,EAAE,CAAC;;AAGX,8BAA+B;EAC7B,OAAO,EAAE,IAAI;EACb,UAAU,EAAE,OAAO;;AAGrB,4CAA6C;EAC3C,UAAU,EAAE,OAAO;;AAGrB,mCAAoC;EAClC,KAAK,EAAE,IAAI;EACX,cAAc,EAAE,GAAG;;AAGrB,mCAAoC;EAClC,MAAM,EAAE,CAAC;EACT,OAAO,EAAE,IAAI;EACb,UAAU,EAAE,OAAO;EACnB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,CAAC;;AAGZ,mCAAoC;EAClC,UAAU,EAAE,eAAe;EAC3B,MAAM,EAAE,YAAY;EACpB,OAAO,EAAE,YAAY;EACrB,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,CAAC;;AAGZ,sCAAuC;EACrC,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,iBAAiB;EAC1B,MAAM,EAAE,YAAY;EACpB,UAAU,EAAE,IAAI;EAChB,SAAS,EAAE,QAAQ;EACnB,WAAW,EAAE,GAAG;EAChB,QAAQ,EAAE,QAAQ;EAClB,UAAU,EAAE,OAAO;;AAGrB,+CAAgD;EAC9C,cAAc,EAAE,MAAM;EACtB,OAAO,EAAE,UAAU;EACnB,MAAM,EAAE,IAAI;;AAGd,qDAAsD;EACpD,UAAU,EAAE,OAAO;;AAGrB,6CAA8C;EAC5C,OAAO,EAAE,IAAI;;AAGf,iEAAkE;EAChE,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,KAAK;EACd,QAAQ,EAAE,QAAQ;EAClB,GAAG,EAAE,GAAG;EACR,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,OAAO;EACf,UAAU,EAAE,MAAM;EAClB,KAAK,EAAE,OAAO;EACd,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,CAAC;;AAGhB,wEAAyE;EACvE,SAAS,EAAE,GAAG;;AAGhB,+BAAgC;EAC9B,KAAK,EAAE,OAAO;EACd,MAAM,EAAE,UAAU;;AAGpB,+BAAgC;EAC9B,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,YAAY;EACpB,OAAO,EAAE,YAAY;EACrB,UAAU,EAAE,eAAe;;AAG7B,kCAAmC;EACjC,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,IAAI;EACZ,WAAW,EAAE,IAAI;EACjB,OAAO,EAAE,oBAAoB;EAC7B,MAAM,EAAE,YAAY;EACpB,UAAU,EAAE,MAAM;EAClB,SAAS,EAAE,QAAQ;;AAGrB,iDAAkD;EAChD,UAAU,EAAE,mBAAmB;;AAGjC,yCAA0C;EACxC,OAAO,EAAE,IAAI;;AAGf,6DAA8D;EAC5D,SAAS,EAAE,IAAI;EACf,cAAc,EAAE,GAAG;EACnB,WAAW,EAAE,CAAC;EACd,KAAK,EAAE,OAAO;EACd,MAAM,EAAE,SAAS;EACjB,MAAM,EAAE,OAAO;;AAGjB,2CAA4C;EAC1C,WAAW,EAAE,GAAG;;AAGlB,qDAAsD;EACpD,KAAK,EAAE,GAAG;EACV,MAAM,EAAE,WAAW;;AAErB,uDAAwD;EACtD,KAAK,EAAE,OAAO;;AAEhB,qDAAsD;EACpD,KAAK,EAAE,OAAO;;AAGhB,qDAAsD;EACpD,KAAK,EAAE,OAAO;;AAGhB,qDAAsD;EACpD,KAAK,EAAE,OAAO;;AAGhB,qDAAsD;EACpD,KAAK,EAAE,OAAO;;AAGhB,8BAA+B;EAC7B,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,CAAC;EACd,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;;AAGd,+CAAgD;EAC9C,YAAY,EAAE,OAAO;;AAGvB,+CAAgD;EAC9C,YAAY,EAAE,OAAO;;AAGvB,+CAAgD;EAC9C,YAAY,EAAE,OAAO;;AAGvB,+CAAgD;EAC9C,YAAY,EAAE,OAAO;;AAGvB,qCAAsC;EACpC,OAAO,EAAE,IAAI;;AAIf,iEAAgE;EAC9D,SAAU;IACR,aAAa,EAAE,IAAI;;EAErB,gCAAiC;IAC/B,OAAO,EAAE,IAAI;;EAEf,2BAA4B;IAC1B,MAAM,EAAE,CAAC;;EAEX,qCAAqC;IACnC,MAAM,EAAE,CAAC;;EAEX,mBAAoB;IAClB,UAAU,EAAE,WAAW;;EAEzB,gCAAiC;IAC/B,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,UAAU;;EAEpB,mCAAoC;IAClC,OAAO,EAAE,CAAC;IACV,UAAU,EAAE,WAAW;IACvB,SAAS,EAAE,GAAG;IACd,WAAW,EAAE,GAAG;IAChB,WAAW,EAAE,GAAG;IAChB,KAAK,EAAE,OAAO;;EAEhB,mCAAoC;IAClC,OAAO,EAAE,IAAI;;EAEf,6BAA8B;IAC5B,MAAM,EAAE,CAAC;;EAEX,uCAAuC;IACrC,MAAM,EAAE,CAAC;;EAEX,+BAAgC;IAC9B,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,CAAC;IACT,OAAO,EAAE,SAAS;IAClB,UAAU,EAAE,OAAO;;EAErB,4BAA6B;IAC3B,KAAK,EAAE,IAAI;IACX,OAAO,EAAE,CAAC;IACV,MAAM,EAAE,UAAU;IAClB,UAAU,EAAE,IAAI;IAChB,UAAU,EAAE,kBAAkB;;EAEhC,+BAAgC;IAC9B,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,CAAC;IACT,OAAO,EAAE,YAAY;IACrB,OAAO,EAAE,WAAW;IACpB,OAAO,EAAE,IAAI;IACb,iBAAiB,EAAE,IAAI;IACvB,aAAa,EAAE,IAAI;IACnB,SAAS,EAAE,IAAI;;EAEjB,kCAAmC;IACjC,KAAK,EAAE,GAAG;IACV,MAAM,EAAE,IAAI;IACZ,KAAK,EAAE,IAAI;IACX,WAAW,EAAE,IAAI;IACjB,OAAO,EAAE,8BAA8B;IACvC,UAAU,EAAE,IAAI;IAChB,OAAO,EAAE,YAAY;IACrB,OAAO,EAAE,WAAW;IACpB,OAAO,EAAE,IAAI;;EAEf,iDAAkD;IAChD,UAAU,EAAE,WAAkB;;EAEhC;;;;;;;;;;;kDAWiD;IAC/C,UAAU,EAAE,mBAAmB;;EAEjC,+CAAgD;IAC9C,OAAO,EAAE,IAAI;;EAEf,qCAAsC;IACpC,OAAO,EAAE,YAAY;;EAEvB;yDACwD;IACtD,QAAQ,EAAE,QAAQ;IAClB,GAAG,EAAE,IAAI;IACT,IAAI,EAAE,GAAG;;EAEX,uDAAwD;IACtD,GAAG,EAAE,IAAI;;EAEX,iDAAkD;IAChD,OAAO,EAAE,YAAY;;EAEvB,8BAA+B;IAC7B,OAAO,EAAE,IAAI;IACb,UAAU,EAAE,OAAO;;EAErB,4CAA6C;IAC3C,UAAU,EAAE,OAAO;;EAErB,mCAAoC;IAClC,KAAK,EAAE,IAAI;AAIf,iEAAgE;EAE9D,SAAU;IACR,YAAY,EAAE,IAAI;IAClB,aAAa,EAAE,IAAI;;EAErB,0BAA2B;IACzB,KAAK,EAAE,GAAG;;EAEZ,WAAY;IACV,YAAY,EAAE,IAAI;IAClB,aAAa,EAAE,IAAI;AAIvB,gEAA+D;EAC7D,SAAU;IACR,YAAY,EAAE,IAAI;IAClB,aAAa,EAAE,IAAI;;EAErB,iBAAkB;IAChB,UAAU,EAAE,IAAI;IAChB,kBAAkB,EAAE,IAAI;IACxB,eAAe,EAAE,IAAI;IACrB,UAAU,EAAE,IAAI;;EAElB,0BAA2B;IACzB,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,UAAU;IAClB,kBAAkB,EAAE,+BAA+B;IACnD,eAAe,EAAE,+BAA+B;IAChD,UAAU,EAAE,+BAA+B;;EAE7C,mCAAoC;IAClC,OAAO,EAAE,IAAI;;EAEf,iCAAkC;IAChC,MAAM,EAAE,eAAe;;EAEzB,WAAY;IACV,YAAY,EAAE,IAAI;IAClB,aAAa,EAAE,IAAI;;EAErB,kCAAmC;IACjC,KAAK,EAAE,IAAI;;EAEb;;;;;;;;;;;kDAWiD;IAC/C,UAAU,EAAE,WAAkB;;EAEhC,kDAAmD;IACjD,UAAU,EAAE,8BAA8B;;EAE5C,uBAAwB;IACtB,cAAc,EAAE,eAAe;;EAEjC,sBAAuB;IACrB,KAAK,EAAE,IAAI;IACX,cAAc,EAAE,CAAC;IACjB,WAAW,EAAE,CAAC;AAIlB,gEAA+D;EAC7D,SAAU;IACR,YAAY,EAAE,IAAI;IAClB,aAAa,EAAE,IAAI;;EAErB,WAAY;IACV,YAAY,EAAE,IAAI;IAClB,aAAa,EAAE,IAAI",
|
4 |
+
"sources": ["premium-upgrade.scss"],
|
5 |
+
"names": [],
|
6 |
+
"file": "premium-upgrade.css"
|
7 |
+
}
|
admin/assets/css/premium-upgrade.scss
ADDED
@@ -0,0 +1,699 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* -------------------- Pricing Plan ------------ */
|
2 |
+
|
3 |
+
.clear:after {
|
4 |
+
visibility: hidden;
|
5 |
+
display: block;
|
6 |
+
font-size: 0;
|
7 |
+
content: " ";
|
8 |
+
clear: both;
|
9 |
+
height: 0;
|
10 |
+
}
|
11 |
+
|
12 |
+
.clear {
|
13 |
+
display: inline-table;
|
14 |
+
clear: both;
|
15 |
+
}
|
16 |
+
|
17 |
+
* html .clear {
|
18 |
+
height: 1%;
|
19 |
+
}
|
20 |
+
|
21 |
+
.clear {
|
22 |
+
display: block;
|
23 |
+
}
|
24 |
+
|
25 |
+
.hide {
|
26 |
+
display: none !important;
|
27 |
+
}
|
28 |
+
|
29 |
+
.flex-wrap {
|
30 |
+
display: -webkit-flex;
|
31 |
+
display: -ms-flexbox;
|
32 |
+
display: flex;
|
33 |
+
-webkit-flex-wrap: wrap;
|
34 |
+
-ms-flex-wrap: wrap;
|
35 |
+
flex-wrap: wrap;
|
36 |
+
}
|
37 |
+
|
38 |
+
.flex-col {
|
39 |
+
display: -webkit-flex;
|
40 |
+
display: -ms-flexbox;
|
41 |
+
display: flex;
|
42 |
+
}
|
43 |
+
|
44 |
+
.btn {
|
45 |
+
line-height: 20px;
|
46 |
+
display: block;
|
47 |
+
float: left;
|
48 |
+
position: relative;
|
49 |
+
overflow: hidden;
|
50 |
+
padding: 13px 20px;
|
51 |
+
font-size: 0.9375em;
|
52 |
+
font-weight: 400;
|
53 |
+
text-align: center;
|
54 |
+
cursor: pointer;
|
55 |
+
text-decoration: none;
|
56 |
+
margin: 0;
|
57 |
+
border: 0;
|
58 |
+
outline: 0;
|
59 |
+
border-image-width: 0;
|
60 |
+
-webkit-border-radius: 3px;
|
61 |
+
-moz-border-radius: 3px;
|
62 |
+
border-radius: 3px;
|
63 |
+
}
|
64 |
+
|
65 |
+
.btn,
|
66 |
+
.btn:hover,
|
67 |
+
.btn:focus,
|
68 |
+
.btn:active {
|
69 |
+
color: #fff;
|
70 |
+
text-decoration: none;
|
71 |
+
}
|
72 |
+
|
73 |
+
.btn {
|
74 |
+
background-color: #00bcd4;
|
75 |
+
}
|
76 |
+
|
77 |
+
.btn:hover {
|
78 |
+
background-color: #26c6da;
|
79 |
+
}
|
80 |
+
|
81 |
+
.btn:focus,
|
82 |
+
.btn:active {
|
83 |
+
background-color: #05a7bd;
|
84 |
+
}
|
85 |
+
|
86 |
+
.m0 {
|
87 |
+
margin: 0 !important;
|
88 |
+
}
|
89 |
+
|
90 |
+
.mb0 {
|
91 |
+
margin-bottom: 0 !important;
|
92 |
+
}
|
93 |
+
|
94 |
+
.mb1 {
|
95 |
+
margin-bottom: 1px !important;
|
96 |
+
}
|
97 |
+
|
98 |
+
.mb5 {
|
99 |
+
margin-bottom: 5px !important;
|
100 |
+
}
|
101 |
+
|
102 |
+
.mb10 {
|
103 |
+
margin-bottom: 10px !important;
|
104 |
+
}
|
105 |
+
|
106 |
+
.mb15 {
|
107 |
+
margin-bottom: 15px !important;
|
108 |
+
}
|
109 |
+
|
110 |
+
.mb20 {
|
111 |
+
margin-bottom: 20px !important;
|
112 |
+
}
|
113 |
+
|
114 |
+
.mb30 {
|
115 |
+
margin-bottom: 30px !important;
|
116 |
+
}
|
117 |
+
|
118 |
+
.c-wh {
|
119 |
+
color: #fff !important;
|
120 |
+
}
|
121 |
+
.c-red {
|
122 |
+
color: #da4f49 !important;
|
123 |
+
}
|
124 |
+
.c-mg {
|
125 |
+
color: #9e9e9e;
|
126 |
+
}
|
127 |
+
.w100 {
|
128 |
+
width: 100% !important;
|
129 |
+
}
|
130 |
+
|
131 |
+
.bg-cy {
|
132 |
+
background-color: #00bcd4;
|
133 |
+
}
|
134 |
+
|
135 |
+
.bg-gr {
|
136 |
+
background-color: #8ac249;
|
137 |
+
}
|
138 |
+
|
139 |
+
.pricing-content {
|
140 |
+
max-width: 1000px;
|
141 |
+
margin: 0 auto;
|
142 |
+
}
|
143 |
+
.pricing-content, .pricing-content p {
|
144 |
+
font-size: 18px;
|
145 |
+
line-height: 1.6;
|
146 |
+
}
|
147 |
+
.pricing-content p:empty {
|
148 |
+
display: none;
|
149 |
+
}
|
150 |
+
|
151 |
+
div.plans-wrapper ul {
|
152 |
+
list-style-type: none;
|
153 |
+
margin: 0 0 15px 0;
|
154 |
+
}
|
155 |
+
|
156 |
+
div#plans {
|
157 |
+
margin-top: 50px;
|
158 |
+
}
|
159 |
+
|
160 |
+
div.plans-wrapper {
|
161 |
+
width: 100%;
|
162 |
+
margin: 0 auto;
|
163 |
+
position: relative;
|
164 |
+
background: #f5f8f9;
|
165 |
+
z-index: 4;
|
166 |
+
-webkit-box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
|
167 |
+
-moz-box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
|
168 |
+
box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
|
169 |
+
}
|
170 |
+
|
171 |
+
div.plans-wrapper div.plan-intro div.w100 {
|
172 |
+
padding: 20px 30px 0 30px;
|
173 |
+
position: relative;
|
174 |
+
}
|
175 |
+
|
176 |
+
div.plans-wrapper div.plan-intro {
|
177 |
+
width: 340px;
|
178 |
+
float: left;
|
179 |
+
padding: 30px 0;
|
180 |
+
position: relative;
|
181 |
+
z-index: 4;
|
182 |
+
}
|
183 |
+
|
184 |
+
div.plans-wrapper div.plans {
|
185 |
+
width: 100%;
|
186 |
+
float: left;
|
187 |
+
margin: 0 0 0 -340px;
|
188 |
+
position: relative;
|
189 |
+
}
|
190 |
+
|
191 |
+
div.plans-wrapper div.content-wrapper{
|
192 |
+
margin: 0 0 0 340px;
|
193 |
+
position: relative;
|
194 |
+
}
|
195 |
+
|
196 |
+
div.plans-wrapper div.plan {
|
197 |
+
width: 50%;
|
198 |
+
float: left;
|
199 |
+
text-align: center;
|
200 |
+
position: relative;
|
201 |
+
z-index: 2;
|
202 |
+
-webkit-transition: all .5s;
|
203 |
+
-moz-transition: all .5s;
|
204 |
+
transition: all .5s;
|
205 |
+
}
|
206 |
+
|
207 |
+
div.plans-wrapper div.plan h3 {
|
208 |
+
color: #fff;
|
209 |
+
}
|
210 |
+
|
211 |
+
div.plans-wrapper div.plan:last-child {
|
212 |
+
border-right: 0;
|
213 |
+
}
|
214 |
+
|
215 |
+
div.plans-wrapper div.plan {
|
216 |
+
background: #222c37;
|
217 |
+
-webkit-transition: all .25s;
|
218 |
+
-moz-transition: all .25s;
|
219 |
+
transition: all .25s;
|
220 |
+
}
|
221 |
+
|
222 |
+
div.plans-wrapper div.plan2,
|
223 |
+
div.plans-wrapper div.plan4 {
|
224 |
+
background: #2d3741;
|
225 |
+
}
|
226 |
+
|
227 |
+
div.plans-wrapper div.plan div.w100 {
|
228 |
+
position: relative;
|
229 |
+
padding: 40px 20px 80px 20px;
|
230 |
+
}
|
231 |
+
|
232 |
+
div.plans-wrapper div.plan-intro img {
|
233 |
+
width: 100%;
|
234 |
+
height: auto;
|
235 |
+
}
|
236 |
+
|
237 |
+
div.plans-wrapper div.plan p {
|
238 |
+
font-size: 1.0625em;
|
239 |
+
color: #ccc;
|
240 |
+
backface-visibility: hidden;
|
241 |
+
}
|
242 |
+
|
243 |
+
div.plans-wrapper div.plan .price {
|
244 |
+
position: relative;
|
245 |
+
display: inline-block;
|
246 |
+
font-size: 1.875em;
|
247 |
+
margin: 0 0 30px 0;
|
248 |
+
}
|
249 |
+
|
250 |
+
div.plans-wrapper div.plan div.action {
|
251 |
+
position: absolute;
|
252 |
+
bottom: 30px;
|
253 |
+
left: 30px;
|
254 |
+
right: 30px;
|
255 |
+
text-align: center;
|
256 |
+
}
|
257 |
+
|
258 |
+
div.plans-wrapper div.plan div.action .btn {
|
259 |
+
width: 100%;
|
260 |
+
vertical-align: top;
|
261 |
+
}
|
262 |
+
|
263 |
+
div.compare-wrapper {
|
264 |
+
width: 100%;
|
265 |
+
margin: 0 auto;
|
266 |
+
background: #ececec;
|
267 |
+
position: relative;
|
268 |
+
}
|
269 |
+
|
270 |
+
div.compare-wrapper div.benefits {
|
271 |
+
width: 340px;
|
272 |
+
float: left;
|
273 |
+
}
|
274 |
+
|
275 |
+
div.compare-wrapper div.plans {
|
276 |
+
width: 100%;
|
277 |
+
float: left;
|
278 |
+
margin: 0 0 0 -340px;
|
279 |
+
position: relative;
|
280 |
+
}
|
281 |
+
|
282 |
+
div.compare-wrapper div.content-wrapper{
|
283 |
+
margin: 0 0 0 340px;
|
284 |
+
position: relative;
|
285 |
+
}
|
286 |
+
|
287 |
+
div.compare-wrapper div.plan {
|
288 |
+
width: 50%;
|
289 |
+
float: left;
|
290 |
+
padding: 30px 0 0 0;
|
291 |
+
text-align: center;
|
292 |
+
background: #f5f8f9;
|
293 |
+
}
|
294 |
+
|
295 |
+
div.compare-wrapper div.plan.even {
|
296 |
+
background: #ececec;
|
297 |
+
}
|
298 |
+
|
299 |
+
div.compare-wrapper div.tooltip {
|
300 |
+
padding: 20px;
|
301 |
+
background: #fff;
|
302 |
+
position: absolute;
|
303 |
+
border-bottom: #37BF91 5px solid;
|
304 |
+
top: 48px;
|
305 |
+
left: 10px;
|
306 |
+
right: 10px;
|
307 |
+
font-weight: 300;
|
308 |
+
z-index: 999;
|
309 |
+
text-align: left;
|
310 |
+
-webkit-box-shadow: 0 1px 20px rgba(34, 44, 55, 0.3);
|
311 |
+
-moz-box-shadow: 0 1px 20px rgba(34, 44, 55, 0.3);
|
312 |
+
box-shadow: 0 1px 20px rgba(34, 44, 55, 0.3);
|
313 |
+
}
|
314 |
+
|
315 |
+
div.compare-wrapper div.tooltip:before {
|
316 |
+
content: '';
|
317 |
+
display: block;
|
318 |
+
position: absolute;
|
319 |
+
top: -19px;
|
320 |
+
right: 21px;
|
321 |
+
z-index: 18;
|
322 |
+
border: transparent 10px solid;
|
323 |
+
border-bottom-color: #fff;
|
324 |
+
}
|
325 |
+
|
326 |
+
div.compare-wrapper div.tooltip p {
|
327 |
+
font-size: 1em;
|
328 |
+
margin: 0;
|
329 |
+
}
|
330 |
+
|
331 |
+
div.compare-wrapper div.action {
|
332 |
+
padding: 30px;
|
333 |
+
background: #f0f3f4;
|
334 |
+
}
|
335 |
+
|
336 |
+
div.compare-wrapper div.plan.even div.action {
|
337 |
+
background: #e7e7e7;
|
338 |
+
}
|
339 |
+
|
340 |
+
div.compare-wrapper div.action .btn {
|
341 |
+
width: 100%;
|
342 |
+
vertical-align: top;
|
343 |
+
}
|
344 |
+
|
345 |
+
div.compare-wrapper div.benefits h4 {
|
346 |
+
margin: 0;
|
347 |
+
padding: 30px;
|
348 |
+
background: #f5f8f9;
|
349 |
+
position: relative;
|
350 |
+
z-index: 3;
|
351 |
+
}
|
352 |
+
|
353 |
+
div.compare-wrapper div.benefits ul {
|
354 |
+
list-style: none !important;
|
355 |
+
margin: 0 !important;
|
356 |
+
padding: 0 !important;
|
357 |
+
position: relative;
|
358 |
+
z-index: 4;
|
359 |
+
}
|
360 |
+
|
361 |
+
div.compare-wrapper div.benefits ul li {
|
362 |
+
height: 50px;
|
363 |
+
padding: 0 30px !important;
|
364 |
+
margin: 0 !important;
|
365 |
+
text-align: left;
|
366 |
+
font-size: 0.9375em;
|
367 |
+
font-weight: 400;
|
368 |
+
position: relative;
|
369 |
+
background: #f5f8f9;
|
370 |
+
}
|
371 |
+
|
372 |
+
div.compare-wrapper div.benefits ul li div.text {
|
373 |
+
vertical-align: middle;
|
374 |
+
display: table-cell;
|
375 |
+
height: 50px;
|
376 |
+
}
|
377 |
+
|
378 |
+
div.compare-wrapper div.benefits ul li:nth-child(odd) {
|
379 |
+
background: #ececec;
|
380 |
+
}
|
381 |
+
|
382 |
+
div.compare-wrapper div.benefits ul li:before {
|
383 |
+
display: none;
|
384 |
+
}
|
385 |
+
|
386 |
+
div.compare-wrapper div.benefits ul li span.dashicons-editor-help {
|
387 |
+
line-height: 22px;
|
388 |
+
display: block;
|
389 |
+
position: absolute;
|
390 |
+
top: 5px;
|
391 |
+
right: 30px;
|
392 |
+
cursor: pointer;
|
393 |
+
text-align: center;
|
394 |
+
color: #9e9e9e;
|
395 |
+
font-size: 32px;
|
396 |
+
line-height: 1;
|
397 |
+
}
|
398 |
+
|
399 |
+
div.compare-wrapper div.benefits ul li span.dashicons-editor-help:before {
|
400 |
+
font-size: 85%;
|
401 |
+
}
|
402 |
+
|
403 |
+
div.compare-wrapper div.plan h4 {
|
404 |
+
color: #222c37;
|
405 |
+
margin: 0 0 30px 0;
|
406 |
+
}
|
407 |
+
|
408 |
+
div.compare-wrapper div.plan ul {
|
409 |
+
width: 100%;
|
410 |
+
margin: 0 !important;
|
411 |
+
padding: 0 !important;
|
412 |
+
list-style: none !important;
|
413 |
+
}
|
414 |
+
|
415 |
+
div.compare-wrapper div.plan ul li {
|
416 |
+
position: relative;
|
417 |
+
height: 50px;
|
418 |
+
line-height: 20px;
|
419 |
+
padding: 15px 20px !important;
|
420 |
+
margin: 0 !important;
|
421 |
+
text-align: center;
|
422 |
+
font-size: 0.9375em;
|
423 |
+
}
|
424 |
+
|
425 |
+
div.compare-wrapper div.plan ul li:nth-child(odd) {
|
426 |
+
background: rgba(0, 0, 0, 0.02);
|
427 |
+
}
|
428 |
+
|
429 |
+
div.compare-wrapper div.plan ul li:before {
|
430 |
+
display: none;
|
431 |
+
}
|
432 |
+
|
433 |
+
div.compare-wrapper div.plan ul li span.dashicons-editor-help {
|
434 |
+
font-size: 24px;
|
435 |
+
vertical-align: top;
|
436 |
+
line-height: 1;
|
437 |
+
color: #9e9e9e;
|
438 |
+
margin: 0 0 0 2px;
|
439 |
+
cursor: pointer;
|
440 |
+
}
|
441 |
+
|
442 |
+
div.compare-wrapper div.plan ul li span.pay {
|
443 |
+
font-weight: 700;
|
444 |
+
}
|
445 |
+
|
446 |
+
div.compare-wrapper div.plan ul li div.tooltip:before {
|
447 |
+
right: 50%;
|
448 |
+
margin: 0 -10px 0 0;
|
449 |
+
}
|
450 |
+
div.compare-wrapper div.plan ul li div.dashicons-no-alt {
|
451 |
+
color: #da4f49;
|
452 |
+
}
|
453 |
+
div.compare-wrapper div.plan1 ul li div.dashicons-yes {
|
454 |
+
color: #8ac249;
|
455 |
+
}
|
456 |
+
|
457 |
+
div.compare-wrapper div.plan2 ul li div.dashicons-yes {
|
458 |
+
color: #00bcd4;
|
459 |
+
}
|
460 |
+
|
461 |
+
div.compare-wrapper div.plan3 ul li div.dashicons-yes {
|
462 |
+
color: #37BF91;
|
463 |
+
}
|
464 |
+
|
465 |
+
div.compare-wrapper div.plan4 ul li div.dashicons-yes {
|
466 |
+
color: #009688;
|
467 |
+
}
|
468 |
+
|
469 |
+
div.compare-wrapper .dashicons {
|
470 |
+
font-size: 28px;
|
471 |
+
line-height: 1;
|
472 |
+
width: auto;
|
473 |
+
height: auto;
|
474 |
+
}
|
475 |
+
|
476 |
+
div.compare-wrapper div.plan1 ul li div.tooltip {
|
477 |
+
border-color: #8ac249;
|
478 |
+
}
|
479 |
+
|
480 |
+
div.compare-wrapper div.plan2 ul li div.tooltip {
|
481 |
+
border-color: #00bcd4;
|
482 |
+
}
|
483 |
+
|
484 |
+
div.compare-wrapper div.plan3 ul li div.tooltip {
|
485 |
+
border-color: #37BF91;
|
486 |
+
}
|
487 |
+
|
488 |
+
div.compare-wrapper div.plan4 ul li div.tooltip {
|
489 |
+
border-color: #009688;
|
490 |
+
}
|
491 |
+
|
492 |
+
div.compare-wrapper div.plan ul li .m {
|
493 |
+
display: none;
|
494 |
+
}
|
495 |
+
|
496 |
+
|
497 |
+
@media only screen and (min-width:150px) and (max-width:1380px) {
|
498 |
+
div#plans {
|
499 |
+
margin-bottom: 40px;
|
500 |
+
}
|
501 |
+
div.plans-wrapper div.plan-intro {
|
502 |
+
display: none;
|
503 |
+
}
|
504 |
+
div.plans-wrapper div.plans {
|
505 |
+
margin: 0;
|
506 |
+
}
|
507 |
+
div.plans-wrapper div.content-wrapper{
|
508 |
+
margin: 0;
|
509 |
+
}
|
510 |
+
div.compare-wrapper {
|
511 |
+
background: transparent;
|
512 |
+
}
|
513 |
+
div.compare-wrapper div.benefits {
|
514 |
+
width: 100%;
|
515 |
+
margin: 0 0 30px 0;
|
516 |
+
}
|
517 |
+
div.compare-wrapper div.benefits h4 {
|
518 |
+
padding: 0;
|
519 |
+
background: transparent;
|
520 |
+
font-size: 2em;
|
521 |
+
line-height: 1em;
|
522 |
+
font-weight: 100;
|
523 |
+
color: #222c37;
|
524 |
+
}
|
525 |
+
div.compare-wrapper div.benefits ul {
|
526 |
+
display: none;
|
527 |
+
}
|
528 |
+
div.compare-wrapper div.plans {
|
529 |
+
margin: 0;
|
530 |
+
}
|
531 |
+
div.compare-wrapper div.content-wrapper{
|
532 |
+
margin: 0;
|
533 |
+
}
|
534 |
+
div.compare-wrapper div.plan h4 {
|
535 |
+
color: #fff;
|
536 |
+
margin: 0;
|
537 |
+
padding: 15px 20px;
|
538 |
+
background: #222c37;
|
539 |
+
}
|
540 |
+
div.compare-wrapper div.plan {
|
541 |
+
width: 100%;
|
542 |
+
padding: 0;
|
543 |
+
margin: 0 0 15px 0;
|
544 |
+
text-align: left;
|
545 |
+
background: #f5f8f9 !important;
|
546 |
+
}
|
547 |
+
div.compare-wrapper div.plan ul {
|
548 |
+
width: 100%;
|
549 |
+
margin: 0;
|
550 |
+
display: -webkit-flex;
|
551 |
+
display: -ms-flexbox;
|
552 |
+
display: flex;
|
553 |
+
-webkit-flex-wrap: wrap;
|
554 |
+
-ms-flex-wrap: wrap;
|
555 |
+
flex-wrap: wrap;
|
556 |
+
}
|
557 |
+
div.compare-wrapper div.plan ul li {
|
558 |
+
width: 50%;
|
559 |
+
height: auto;
|
560 |
+
float: left;
|
561 |
+
line-height: 20px;
|
562 |
+
padding: 15px 20px 15px 40px !important;
|
563 |
+
text-align: left;
|
564 |
+
display: -webkit-flex;
|
565 |
+
display: -ms-flexbox;
|
566 |
+
display: flex;
|
567 |
+
}
|
568 |
+
div.compare-wrapper div.plan ul li:nth-child(odd) {
|
569 |
+
background: rgba(0, 0, 0, 0.0);
|
570 |
+
}
|
571 |
+
div.compare-wrapper div.plan ul li:nth-child(2),
|
572 |
+
div.compare-wrapper div.plan ul li:nth-child(3),
|
573 |
+
div.compare-wrapper div.plan ul li:nth-child(6),
|
574 |
+
div.compare-wrapper div.plan ul li:nth-child(7),
|
575 |
+
div.compare-wrapper div.plan ul li:nth-child(10),
|
576 |
+
div.compare-wrapper div.plan ul li:nth-child(11),
|
577 |
+
div.compare-wrapper div.plan ul li:nth-child(14),
|
578 |
+
div.compare-wrapper div.plan ul li:nth-child(15),
|
579 |
+
div.compare-wrapper div.plan ul li:nth-child(18),
|
580 |
+
div.compare-wrapper div.plan ul li:nth-child(19),
|
581 |
+
div.compare-wrapper div.plan ul li:nth-child(22),
|
582 |
+
div.compare-wrapper div.plan ul li:nth-child(23) {
|
583 |
+
background: rgba(0, 0, 0, 0.02);
|
584 |
+
}
|
585 |
+
div.compare-wrapper div.plan ul li span.message {
|
586 |
+
display: none;
|
587 |
+
}
|
588 |
+
div.compare-wrapper div.plan ul li .m {
|
589 |
+
display: inline-block;
|
590 |
+
}
|
591 |
+
div.compare-wrapper div.plan ul li div.dashicons-yes,
|
592 |
+
div.compare-wrapper div.plan ul li div.dashicons-no-alt {
|
593 |
+
position: absolute;
|
594 |
+
top: 13px;
|
595 |
+
left: 8px;
|
596 |
+
}
|
597 |
+
div.compare-wrapper div.plan ul li div.dashicons-no-alt {
|
598 |
+
top: 16px;
|
599 |
+
}
|
600 |
+
div.compare-wrapper div.plan ul li span.m-message {
|
601 |
+
display: inline-block;
|
602 |
+
}
|
603 |
+
div.compare-wrapper div.action {
|
604 |
+
padding: 15px;
|
605 |
+
background: #e7e7e7;
|
606 |
+
}
|
607 |
+
div.compare-wrapper div.plan.even div.action {
|
608 |
+
background: #e7e7e7;
|
609 |
+
}
|
610 |
+
div.compare-wrapper div.action .btn {
|
611 |
+
width: auto;
|
612 |
+
}
|
613 |
+
}
|
614 |
+
|
615 |
+
@media only screen and (min-width:150px) and (max-width:1023px) {
|
616 |
+
|
617 |
+
div#plans {
|
618 |
+
padding-left: 30px;
|
619 |
+
padding-right: 30px;
|
620 |
+
}
|
621 |
+
div.plans-wrapper div.plan {
|
622 |
+
width: 50%;
|
623 |
+
}
|
624 |
+
div#compare {
|
625 |
+
padding-left: 30px;
|
626 |
+
padding-right: 30px;
|
627 |
+
}
|
628 |
+
}
|
629 |
+
|
630 |
+
@media only screen and (min-width:150px) and (max-width:767px) {
|
631 |
+
div#plans {
|
632 |
+
padding-left: 20px;
|
633 |
+
padding-right: 20px;
|
634 |
+
}
|
635 |
+
div.plans-wrapper {
|
636 |
+
background: #fff;
|
637 |
+
-webkit-box-shadow: none;
|
638 |
+
-moz-box-shadow: none;
|
639 |
+
box-shadow: none;
|
640 |
+
}
|
641 |
+
div.plans-wrapper div.plan {
|
642 |
+
width: 100%;
|
643 |
+
margin: 0 0 15px 0;
|
644 |
+
-webkit-box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
|
645 |
+
-moz-box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
|
646 |
+
box-shadow: 0 0 30px rgba(34, 44, 55, 0.15);
|
647 |
+
}
|
648 |
+
div.plans-wrapper div.plan div.icon {
|
649 |
+
display: none;
|
650 |
+
}
|
651 |
+
div.plans-wrapper div.plan p.text {
|
652 |
+
height: auto !important;
|
653 |
+
}
|
654 |
+
div#compare {
|
655 |
+
padding-left: 20px;
|
656 |
+
padding-right: 20px;
|
657 |
+
}
|
658 |
+
div.compare-wrapper div.plan ul li {
|
659 |
+
width: 100%;
|
660 |
+
}
|
661 |
+
div.compare-wrapper div.plan ul li:nth-child(2),
|
662 |
+
div.compare-wrapper div.plan ul li:nth-child(3),
|
663 |
+
div.compare-wrapper div.plan ul li:nth-child(6),
|
664 |
+
div.compare-wrapper div.plan ul li:nth-child(7),
|
665 |
+
div.compare-wrapper div.plan ul li:nth-child(10),
|
666 |
+
div.compare-wrapper div.plan ul li:nth-child(11),
|
667 |
+
div.compare-wrapper div.plan ul li:nth-child(14),
|
668 |
+
div.compare-wrapper div.plan ul li:nth-child(15),
|
669 |
+
div.compare-wrapper div.plan ul li:nth-child(18),
|
670 |
+
div.compare-wrapper div.plan ul li:nth-child(19),
|
671 |
+
div.compare-wrapper div.plan ul li:nth-child(22),
|
672 |
+
div.compare-wrapper div.plan ul li:nth-child(23) {
|
673 |
+
background: rgba(0, 0, 0, 0.0);
|
674 |
+
}
|
675 |
+
div.compare-wrapper div.plan ul li:nth-child(even) {
|
676 |
+
background: rgba(0, 0, 0, 0.02) !important;
|
677 |
+
}
|
678 |
+
div.faq-wrapper div.g12 {
|
679 |
+
padding-bottom: 15px !important;
|
680 |
+
}
|
681 |
+
div.faq-wrapper div.g4 {
|
682 |
+
width: 100%;
|
683 |
+
padding-bottom: 0;
|
684 |
+
padding-top: 0;
|
685 |
+
}
|
686 |
+
}
|
687 |
+
|
688 |
+
@media only screen and (min-width:150px) and (max-width:479px) {
|
689 |
+
div#plans {
|
690 |
+
padding-left: 15px;
|
691 |
+
padding-right: 15px;
|
692 |
+
}
|
693 |
+
div#compare {
|
694 |
+
padding-left: 15px;
|
695 |
+
padding-right: 15px;
|
696 |
+
}
|
697 |
+
}
|
698 |
+
|
699 |
+
/* ------- END: Pricing Plan --------- */
|
admin/assets/images/admin/accordion-add.png
ADDED
Binary file
|
admin/assets/images/admin/accordion.png
ADDED
Binary file
|
admin/assets/images/admin/button.png
ADDED
Binary file
|
admin/assets/images/admin/carousel-add.png
ADDED
Binary file
|
admin/assets/images/admin/carousel.png
ADDED
Binary file
|
admin/assets/images/admin/client-add.png
ADDED
Binary file
|
admin/assets/images/admin/clients.png
ADDED
Binary file
|
admin/assets/images/admin/countdown.png
ADDED
Binary file
|
admin/assets/images/admin/faq-add.png
ADDED
Binary file
|
admin/assets/images/admin/faq.png
ADDED
Binary file
|
admin/assets/images/admin/feature-add.png
ADDED
Binary file
|
admin/assets/images/admin/features.png
ADDED
Binary file
|
admin/assets/images/admin/gallery-add.png
ADDED
Binary file
|
admin/assets/images/admin/gallery.png
ADDED
Binary file
|
admin/assets/images/admin/generic-carousel.png
ADDED
Binary file
|
admin/assets/images/admin/grid-alt.png
ADDED
Binary file
|
admin/assets/images/admin/grid.png
ADDED
Binary file
|
admin/assets/images/admin/heading.png
ADDED
Binary file
|
admin/assets/images/admin/icon-add.png
ADDED
Binary file
|
admin/assets/images/admin/icons.png
ADDED
Binary file
|
admin/assets/images/admin/odometer-add.png
ADDED
Binary file
|
admin/assets/images/admin/odometers.png
ADDED
Binary file
|
admin/assets/images/admin/piechart-add.png
ADDED
Binary file
|
admin/assets/images/admin/piecharts.png
ADDED
Binary file
|
admin/assets/images/admin/portfolio-add.png
ADDED
Binary file
|
admin/assets/images/admin/portfolio.png
ADDED
Binary file
|
admin/assets/images/admin/posts-carousel.png
ADDED
Binary file
|
admin/assets/images/admin/pricing-plan.png
ADDED
Binary file
|
admin/assets/images/admin/pricing-table.png
ADDED
Binary file
|
admin/assets/images/admin/service-add.png
ADDED
Binary file
|
admin/assets/images/admin/services.png
ADDED
Binary file
|
admin/assets/images/admin/slider-add.png
ADDED
Binary file
|
admin/assets/images/admin/slider-add2.png
ADDED
Binary file
|
admin/assets/images/admin/sliders.png
ADDED
Binary file
|
admin/assets/images/admin/sliders2.png
ADDED
Binary file
|
admin/assets/images/admin/spacer.png
ADDED
Binary file
|
admin/assets/images/admin/stats-bar.png
ADDED
Binary file
|
admin/assets/images/admin/tab-add.png
ADDED
Binary file
|
admin/assets/images/admin/tabs.png
ADDED
Binary file
|
admin/assets/images/admin/team-member-add.png
ADDED
Binary file
|
admin/assets/images/admin/team.png
ADDED
Binary file
|
admin/assets/images/admin/testimonial-add.png
ADDED
Binary file
|
admin/assets/images/admin/testimonials-slider-add.png
ADDED
Binary file
|
admin/assets/images/admin/testimonials-slider.png
ADDED
Binary file
|
admin/assets/images/admin/testimonials.png
ADDED
Binary file
|
admin/assets/images/logo-dark.png
ADDED
Binary file
|
admin/assets/images/logo-light.png
ADDED
Binary file
|
admin/assets/images/logo-shape.png
ADDED
Binary file
|
admin/assets/images/logo-shape16.png
ADDED
Binary file
|
admin/assets/js/documentation.js
ADDED
@@ -0,0 +1,97 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery(document).ready(function ($) {
|
2 |
+
|
3 |
+
// Tabs
|
4 |
+
$( ".inline-list" ).each( function() {
|
5 |
+
$( this ).find( "li" ).each( function(i) {
|
6 |
+
$( this).click( function(){
|
7 |
+
$( this ).addClass( "current" ).siblings().removeClass( "current" )
|
8 |
+
.parents( "#wpbody" ).find( "div.panel-left" ).removeClass( "visible" ).end().find( 'div.panel-left:eq('+i+')' ).addClass( "visible" );
|
9 |
+
return false;
|
10 |
+
} );
|
11 |
+
} );
|
12 |
+
} );
|
13 |
+
|
14 |
+
|
15 |
+
// Scroll to anchor
|
16 |
+
$( ".anchor-nav a, .toc a" ).click( function(e) {
|
17 |
+
e.preventDefault();
|
18 |
+
|
19 |
+
var href = $( this ).attr( "href" );
|
20 |
+
$( "html, body" ).animate( {
|
21 |
+
scrollTop: $( href ).offset().top - 50
|
22 |
+
}, 'slow', 'swing' );
|
23 |
+
} );
|
24 |
+
|
25 |
+
|
26 |
+
// Back to top links
|
27 |
+
$( ".livemesh-doc .panel-left h3" ).append( $( "<a class='back-to-top' href='#panel'><span class='dashicons dashicons-arrow-up-alt2'></span> Back to top</a>" ) );
|
28 |
+
|
29 |
+
|
30 |
+
// Add lightbox to cloud links
|
31 |
+
$( "a[href*='cl.ly']:not(.direct-link)" ).each( function() {
|
32 |
+
|
33 |
+
// Add thickbox class to each cloud link
|
34 |
+
$( this ).addClass( 'thickbox' );
|
35 |
+
|
36 |
+
// Add the iframe code to each cloud link
|
37 |
+
var imgUrl = $( this ).attr( "href" ) + '?TB_iframe=true&width=1200&height=700';
|
38 |
+
|
39 |
+
// Set the new url
|
40 |
+
$( this ).attr( "href", imgUrl );
|
41 |
+
} );
|
42 |
+
|
43 |
+
// Sticky sidebar for upgrade to pro window
|
44 |
+
$(window).on("resize load", function () {
|
45 |
+
var current_width = $(window).width();
|
46 |
+
|
47 |
+
// Above tablet size
|
48 |
+
if (current_width > 768) {
|
49 |
+
|
50 |
+
// Calculate the offset due to padding on the sidebar
|
51 |
+
var paddingTop = $("#panel").css("padding-top");
|
52 |
+
|
53 |
+
var paddingTopInteger = parseInt(paddingTop, 10);
|
54 |
+
|
55 |
+
// While we're scrolling let's do this stuff
|
56 |
+
$(window).scroll(function () {
|
57 |
+
|
58 |
+
// Get current height of sticky sidebar
|
59 |
+
var height = $(".panel-right .panel-inner").height();
|
60 |
+
|
61 |
+
// Get desired width of sticky sidebar from the parent of sticky sidebar
|
62 |
+
var width = $(".panel-right").width();
|
63 |
+
|
64 |
+
// Get height of viewport
|
65 |
+
viewportHeight = $(window).height();
|
66 |
+
|
67 |
+
// Get amount already scolled
|
68 |
+
var scroll = $(this).scrollTop();
|
69 |
+
|
70 |
+
if (scroll < $("#panel").offset().top) {
|
71 |
+
// If amount scolled from top is less than the position of panel (sidebar container) relative to document
|
72 |
+
$(".panel-right .panel-inner").css({
|
73 |
+
'position': 'absolute',
|
74 |
+
'top': '0',
|
75 |
+
'width': '100%'
|
76 |
+
});
|
77 |
+
|
78 |
+
} else if (height > viewportHeight || $(window).width() <= 768 ) {
|
79 |
+
// If the sidebar is taller than the viewport, don't stick the sidebar or remove stickiness if already stuck
|
80 |
+
$(".panel-right .panel-inner").css({
|
81 |
+
'position': 'relative',
|
82 |
+
'width': '100%',
|
83 |
+
'top': 'initial'
|
84 |
+
});
|
85 |
+
} else {
|
86 |
+
// Make the sidebar fixed while scrolling, if scroll position is past the panel containing sidebar
|
87 |
+
$(".panel-right .panel-inner").css({
|
88 |
+
'position': 'fixed',
|
89 |
+
'top': paddingTopInteger,
|
90 |
+
'width': width + 'px'
|
91 |
+
});
|
92 |
+
}
|
93 |
+
});
|
94 |
+
}
|
95 |
+
});
|
96 |
+
|
97 |
+
});
|
admin/assets/js/documentation.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
jQuery(document).ready(function($){$(".inline-list").each(function(){$(this).find("li").each(function(i){$(this).click(function(){$(this).addClass("current").siblings().removeClass("current").parents("#wpbody").find("div.panel-left").removeClass("visible").end().find("div.panel-left:eq("+i+")").addClass("visible");return false})})});$(".anchor-nav a, .toc a").click(function(e){e.preventDefault();var href=$(this).attr("href");$("html, body").animate({scrollTop:$(href).offset().top-50},"slow","swing")});$(".livemesh-doc .panel-left h3").append($("<a class='back-to-top' href='#panel'><span class='dashicons dashicons-arrow-up-alt2'></span> Back to top</a>"));$("a[href*='cl.ly']:not(.direct-link)").each(function(){$(this).addClass("thickbox");var imgUrl=$(this).attr("href")+"?TB_iframe=true&width=1200&height=700";$(this).attr("href",imgUrl)});$(window).on("resize load",function(){var current_width=$(window).width();if(current_width>768){var paddingTop=$("#panel").css("padding-top");var paddingTopInteger=parseInt(paddingTop,10);$(window).scroll(function(){var height=$(".panel-right .panel-inner").height();var width=$(".panel-right").width();viewportHeight=$(window).height();var scroll=$(this).scrollTop();if(scroll<$("#panel").offset().top){$(".panel-right .panel-inner").css({position:"absolute",top:"0",width:"100%"})}else if(height>viewportHeight||$(window).width()<=768){$(".panel-right .panel-inner").css({position:"relative",width:"100%",top:"initial"})}else{$(".panel-right .panel-inner").css({position:"fixed",top:paddingTopInteger,width:width+"px"})}})}})});
|
admin/assets/js/lvca-admin-ajax.js
ADDED
@@ -0,0 +1,169 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*global jQuery:false*/
|
2 |
+
/*global ajaxurl:false*/
|
3 |
+
/*global lvca_admin_global_var*/
|
4 |
+
|
5 |
+
jQuery.noConflict();
|
6 |
+
|
7 |
+
(function ($) {
|
8 |
+
|
9 |
+
"use strict";
|
10 |
+
|
11 |
+
// ==================================================================
|
12 |
+
// Ajax Helper
|
13 |
+
// ==================================================================
|
14 |
+
|
15 |
+
var xhr,
|
16 |
+
msg_strings = lvca_admin_global_var.box_messages,
|
17 |
+
msg_icons = lvca_admin_global_var.box_icons;
|
18 |
+
|
19 |
+
function Ajax_Helper(ajax_data) {
|
20 |
+
|
21 |
+
// check if ajax request not proceeded and finish before running another one
|
22 |
+
if (xhr && (xhr.readyState == 3 || xhr.readyState == 2 || xhr.readyState == 1)) {
|
23 |
+
return false;
|
24 |
+
}
|
25 |
+
|
26 |
+
// prepare message icon
|
27 |
+
var msg_state = msg_strings[ajax_data.func];
|
28 |
+
|
29 |
+
// retrieve callbacks
|
30 |
+
var ajax_callbacks = ajax_data.callbacks;
|
31 |
+
// delete callbacks to prevent fire function from $.ajax->data
|
32 |
+
delete ajax_data.callbacks;
|
33 |
+
|
34 |
+
// start ajax request
|
35 |
+
xhr = $.ajax({
|
36 |
+
url: ajaxurl, // global defined by WordPress pointing to admin-ajax.php
|
37 |
+
type: 'POST',
|
38 |
+
dataType: 'json',
|
39 |
+
data: ajax_data, // utilize the action key value 'lvca_admin_ajax' to decide on the server side function should be fired
|
40 |
+
beforeSend: function () {
|
41 |
+
var msg_before = msg_icons.before + msg_state.before;
|
42 |
+
if (ajax_callbacks.before) {
|
43 |
+
// call show_message_load() function
|
44 |
+
ajax_callbacks.before(ajax_data, msg_before);
|
45 |
+
}
|
46 |
+
},
|
47 |
+
error: function (response) {
|
48 |
+
console.error(response);
|
49 |
+
if (ajax_callbacks.error) {
|
50 |
+
// call show_message_error() function
|
51 |
+
ajax_callbacks.error(ajax_data, response);
|
52 |
+
}
|
53 |
+
},
|
54 |
+
success: function (response) {
|
55 |
+
// if a php script error occurs
|
56 |
+
if (!response.success) {
|
57 |
+
if (ajax_callbacks.error) {
|
58 |
+
// call show_message_error() function
|
59 |
+
ajax_callbacks.error(ajax_data, response);
|
60 |
+
}
|
61 |
+
return false;
|
62 |
+
} else {
|
63 |
+
var msg_success = msg_icons.success + msg_state.success;
|
64 |
+
if (ajax_callbacks.success) {
|
65 |
+
// call show_save_settings_success() function
|
66 |
+
ajax_callbacks.success(ajax_data, response, msg_success);
|
67 |
+
}
|
68 |
+
}
|
69 |
+
}
|
70 |
+
});
|
71 |
+
}
|
72 |
+
|
73 |
+
|
74 |
+
// ==================================================================
|
75 |
+
// Close info Box Helper
|
76 |
+
// ===================================================================
|
77 |
+
|
78 |
+
var infobox = '#lvca-infobox',
|
79 |
+
infobox_msg = '.lvca-infobox-msg',
|
80 |
+
infobox_loading = 'lvca-infobox-loading';
|
81 |
+
|
82 |
+
$(document).on('click', infobox, function (e) {
|
83 |
+
if ($(infobox).is(':visible') && ($(e.target).is('.lvca-info-inner') || $(e.target).is('.lvca-close-infobox'))) {
|
84 |
+
$(infobox).removeClass(infobox_loading);
|
85 |
+
setTimeout(function () {
|
86 |
+
$(infobox).removeClass(infobox_loading);
|
87 |
+
}, 300);
|
88 |
+
}
|
89 |
+
});
|
90 |
+
|
91 |
+
|
92 |
+
// show box message
|
93 |
+
function show_message_load(ajax_data, msg) {
|
94 |
+
$(infobox_msg).html(msg);
|
95 |
+
$(infobox).addClass(infobox_loading);
|
96 |
+
}
|
97 |
+
|
98 |
+
// show error message
|
99 |
+
function show_message_error(ajax_data, response) {
|
100 |
+
$(infobox_msg).html(lvca_admin_global_var.box_icons.error + response.message);
|
101 |
+
setTimeout(function () {
|
102 |
+
$(infobox).removeClass(infobox_loading);
|
103 |
+
}, 1500);
|
104 |
+
}
|
105 |
+
|
106 |
+
|
107 |
+
// ==================================================================
|
108 |
+
// GRID Global Settings - Save/reset settings
|
109 |
+
// ==================================================================
|
110 |
+
|
111 |
+
$(document).on('click', '#lvca_settings_save, #lvca_settings_reset', function () {
|
112 |
+
|
113 |
+
var func = $(this).data('action'),
|
114 |
+
reset = (func === 'lvca_reset_settings') ? true : null,
|
115 |
+
setting_data = get_settings_data(reset);
|
116 |
+
|
117 |
+
Ajax_Helper({
|
118 |
+
nonce: lvca_admin_global_var.nonce,
|
119 |
+
action: 'lvca_admin_ajax',
|
120 |
+
func: func,
|
121 |
+
reset: reset,
|
122 |
+
setting_data: setting_data,
|
123 |
+
callbacks: {
|
124 |
+
before: show_message_load,
|
125 |
+
success: show_save_settings_success,
|
126 |
+
error: show_message_error
|
127 |
+
}
|
128 |
+
});
|
129 |
+
|
130 |
+
});
|
131 |
+
|
132 |
+
function get_settings_data(reset) {
|
133 |
+
|
134 |
+
var setting_data = {},
|
135 |
+
setting_val;
|
136 |
+
|
137 |
+
$('.lvca-row').each(function () {
|
138 |
+
var $setting = $(this).find('[name]');
|
139 |
+
if ($setting.length) {
|
140 |
+
var setting_name = $setting.attr('name');
|
141 |
+
if (reset) {
|
142 |
+
setting_val = $setting.data('default');
|
143 |
+
} else {
|
144 |
+
setting_val = $setting.val();
|
145 |
+
if ($setting.is('.lvca-checkbox')) {
|
146 |
+
setting_val = $setting.is(':checked');
|
147 |
+
setting_val = (setting_val) ? setting_val : null;
|
148 |
+
}
|
149 |
+
}
|
150 |
+
setting_data[setting_name] = setting_val;
|
151 |
+
}
|
152 |
+
});
|
153 |
+
|
154 |
+
return setting_data;
|
155 |
+
|
156 |
+
}
|
157 |
+
|
158 |
+
function show_save_settings_success(ajax_data, response, msg) {
|
159 |
+
$(infobox_msg).html(msg);
|
160 |
+
setTimeout(function () {
|
161 |
+
$(infobox).removeClass(infobox_loading);
|
162 |
+
if (response.content) {
|
163 |
+
$('.lvca-settings').html($(response.content).html());
|
164 |
+
LVCA_JS.init();
|
165 |
+
}
|
166 |
+
}, 800);
|
167 |
+
}
|
168 |
+
|
169 |
+
})(jQuery);
|
admin/assets/js/lvca-admin-ajax.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
jQuery.noConflict();(function($){"use strict";var xhr,msg_strings=lvca_admin_global_var.box_messages,msg_icons=lvca_admin_global_var.box_icons;function Ajax_Helper(ajax_data){if(xhr&&(xhr.readyState==3||xhr.readyState==2||xhr.readyState==1)){return false}var msg_state=msg_strings[ajax_data.func];var ajax_callbacks=ajax_data.callbacks;delete ajax_data.callbacks;xhr=$.ajax({url:ajaxurl,type:"POST",dataType:"json",data:ajax_data,beforeSend:function(){var msg_before=msg_icons.before+msg_state.before;if(ajax_callbacks.before){ajax_callbacks.before(ajax_data,msg_before)}},error:function(response){console.error(response);if(ajax_callbacks.error){ajax_callbacks.error(ajax_data,response)}},success:function(response){if(!response.success){if(ajax_callbacks.error){ajax_callbacks.error(ajax_data,response)}return false}else{var msg_success=msg_icons.success+msg_state.success;if(ajax_callbacks.success){ajax_callbacks.success(ajax_data,response,msg_success)}}}})}var infobox="#lvca-infobox",infobox_msg=".lvca-infobox-msg",infobox_loading="lvca-infobox-loading";$(document).on("click",infobox,function(e){if($(infobox).is(":visible")&&($(e.target).is(".lvca-info-inner")||$(e.target).is(".lvca-close-infobox"))){$(infobox).removeClass(infobox_loading);setTimeout(function(){$(infobox).removeClass(infobox_loading)},300)}});function show_message_load(ajax_data,msg){$(infobox_msg).html(msg);$(infobox).addClass(infobox_loading)}function show_message_error(ajax_data,response){$(infobox_msg).html(lvca_admin_global_var.box_icons.error+response.message);setTimeout(function(){$(infobox).removeClass(infobox_loading)},1500)}$(document).on("click","#lvca_settings_save, #lvca_settings_reset",function(){var func=$(this).data("action"),reset=func==="lvca_reset_settings"?true:null,setting_data=get_settings_data(reset);Ajax_Helper({nonce:lvca_admin_global_var.nonce,action:"lvca_admin_ajax",func:func,reset:reset,setting_data:setting_data,callbacks:{before:show_message_load,success:show_save_settings_success,error:show_message_error}})});function get_settings_data(reset){var setting_data={},setting_val;$(".lvca-row").each(function(){var $setting=$(this).find("[name]");if($setting.length){var setting_name=$setting.attr("name");if(reset){setting_val=$setting.data("default")}else{setting_val=$setting.val();if($setting.is(".lvca-checkbox")){setting_val=$setting.is(":checked");setting_val=setting_val?setting_val:null}}setting_data[setting_name]=setting_val}});return setting_data}function show_save_settings_success(ajax_data,response,msg){$(infobox_msg).html(msg);setTimeout(function(){$(infobox).removeClass(infobox_loading);if(response.content){$(".lvca-settings").html($(response.content).html());LVCA_JS.init()}},800)}})(jQuery);
|
admin/assets/js/lvca-admin.js
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
/*global jQuery:false*/
|
3 |
+
|
4 |
+
jQuery(document).ready(function () {
|
5 |
+
LVCA_JS.init();
|
6 |
+
// Run tab open/close event
|
7 |
+
LVCA_Tab.event();
|
8 |
+
});
|
9 |
+
|
10 |
+
// Init all fields functions (invoked from ajax)
|
11 |
+
var LVCA_JS = {
|
12 |
+
init: function () {
|
13 |
+
// Run tab open/close
|
14 |
+
LVCA_Tab.init();
|
15 |
+
// Load colorpicker if field exists
|
16 |
+
LVCA_ColorPicker.init();
|
17 |
+
}
|
18 |
+
};
|
19 |
+
|
20 |
+
|
21 |
+
var LVCA_ColorPicker = {
|
22 |
+
init: function () {
|
23 |
+
var $colorPicker = jQuery('.lvca-colorpicker');
|
24 |
+
if ($colorPicker.length > 0) {
|
25 |
+
|
26 |
+
$colorPicker.wpColorPicker();
|
27 |
+
|
28 |
+
}
|
29 |
+
}
|
30 |
+
};
|
31 |
+
|
32 |
+
var LVCA_Tab = {
|
33 |
+
init: function () {
|
34 |
+
// display the tab chosen for initial display in content
|
35 |
+
jQuery('.lvca-tab.selected').each(function () {
|
36 |
+
LVCA_Tab.check(jQuery(this));
|
37 |
+
});
|
38 |
+
},
|
39 |
+
event: function () {
|
40 |
+
jQuery(document).on('click', '.lvca-tab', function () {
|
41 |
+
LVCA_Tab.check(jQuery(this));
|
42 |
+
});
|
43 |
+
},
|
44 |
+
check: function (elem) {
|
45 |
+
var chosen_tab_name = elem.data('target');
|
46 |
+
elem.siblings().removeClass('selected');
|
47 |
+
elem.addClass('selected');
|
48 |
+
elem.closest('.lvca-inner').find('.lvca-tab-content').removeClass('lvca-tab-show').hide();
|
49 |
+
elem.closest('.lvca-inner').find('.lvca-tab-content.' + chosen_tab_name + '').addClass('lvca-tab-show').show();
|
50 |
+
}
|
51 |
+
};
|
admin/assets/js/lvca-admin.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
jQuery(document).ready(function(){LVCA_JS.init();LVCA_Tab.event()});var LVCA_JS={init:function(){LVCA_Tab.init();LVCA_ColorPicker.init()}};var LVCA_ColorPicker={init:function(){var $colorPicker=jQuery(".lvca-colorpicker");if($colorPicker.length>0){$colorPicker.wpColorPicker()}}};var LVCA_Tab={init:function(){jQuery(".lvca-tab.selected").each(function(){LVCA_Tab.check(jQuery(this))})},event:function(){jQuery(document).on("click",".lvca-tab",function(){LVCA_Tab.check(jQuery(this))})},check:function(elem){var chosen_tab_name=elem.data("target");elem.siblings().removeClass("selected");elem.addClass("selected");elem.closest(".lvca-inner").find(".lvca-tab-content").removeClass("lvca-tab-show").hide();elem.closest(".lvca-inner").find(".lvca-tab-content."+chosen_tab_name+"").addClass("lvca-tab-show").show()}};
|
admin/assets/js/premium-upgrade.js
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
(function($) {
|
2 |
+
|
3 |
+
$(document).ready(function() {
|
4 |
+
|
5 |
+
/* ==== COMPARE PLANS TOOLTIP =======*/
|
6 |
+
|
7 |
+
$('.compare-wrapper ul li span.dashicons-editor-help').on('click', function(){
|
8 |
+
|
9 |
+
var $tooltip = $(this).closest('li').find('.tooltip');
|
10 |
+
|
11 |
+
if($tooltip.hasClass('hide')){
|
12 |
+
$('.compare-wrapper .tooltip').addClass('hide');
|
13 |
+
$tooltip.removeClass('hide');
|
14 |
+
}
|
15 |
+
else {
|
16 |
+
$tooltip.addClass('hide');
|
17 |
+
}
|
18 |
+
|
19 |
+
});
|
20 |
+
|
21 |
+
$('html').bind('click', function(e) {
|
22 |
+
|
23 |
+
if($(e.target).closest('.compare-wrapper ul li span.dashicons-editor-help').length == 0 && $(e.target).closest('.tooltip').length == 0){
|
24 |
+
$('.compare-wrapper .tooltip').addClass('hide');
|
25 |
+
}
|
26 |
+
|
27 |
+
});
|
28 |
+
|
29 |
+
});
|
30 |
+
|
31 |
+
})(jQuery);
|
admin/assets/js/premium-upgrade.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
(function($){$(document).ready(function(){$(".compare-wrapper ul li span.dashicons-editor-help").on("click",function(){var $tooltip=$(this).closest("li").find(".tooltip");if($tooltip.hasClass("hide")){$(".compare-wrapper .tooltip").addClass("hide");$tooltip.removeClass("hide")}else{$tooltip.addClass("hide")}});$("html").bind("click",function(e){if($(e.target).closest(".compare-wrapper ul li span.dashicons-editor-help").length==0&&$(e.target).closest(".tooltip").length==0){$(".compare-wrapper .tooltip").addClass("hide")}})})})(jQuery);
|
admin/views/admin-banner1.php
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// Exit if accessed directly
|
4 |
+
if (!defined('ABSPATH')) {
|
5 |
+
exit;
|
6 |
+
}
|
7 |
+
|
8 |
+
?>
|
9 |
+
|
10 |
+
<div id="lvca-banner-wrap">
|
11 |
+
|
12 |
+
<div id="lvca-banner" class="lvca-banner-sticky">
|
13 |
+
<h2><span><?php echo __('Visual Composer Addons', 'livemesh-vc-addons'); ?></span><?php echo __('Plugin Documentation', 'livemesh-vc-addons') ?></h2>
|
14 |
+
</div>
|
15 |
+
|
16 |
+
</div>
|
admin/views/admin-banner2.php
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// Exit if accessed directly
|
4 |
+
if (!defined('ABSPATH')) {
|
5 |
+
exit;
|
6 |
+
}
|
7 |
+
|
8 |
+
?>
|
9 |
+
|
10 |
+
<div id="lvca-banner-wrap">
|
11 |
+
|
12 |
+
<div id="lvca-banner" class="lvca-banner-sticky">
|
13 |
+
<h2><span><?php echo __('Visual Composer Addons', 'livemesh-vc-addons'); ?></span><?php echo __('Plugin Settings', 'livemesh-vc-addons') ?></h2>
|
14 |
+
<div id="lvca-buttons-wrap">
|
15 |
+
<a class="lvca-button" data-action="lvca_save_settings" id="lvca_settings_save"><i
|
16 |
+
class="dashicons dashicons-yes"></i><?php echo __('Save Settings', 'livemesh-vc-addons') ?></a>
|
17 |
+
<a class="lvca-button reset" data-action="lvca_reset_settings" id="lvca_settings_reset"><i
|
18 |
+
class="dashicons dashicons-update"></i><?php echo __('Reset', 'livemesh-vc-addons') ?></a>
|
19 |
+
</div>
|
20 |
+
</div>
|
21 |
+
|
22 |
+
</div>
|
admin/views/admin-banner3.php
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// Exit if accessed directly
|
4 |
+
if (!defined('ABSPATH')) {
|
5 |
+
exit;
|
6 |
+
}
|
7 |
+
|
8 |
+
?>
|
9 |
+
|
10 |
+
<div id="lvca-banner-wrap">
|
11 |
+
|
12 |
+
<div id="lvca-banner" class="lvca-banner-sticky">
|
13 |
+
<h2><span><?php echo __('Addons for Visual Composer', 'livemesh-vc-addons'); ?></span><?php echo __('Premium Upgrade', 'livemesh-vc-addons') ?></h2>
|
14 |
+
</div>
|
15 |
+
|
16 |
+
</div>
|
admin/views/admin-footer.php
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// Exit if accessed directly
|
4 |
+
if (!defined('ABSPATH')) {
|
5 |
+
exit;
|
6 |
+
}
|
7 |
+
|
8 |
+
?>
|
9 |
+
|
10 |
+
<div id="lvca-infobox">
|
11 |
+
<div class="lvca-info-overlay"></div>
|
12 |
+
<div class="lvca-info-inner">
|
13 |
+
<div class="lvca-infobox-msg"></div>
|
14 |
+
</div>
|
15 |
+
</div>
|
16 |
+
|
17 |
+
</div><!-- lvca-wrap -->
|
admin/views/admin-header.php
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
|
4 |
+
// Exit if accessed directly
|
5 |
+
if (!defined('ABSPATH')) {
|
6 |
+
exit;
|
7 |
+
}
|
8 |
+
|
9 |
+
?>
|
10 |
+
|
11 |
+
<div class="lvca-wrap">
|
admin/views/documentation.php
ADDED
@@ -0,0 +1,1285 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// Exit if accessed directly
|
4 |
+
if (!defined('ABSPATH')) {
|
5 |
+
exit;
|
6 |
+
}
|
7 |
+
|
8 |
+
// Theme info
|
9 |
+
$plugin = get_plugin_data(LVCA_PLUGIN_FILE);
|
10 |
+
|
11 |
+
|
12 |
+
if (is_multisite()) {
|
13 |
+
$visualComposerUrl = 'https://codecanyon.net/item/visual-composer-page-builder-for-wordpress/242431?ref=livemesh';
|
14 |
+
$portfolioPostTypeUrl = network_admin_url('plugin-install.php?tab=plugin-information&plugin=portfolio-post-type&TB_iframe=true&width=640&height=589');
|
15 |
+
}
|
16 |
+
else {
|
17 |
+
$visualComposerUrl = 'https://codecanyon.net/item/visual-composer-page-builder-for-wordpress/242431?ref=livemesh';
|
18 |
+
$portfolioPostTypeUrl = admin_url('plugin-install.php?tab=plugin-information&plugin=portfolio-post-type&TB_iframe=true&width=640&height=589');
|
19 |
+
}
|
20 |
+
|
21 |
+
?>
|
22 |
+
|
23 |
+
<div class="livemesh-doc">
|
24 |
+
|
25 |
+
<h2 class="notices"></h2>
|
26 |
+
|
27 |
+
<div class="intro-wrap">
|
28 |
+
|
29 |
+
<img class="plugin-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/plugin-screenshot.jpg" alt="Addons for Visual Composer">
|
30 |
+
|
31 |
+
<div class="intro">
|
32 |
+
<h3><?php printf(__('Getting started with %1$s v%2$s', 'livemesh-vc-addons'), $plugin['Name'], $plugin['Version']); ?></h3>
|
33 |
+
|
34 |
+
<h4><?php printf(__('Thanks for installing %1$s! We truly appreciate the support and the opportunity to share our work with you. Please visit the tabs below to get started on using our plugin to build your site!', 'livemesh-vc-addons'), $plugin['Name']); ?></h4>
|
35 |
+
</div>
|
36 |
+
|
37 |
+
</div>
|
38 |
+
|
39 |
+
<div class="panels">
|
40 |
+
<ul class="inline-list">
|
41 |
+
<li class="current"><a id="help" href="#"><span
|
42 |
+
class="dashicons dashicons-yes"></span> <?php _e('Help File', 'livemesh-vc-addons'); ?></a>
|
43 |
+
</li>
|
44 |
+
<li><a id="plugins" href="#"><span
|
45 |
+
class="dashicons dashicons-admin-plugins"></span> <?php _e('Plugins', 'livemesh-vc-addons'); ?>
|
46 |
+
</a>
|
47 |
+
</li>
|
48 |
+
<li><a id="support" href="#"><span
|
49 |
+
class="dashicons dashicons-editor-help"></span> <?php _e('FAQ & Support', 'livemesh-vc-addons'); ?>
|
50 |
+
</a>
|
51 |
+
</li>
|
52 |
+
<li><a id="updates" href="#"><span
|
53 |
+
class="dashicons dashicons-update"></span> <?php _e('Latest Updates', 'livemesh-vc-addons'); ?>
|
54 |
+
</a>
|
55 |
+
</li>
|
56 |
+
</ul>
|
57 |
+
|
58 |
+
<div id="panel" class="panel">
|
59 |
+
|
60 |
+
<!-- Help file panel -->
|
61 |
+
<div id="help-panel" class="panel-left visible">
|
62 |
+
|
63 |
+
<!-- Grab feed of help file -->
|
64 |
+
|
65 |
+
<!-- Output the feed -->
|
66 |
+
<ul id="top" class="toc">
|
67 |
+
<li><a href="#getting-started">Getting Started</a></li>
|
68 |
+
<li><a href="#install-plugins">Installing Recommended/Required Plugins</a></li>
|
69 |
+
<li><a href="#demo-data">Installing Demo Data</a></li>
|
70 |
+
<li><a href="#plugin-elements">Working with plugin elements</a></li>
|
71 |
+
|
72 |
+
<li><a href="#heading-element">Heading Addon</a></li>
|
73 |
+
<li><a href="#services-element">Services Addon</a></li>
|
74 |
+
<li><a href="#team-members">Team Members</a></li>
|
75 |
+
<li><a href="#statistics-elements">Statistics Addons</a></li>
|
76 |
+
<li><a href="#testimonials-elements">Testimonials Addons</a></li>
|
77 |
+
<li><a href="#posts-carousel">Posts Carousel</a></li>
|
78 |
+
<li><a href="#carousel-element">Carousel Addon</a></li>
|
79 |
+
<li><a href="#grid-element">Livemesh Grid</a></li>
|
80 |
+
<li><a href="#clients-element">Clients</a></li>
|
81 |
+
<li><a href="#pricing-table">Pricing Table</a></li>
|
82 |
+
<li><a href="#tabs-accordions">Tabs and Accordions</a></li>
|
83 |
+
<li><a href="#button-element">Buttons – <span class="pro-feature">Pro!</span></a></a></li>
|
84 |
+
<li><a href="#icon-list">Icon List – <span class="pro-feature">Pro!</span></a></a></li>
|
85 |
+
<li><a href="#image-slider">Image Slider – <span class="pro-feature">Pro!</span></a></li>
|
86 |
+
<li><a href="#image-video-gallery">Image/Video Gallery – <span class="pro-feature">Pro!</span></a></li>
|
87 |
+
<li><a href="#image-video-carousel">Image/Video Carousel – <span class="pro-feature">Pro!</span></a></li>
|
88 |
+
<li><a href="#faq-element">FAQ Addon - <span class="pro-feature">Pro!</span></a></li>
|
89 |
+
<li><a href="#features-element">Features Addon - <span class="pro-feature">Pro!</span></a></li>
|
90 |
+
|
91 |
+
</ul>
|
92 |
+
<h3 id="getting-started">Getting Started<a class="back-to-top" href="#panel"><span
|
93 |
+
class="dashicons dashicons-arrow-up-alt2"></span> Back to top</a></h3>
|
94 |
+
<p>Thanks for choosing Addons for Visual Composer plugin. This help file aims to provide you with all the information you need to make the best use of this powerful plugin. The aim of the plugin to make the task of building a website effortless and pleasurable. Towards that end, we have built a number of elements most commonly used across most of the websites of small businesses, corporates, design agencies, freelancers, artists etc.</p>
|
95 |
+
<p>Do follow the steps below to get started - </p>
|
96 |
+
<ol>
|
97 |
+
<li>Install and activate the <strong>required plugin</strong> <a
|
98 |
+
href="https://codecanyon.net/item/visual-composer-page-builder-for-wordpress/242431?ref=livemesh" rel="nofollow" target="_blank">Visual Composer</a>.
|
99 |
+
Visual Composer is a premium WordPress page builder plugin available for purchase from <a
|
100 |
+
href="https://codecanyon.net/item/visual-composer-page-builder-for-wordpress/242431?ref=livemesh" rel="nofollow" target="_blank">CodeCanyon</a>.
|
101 |
+
With over 1.5m installed sites, VC is certainly the most popular page builder plugin for WordPress.
|
102 |
+
</li>
|
103 |
+
<li>Unzip the downloaded addons-for-visual-composer.zip file and upload to the <code>/wp-content/plugins/</code>
|
104 |
+
directory or upload the plugin zip with the help of Plugins→Installed Plugins→Add New button.<br>
|
105 |
+
Activate the plugin through the 'Plugins' menu in WordPress. If you are viewing this help page
|
106 |
+
in WordPress admin under VC Addons→Documentation, you have already activated the plugin.
|
107 |
+
</li>
|
108 |
+
<li>Once the plugin is activated, all of the elements part of the plugin are available in Visual
|
109 |
+
Composer 'Add Element' window, grouped under 'Livemesh VC Addons' tab.
|
110 |
+
|
111 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/add-element-window.png" alt="Visual Composer Addons Add Element Window"></p>
|
112 |
+
|
113 |
+
|
114 |
+
<p>Once you are done with developing the site, for performance gains, you can selectively deactivate
|
115 |
+
the unused elements in 'Elements' tab of
|
116 |
+
<strong> <a href="<?php echo admin_url() . 'admin.php?page=livemesh_vc_addons'; ?>"
|
117 |
+
target="_blank"><?php echo __('VC Addons→Settings', 'livemesh-vc-addons') ?></a></strong>
|
118 |
+
page. This will ensure that scripts and files relating to the deactivated elements do not load on your site.</p>
|
119 |
+
</li>
|
120 |
+
<li>If you plan to build a portfolio site and plan to use Livemesh Grid element for the same, install
|
121 |
+
and activate the optional plugin <a
|
122 |
+
href="https://wordpress.org/plugins/portfolio-post-type/" rel="nofollow" target="_blank">Portfolio
|
123 |
+
Post Type</a>.
|
124 |
+
The portfolio examples of Livemesh Grid element is built using custom post type registered by
|
125 |
+
this plugin.
|
126 |
+
</li>
|
127 |
+
<li>Optionally, if you have <a href="https://www.livemeshthemes.com/visual-composer-addons/pricing/" title="Addons for Visual Composer Pro" target="_blank">premium version</a> of the plugin installed, you can import the sample data
|
128 |
+
that replicates the demo site for you by importing the
|
129 |
+
file sample-data.xml file located in the plugin directory. The import option is available under
|
130 |
+
<strong> <a href="<?php echo admin_url() . 'import.php'; ?>"
|
131 |
+
target="_blank"><?php echo __('Tools→Import', 'livemesh-vc-addons') ?></a></strong>
|
132 |
+
in WordPress admin.
|
133 |
+
</li>
|
134 |
+
</ol>
|
135 |
+
|
136 |
+
<hr>
|
137 |
+
<h3 id="install-plugins">Installing Recommended/Required Plugins<a class="back-to-top"
|
138 |
+
href="#panel"><span
|
139 |
+
class="dashicons dashicons-arrow-up-alt2"></span> Back to top</a></h3>
|
140 |
+
<p>Below is a list of required/recommended plugins to install that will help you get the most out of this plugin.
|
141 |
+
Although some of these plugins are optional, we recommend that you install these popular plugins if
|
142 |
+
you plan to install the demo data and get most out of this plugin. The demo site and the sample data
|
143 |
+
provided with the <a href="https://www.livemeshthemes.com/visual-composer-addons/pricing/"
|
144 |
+
title="Addons for Visual Composer Pro" target="_blank">premium version</a> of
|
145 |
+
the plugin utilizes all of these plugins including the Portfolio Post type plugin.</p>
|
146 |
+
<p>These plugins are also listed in the Plugins tab of this help file under VC Addons →
|
147 |
+
Documentation, and you can install the plugins directly from there.</p>
|
148 |
+
<ul>
|
149 |
+
<li><p><strong>Visual Composer</strong> is perhaps the most popular page builder tool for WordPress powering
|
150 |
+
over 1.5+ million sites. You can build any layout you can imagine with intuitive drag and drop builder
|
151 |
+
with little or no programming knowledge.</p>
|
152 |
+
<p>All of the elements part of Addons for Visual Composer plugin were built using the API provided
|
153 |
+
by the Visual Composer plugin and hence this plugin must be installed and activated on the site prior
|
154 |
+
to using our plugin.</p>
|
155 |
+
<p>All of the pages of our demo site for
|
156 |
+
the plugin have been built using this page builder. You should install and activate this plugin
|
157 |
+
prior to replicating the plugin demo site by importing the sample data provided.</p>
|
158 |
+
<p><a href="<?php echo esc_url($visualComposerUrl); ?>" target="_blank">More about Visual Composer →</a></p></li>
|
159 |
+
<li><strong>Portfolio Post Type</strong> is a free plugin that registers a custom post type for
|
160 |
+
portfolio items. It also registers separate portfolio taxonomies for tags and categories. The
|
161 |
+
Portfolio grid instances showcased on our demo site was built using custom post types registered
|
162 |
+
by Portfolio Post Type plugin.
|
163 |
+
<p><a href="https://wordpress.org/plugins/portfolio-post-type/" target="_blank">More about Portfolio Post Type
|
164 |
+
→</a></p>
|
165 |
+
</li>
|
166 |
+
</ul>
|
167 |
+
<hr>
|
168 |
+
<h3 id="demo-data">Installing Demo Data<a class="back-to-top" href="#panel"><span
|
169 |
+
class="dashicons dashicons-arrow-up-alt2"></span> Back to top</a></h3>
|
170 |
+
<p>If you have <a href="https://www.livemeshthemes.com/visual-composer-addons/pricing/" title="Addons for Visual Composer Pro" target="_blank">premium version</a> of the plugin installed, you can install the demo data to replicate the
|
171 |
+
plugin demo site to get a head start on building your site. Installing demo data reduces the
|
172 |
+
learning curve associated with trying out the powerful elements part of this plugin.</p>
|
173 |
+
<p>The sample data imports the pages, posts and portfolio items part of the demo site. Once you are done with playing around the
|
174 |
+
elements and feel comfortable creating/configuring them, you can delete the unwanted pages/posts that
|
175 |
+
you may not need.</p>
|
176 |
+
<p>Prior to installing demo data, make sure you have recommended plugins installed as mentioned above in
|
177 |
+
the <a href="#install-plugins">Recommended Plugins</a> section.</p>
|
178 |
+
<p>The demo site <strong>sample-data.xml</strong> file is located in the plugin directory created after unzipping the premium bundle. Once you have access to the sample data file, you can install the demo site by visiting <strong> <a href="<?php echo admin_url() . 'import.php'; ?>" target="_blank"><?php echo __('Tools→Import', 'livemesh-vc-addons') ?></a></strong> and click Choose File. Upload the xml file and follow the steps to
|
179 |
+
import. When the demo data is finished importing, you will have many pages that contain elements
|
180 |
+
configured in them. </p>
|
181 |
+
|
182 |
+
|
183 |
+
<hr>
|
184 |
+
<h3 id="plugin-elements">Working with plugin elements<a class="back-to-top" href="#panel"><span
|
185 |
+
class="dashicons dashicons-arrow-up-alt2"></span> Back to top</a></h3>
|
186 |
+
|
187 |
+
<ul>
|
188 |
+
<li>If you are new to drag and drop page building functions of <a href="<?php echo esc_url($visualComposerUrl); ?>" target="_blank">Visual Composer</a> and need help, make sure you checkout the <a
|
189 |
+
href="https://wpbakery.atlassian.net/wiki/display/VC/Visual+Composer+Pagebuilder+for+WordPress"
|
190 |
+
title="Visual Composer Documentation" target="_blank">documentation of the Visual Composer</a> before
|
191 |
+
starting to use this plugin. The site has numerous text as well as video tutorials to help you
|
192 |
+
get a head start on using the plugin.
|
193 |
+
</li>
|
194 |
+
|
195 |
+
<li>Once the Addons for Visual Composer plugin is activated, you should see a menu item <strong> <a href="<?php echo admin_url() . 'admin.php?page=livemesh_vc_addons'; ?>"
|
196 |
+
target="_blank"><?php echo __('VC Addons', 'livemesh-vc-addons') ?></a></strong> in WordPress admin with four sections - Settings, Elements, Debugging and Premium Upgrade.
|
197 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/plugin-settings.png" alt="Visual Composer Addons Settings"></p>
|
198 |
+
|
199 |
+
<p>The settings screen <strong> <a href="<?php echo admin_url() . 'admin.php?page=livemesh_vc_addons'; ?>"
|
200 |
+
target="_blank"><?php echo __('VC Addons→Settings', 'livemesh-vc-addons') ?></a></strong> for the plugin is self-documenting with minimal
|
201 |
+
options. Make sure you choose the theme color scheme in the 'General' tab to help ensure the plugin takes this as the default color for elements like buttons and links which have default color set.</p>
|
202 |
+
<p>During the development phase, it is recommended to not have any of the elements deactivated in the 'Elements' tab of the settings screen.</p>
|
203 |
+
|
204 |
+
</li>
|
205 |
+
|
206 |
+
<li>Once the Addons for Visual Composer plugin is activated, all of the elements built by the plugin become available for drag and drop in the Visual Composer. In
|
207 |
+
the Page edit window, click on the <strong>'Backend Editor'</strong> button below the title field of the page edit window to bring up the page builder controls on
|
208 |
+
the page edit screen.
|
209 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/page-builder-screen.png" alt="Visual Composer Page Builder Screen"></p>
|
210 |
+
</li>
|
211 |
+
|
212 |
+
<li>To add a Livemesh VC addon element, just click on the <strong>'Add Element'</strong> button to bring up the 'Add Element'
|
213 |
+
popup screen of the page builder. The plugin elements are grouped under <strong>'Livemesh VC
|
214 |
+
Addons'</strong> tab on the top. Clicking on a element listed in the popup adds the
|
215 |
+
element to the page builder.
|
216 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/add-element-window.png" alt="Visual Composer Page Builder Addons"></p>
|
217 |
+
</li>
|
218 |
+
|
219 |
+
<li>Hovering over the element added to the page builder, you can view the Edit link. Clicking the
|
220 |
+
element also brings up the edit/configure screen of a element. <strong>Most of the element options are
|
221 |
+
self-documented</strong> but additional help is provided in the below sections for each of the Livemesh
|
222 |
+
elements.
|
223 |
+
|
224 |
+
<p>Once the data required for configuring a element is entered, you can save the changes by
|
225 |
+
clicking on the <strong>'Save Changes'</strong> button for the element.</p>
|
226 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/addon-edit-screen.png" alt="Visual Composer Element Edit Window"></p>
|
227 |
+
|
228 |
+
</li>
|
229 |
+
|
230 |
+
<li>Many of the plugin elements part of this plugin are container elements that involve a child element to be added to the it. For eg., Team element needs multiple team member elements
|
231 |
+
added to it, Testimonials element is made of multiple child testiominial elements, Services element require that you add multiple service elements individually to make up the list of services.
|
232 |
+
|
233 |
+
<p>The container elements are listed under 'Livemesh VC Addons' tab in the 'Add Element' popup screen. Once you add a container element (e.g., Livemesh Testimonials,
|
234 |
+
Livemesh Servies, Livemesh FAQ, Livemesh Features, Livemesh Team etc.), the element display a big plus(+) icon in the page to help add child elements. Clicking on the plus(+) button
|
235 |
+
brings up child element editor popup window. Once you configure and save changes to the child element, the element gets added to the page builder window as contained
|
236 |
+
element part of the parent container element as seen below.</p>
|
237 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/page-builder-screen.png" alt="Visual Composer Addon Edit Window"></p>
|
238 |
+
|
239 |
+
<p>In the page edit screen of the page builder, while the settings for the container element itself can be changed by clicking on the edit icon at the top of the element added,
|
240 |
+
the child elements can be edited by clicking on the edit option available upon hovering over the child elements in the page edit window.</p>
|
241 |
+
|
242 |
+
</li>
|
243 |
+
|
244 |
+
<li>After you hit the <strong>Update</strong> or <strong>Publish</strong> button on the page,the element is then ready for viewing on
|
245 |
+
the frontend page.
|
246 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/addon-rendered.png" alt="Visual Composer Addon Rendered"></p>
|
247 |
+
|
248 |
+
</li>
|
249 |
+
|
250 |
+
</ul>
|
251 |
+
|
252 |
+
|
253 |
+
<p>The below sections provide help on each of the elements built as part of Addons for Visual Composer
|
254 |
+
plugin.</p>
|
255 |
+
|
256 |
+
<hr>
|
257 |
+
<h3 id="heading-element">Heading Addon<a class="back-to-top" href="#panel"> Back to top</a></h3>
|
258 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/heading-addon2.png" alt="Heading Addon Rendered"></p>
|
259 |
+
|
260 |
+
<p>The heading element is perhaps the most frequently used element on a page since it displays a heading
|
261 |
+
at the top of a section.</p>
|
262 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/heading-addon-edit2.png" alt="Heading Addon Edit Window 2"></p>
|
263 |
+
<p>It comes in three styles – Style 1, Style 2 and Style 3 which allow variations of headings displayed
|
264 |
+
in various sections.</p>
|
265 |
+
|
266 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/heading-addon-edit1.png" alt="Heading Addon Edit Window 1"></p>
|
267 |
+
|
268 |
+
<p>The heading consists of the main heading text which is renders as one of the HTML heading tags on the
|
269 |
+
frontend. Additionally, a short text is displayed below the heading and some of the heading styles
|
270 |
+
allow you to input a subtitle which is usually displayed on top of the main heading title.</p>
|
271 |
+
<p>You can choose to align the heading left, right or center with center being the default
|
272 |
+
alignment.</p>
|
273 |
+
|
274 |
+
<hr>
|
275 |
+
<h3 id="services-element">Services Addon<a class="back-to-top" href="#panel"> Back to top</a></h3>
|
276 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/services-addon2.png" alt="Services Addon"></p>
|
277 |
+
|
278 |
+
<p>Many agencies, freelancers, corporates, products/apps require capturing the services provided by the
|
279 |
+
agency or the features of a product. The services element is designed to help users capture these
|
280 |
+
services or features in a multi-column grid.</p>
|
281 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/services-addon-edit.png" alt="Services Addon Container Element"></p>
|
282 |
+
<p>The services element is a container element that requires you to input multiple child service elements
|
283 |
+
that make up the list of services offered by a business or a community.</p>
|
284 |
+
<p>The element supports about 3 different styles (with 2 additional styles in <a href="https://www.livemeshthemes.com/visual-composer-addons/pricing/" title="Addons for Visual Composer Pro" target="_blank">premium version</a> of the
|
285 |
+
plugin) and each of these styles can be customized further by choosing the type of icon desired to
|
286 |
+
represent the service – a font icon or an custom image icon. While the choice of font icons is huge
|
287 |
+
in number and perhaps sufficient for most common services, the icon images can help present the
|
288 |
+
unique nature of the services offered.</p>
|
289 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/services-addon-edit1.png" alt="Services Addon Edit Window 1"></p>
|
290 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/services-addon-edit2.png" alt="Services Addon Edit Window 2"></p>
|
291 |
+
<p>Services element supports the following options –</p>
|
292 |
+
<ul>
|
293 |
+
<li><strong>Columns per row</strong> – Number of services to display per row of services.</li>
|
294 |
+
<li><strong>Icon Custom Size</strong> – If the icon chosen for services is icon font, you can
|
295 |
+
specify a custom size for the font icon in pixels.
|
296 |
+
</li>
|
297 |
+
<li><strong>Icon Custom Color</strong> – Specify a custom color for the font icon.</li>
|
298 |
+
<li><strong>Icon Custom Hover Color</strong> – Specify a custom hover color for the font icon.</li>
|
299 |
+
</ul>
|
300 |
+
|
301 |
+
<p>The <a href="https://www.livemeshthemes.com/visual-composer-addons/pricing/" title="Addons for Visual Composer Pro" target="_blank">premium version</a> of the plugin allows you specify a custom font size, font color and and hover
|
302 |
+
color for the font icon along with providing two additional styles of services/features.</p>
|
303 |
+
|
304 |
+
|
305 |
+
|
306 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/services-addon-edit3.png" alt="Services Addon Edit Window 3"></p>
|
307 |
+
<p>Each of the service requires you to input a title for the service/feature and a short description of
|
308 |
+
the service offered or the product feature. Additionally, each service allows you to enter a font
|
309 |
+
icon or an icon image file to represent that service.</p>
|
310 |
+
|
311 |
+
|
312 |
+
|
313 |
+
<hr>
|
314 |
+
<h3 id="team-members">Team Members<a class="back-to-top" href="#panel"> Back to top</a></h3>
|
315 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/team-member2.jpg" alt="Team Members Addon"></p>
|
316 |
+
|
317 |
+
<p>This element provides an easy way to capture the team members of your organization or an agency.</p>
|
318 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/team-members-edit.png" alt="Team Members Addon Container Element"></p>
|
319 |
+
<p>The Livemesh Team element is a container element that requires you to input multiple child elements for
|
320 |
+
team members that are part of the team/organization.</p>
|
321 |
+
<p>Two different styles are provided with more styles planned in the <a href="https://www.livemeshthemes.com/visual-composer-addons/pricing/" title="Addons for Visual Composer Pro" target="_blank">premium version</a> of the plugin. Most
|
322 |
+
of the styles display the team members in a multi-column grid. The option to specify the number of
|
323 |
+
columns is provided that helps to control the number of team members displayed per row of the team
|
324 |
+
members.</p>
|
325 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/team-members-edit1.png" alt="Team Members Addon Edit Window 1"></p>
|
326 |
+
|
327 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/team-members-edit2.png" alt="Team Members Addon Edit Window 2"></p>
|
328 |
+
<p>The team member details captured include team member name, position, a short description and the email plus social
|
329 |
+
profile of the individual team members.</p>
|
330 |
+
|
331 |
+
<hr>
|
332 |
+
<h3 id="statistics-elements">Statistics Addons<a class="back-to-top" href="#panel"> Back to top</a></h3>
|
333 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/statsbars-piecharts.png" alt="Statistics Addons"></p>
|
334 |
+
|
335 |
+
<p>The plugin features a number of elements that help display statistical information in the form of
|
336 |
+
odometers, piecharts and stats bars. The <a href="https://www.livemeshthemes.com/visual-composer-addons/pricing/" title="Addons for Visual Composer Pro" target="_blank">premium version</a> of the plugin also includes a countdown
|
337 |
+
element that displays a countdown timer for planned events such as product launches or website going
|
338 |
+
live.</p>
|
339 |
+
|
340 |
+
<p>The stats elements Piecharts, Stats Bars and Odometers are container elements that are made of
|
341 |
+
multiple child elements each representing a statistic. You add multiple of them to make a set of animated stats
|
342 |
+
that show up on the screen.</p>
|
343 |
+
<p>Most of these elements are designed to animate the display of the statistical information or numbers
|
344 |
+
when the users scroll down to the section containing the element.</p>
|
345 |
+
<p><strong>Odometers</strong></p>
|
346 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/odometers2.png" alt="Odometer Addon"></p>
|
347 |
+
|
348 |
+
<p>This element displays one or more animated odometer statistics in a multi-column grid. This number
|
349 |
+
statistic requires a start and an end value with a title and icon providing the information about
|
350 |
+
what the number represents – like a download number or number of products sold or customers
|
351 |
+
gained.</p>
|
352 |
+
<p>The element animates from the start value to the end value when the user scrolls down to the section.
|
353 |
+
You can control the number of such odometers displayed per row.</p>
|
354 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/odometers-edit.png" alt="Odometer Edit Window"></p>
|
355 |
+
|
356 |
+
<p><strong>Stats Bars</strong></p>
|
357 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/statsbars-piecharts.png" alt="Stats Bar Piechart Addons"></p>
|
358 |
+
|
359 |
+
<p>Stats Bars capture percentage statistics like coverage area, skills gained, survey findings, usage
|
360 |
+
statistics etc. that typically require bar charts to represent them. Each statistical item requires
|
361 |
+
a percentage value, a title describing the number. The user can choose to display the bar charts in
|
362 |
+
multiple or single color with the help of color choice available with each value input.</p>
|
363 |
+
<p>The element animates from the zero to the percentage value set for the item when the user scrolls down
|
364 |
+
to the section containing the element. The bars are placed one below the other horizontally.</p>
|
365 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/stats-bars-edit.png" alt="Stats Bar Addon Edit Window"></p>
|
366 |
+
|
367 |
+
<p><strong>Piecharts</strong></p>
|
368 |
+
<p>Piecharts provide an alternative way to display percentage stats. When the users scrolls down and the
|
369 |
+
chart becomes visible, the element animates from zero to percentage value provided for the statistic.
|
370 |
+
A bar of user chosen color moves along a track to display the percentage information. An option to
|
371 |
+
specify the number of charts displayed per row is provided.</p>
|
372 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/piecharts-edit.png" alt="Piechart Addon Edit Window"></p>
|
373 |
+
|
374 |
+
<p><strong>Countdown - <span class="pro-feature">Pro!</span></strong></p>
|
375 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/countdown.png" alt="Countdown Addon"></p>
|
376 |
+
|
377 |
+
<p>This element displays a countdown timer for an end date and time specified by the user. This is like a
|
378 |
+
clock ticking to signal the arrival of an event planned for a future date. The user just provides
|
379 |
+
the end date time, a label for the event and element displays the time remaining in days, hours,
|
380 |
+
minutes and seconds, with the timer updated every second on the page.</p>
|
381 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/countdown-edit.png" alt="Countdown Addon Edit Window"></p>
|
382 |
+
|
383 |
+
<hr>
|
384 |
+
<h3 id="testimonials-elements">Testimonials Addons<a class="back-to-top" href="#panel"> Back to top</a></h3>
|
385 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/testimonials.png" alt="Testimonials Addon"></p>
|
386 |
+
|
387 |
+
<p>The plugin features two elements for capturing testimonials received for your product or business or
|
388 |
+
services. Most agencies, corporates, small businesses, freelancers and products/apps require
|
389 |
+
testimonials to displayed prominently on the site to help convert visitors to customers. The two
|
390 |
+
elements provided are elegantly designed to achieve greater conversion rate.</p>
|
391 |
+
<p>The testimonials information include details about the person/company endorsing the product/service;
|
392 |
+
details like name, company, website of this person/organization along with an image representing
|
393 |
+
this person/entity.</p>
|
394 |
+
<p><strong>Testimonials</strong></p>
|
395 |
+
<p>The regular <strong>testimonials element</strong> displays multiple testimonials in a row with the
|
396 |
+
user having the option to specify the number of items per row. This is useful if you need a large
|
397 |
+
number of testimonials to be visible instantly when the user scrolls down to view the testimonials
|
398 |
+
section.</p>
|
399 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/testimonials-edit1.png" alt="Testimonials Addon Edit Window 1"></p>
|
400 |
+
|
401 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/testimonials-edit2.png" alt="Testimonials Addon Edit Window 2"></p>
|
402 |
+
|
403 |
+
<p><strong>Testimonials Slider</strong></p>
|
404 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/testimonials2.png" alt="Testimonials Slider Addon"></p>
|
405 |
+
<p>The <strong>testimonials slider element</strong> is useful for display of endorsements/recommendations
|
406 |
+
with large amount of text for each testimonial. The slider displays the testimonials as a slideshow
|
407 |
+
with multiple element options provided to control/customize this slideshow – options like speed of
|
408 |
+
switching, speed of animation, whether to pause the slideshow on hover, controls needed for manual
|
409 |
+
navigation by the user etc. The slider is completely responsive and touch swipe controls available
|
410 |
+
for easy navigation on smartphones/tablets.</p>
|
411 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/testimonials-slider-edit1.png" alt="Testimonials Slider Edit Window 1"></p>
|
412 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/testimonials-slider-edit2.png" alt="Testimonials Slider Edit Window 2"></p>
|
413 |
+
<p>The testimonials slider provides quite a few options to customize the behavior of the slider. Options include slideshow speed, animation speed, slider navigation contols etc.</p>
|
414 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/testimonials-slider-settings.png" alt="Testimonials Slider Settings"></p>
|
415 |
+
|
416 |
+
<hr>
|
417 |
+
<h3 id="posts-carousel">Posts Carousel<a class="back-to-top" href="#panel"> Back to top</a></h3>
|
418 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/posts-carousel.jpg" alt="Post Carousel Addon"></p>
|
419 |
+
|
420 |
+
<p>The responsive carousel helps display posts or any custom post types like your portfolio entries with
|
421 |
+
controls available for easy navigation of the items displayed. The element features a Posts Query
|
422 |
+
section to help choose posts or custom posts to display. This powerful tool has number of fields to
|
423 |
+
control what gets displayed and in what order.</p>
|
424 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/posts-carousel-edit1.png" alt="Post Carousel Build Query Tool"></p>
|
425 |
+
|
426 |
+
<p>The Posts Query tool has the following options for filtering posts –</p>
|
427 |
+
<ol>
|
428 |
+
<li><strong>Post Types</strong> – Select the custom post type that you need the element for. If none
|
429 |
+
selected, the default Post will be assumed and blog posts will be displayed.
|
430 |
+
</li>
|
431 |
+
<li><strong>Post Count</strong> – Set the number of posts you wish you display in the element. If
|
432 |
+
the element does not support pagination, the number of posts displayed is limited by the number
|
433 |
+
specified here. This is also the number of posts to display per page when the element supports
|
434 |
+
pagination as is the case with Livemesh Grid element. Enter "All" to display all posts.
|
435 |
+
</li>
|
436 |
+
<li><strong>Order By</strong> – Specify the order of the posts displayed - by post date, title, modified date, author
|
437 |
+
menu order, comment count etc.
|
438 |
+
</li>
|
439 |
+
<li><strong>Sort order</strong> – Can be ascending or descending order applied to the Order By paramter above.
|
440 |
+
</li>
|
441 |
+
<li><strong>Individual Posts/Pages/Custom Post Types</strong> – This field enabled you to choose specific
|
442 |
+
posts or custom post types that you would like to display in your element. This helps filter the posts
|
443 |
+
that the user sees as part of the grid. The field autocompletes the post titles you type in this field.
|
444 |
+
</li>
|
445 |
+
<li><strong>Categories</strong> – If you need to filter the posts by specific category, you can specify
|
446 |
+
the same here. The field autocompletes the category names you type in here.
|
447 |
+
</li>
|
448 |
+
<li><strong>Tags</strong> – If you need to filter the posts by specific tag, you can specify
|
449 |
+
the tag names here. The field autocompletes the tag names you type in here.
|
450 |
+
</li>
|
451 |
+
<li><strong>Taxonomies</strong> – If you need to filter the posts by custom taxonomy
|
452 |
+
terms, you can specify the same here. The field autocompletes the terms you type in here.
|
453 |
+
</li>
|
454 |
+
<li><strong>Author</strong> – If you need to limit the posts displayed to certain authors only, you can
|
455 |
+
use this field to specify the chosen authors here by specifying their names.
|
456 |
+
</li>
|
457 |
+
</ol>
|
458 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/posts-carousel-edit2.png" alt="Post Carousel Edit Window"></p>
|
459 |
+
|
460 |
+
<p>The posts carousel has numerous other options to control the display of posts or custom post types.
|
461 |
+
Some of these are –</p>
|
462 |
+
<ul>
|
463 |
+
<li><strong>Choose Taxonomy to display info</strong> – When the post info is displayed, the specific
|
464 |
+
taxonomy you want the info to use. For example, choosing category will display category
|
465 |
+
information for posts while choosing ‘post_tag’ would display the tag information for posts.
|
466 |
+
</li>
|
467 |
+
<li><strong>Link images to Posts</strong> – Make the images link to the posts or custom post types
|
468 |
+
they represent.
|
469 |
+
</li>
|
470 |
+
<li><strong>Display post titles</strong> – Checking this box will display post title below the
|
471 |
+
featured image for the posts or custom post type.
|
472 |
+
</li>
|
473 |
+
<li><strong>Display post excerpt/summary</strong> – Display summary information for the posts below
|
474 |
+
the featured image and post title.
|
475 |
+
</li>
|
476 |
+
<li><strong>Post Meta</strong> – Display post meta information like published date, author name,
|
477 |
+
taxonomy information below the posts. The specific taxonomy chosen above under “Choose Taxonomy
|
478 |
+
to display info” will be used for display taxonomy information.
|
479 |
+
</li>
|
480 |
+
</ul>
|
481 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/posts-carousel-edit3.png" alt="Post Carousel Addon Settings"></p>
|
482 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/posts-carousel-edit4.png" alt="Post Carousel Addon Settings"></p>
|
483 |
+
|
484 |
+
<p><strong>Carousel Settings</strong> – This section has options that control how the carousel is
|
485 |
+
displayed. Options include autoplay speed, gutter value between post items in various resolutions,
|
486 |
+
navigation controls for carousel, number of columns or items to display before making the user to
|
487 |
+
scroll for additional items etc.</p>
|
488 |
+
<ul>
|
489 |
+
<li><strong>Prev/Next Arrows</strong> – Display navigation for the carousel.</li>
|
490 |
+
<li><strong>Show dot indicators for navigation</strong> – Display control navigation or pagination
|
491 |
+
controls for the carousel.
|
492 |
+
</li>
|
493 |
+
<li><strong>Autoplay</strong> – Display carousel as a slideshow.</li>
|
494 |
+
<li><strong>Autoplay speed in ms</strong> – The time between display of each page of images when
|
495 |
+
Autoplay option is enabled.
|
496 |
+
</li>
|
497 |
+
<li><strong>Autoplay animation speed in ms</strong> – The time taken for animation that moves the
|
498 |
+
carousel to next or previous page of items.
|
499 |
+
</li>
|
500 |
+
<li><strong>Pause on mouse hover</strong> – Pause the slideshow if the user has mouse hovered over
|
501 |
+
the carousel contents.
|
502 |
+
</li>
|
503 |
+
<li><strong>Columns per row</strong> – Number of gallery items visible at any given point of time
|
504 |
+
without scrolling.
|
505 |
+
</li>
|
506 |
+
<li><strong>Columns to scroll</strong> – With each scroll action – using the prev/next arrows or the
|
507 |
+
dotted navigation, specify the number of items to scroll for each invocation of the navigation
|
508 |
+
controls.
|
509 |
+
</li>
|
510 |
+
<li><strong>Gutter</strong> – The spacing in pixels between images/videos in the carousel.</li>
|
511 |
+
</ul>
|
512 |
+
|
513 |
+
|
514 |
+
|
515 |
+
<hr>
|
516 |
+
<h3 id="carousel-element">Carousel<a class="back-to-top" href="#panel"> Back to top</a></h3>
|
517 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/generic-carousel.jpg" alt="Generic Carousel Addon"></p>
|
518 |
+
|
519 |
+
<p>Livemesh Carousel is a generic carousel of custom HTML content of your choice. Possibilities are endless – image
|
520 |
+
carousels with textual content describing the images, video carousels, event carousels with link to
|
521 |
+
the events, a carousel of team of volunteers, a collection of books sold on Amazon etc.</p>
|
522 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/livemesh-carousel-edit.png" alt="Generic Carousel Addon Edit Window"></p>
|
523 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/livemesh-carousel-edit1.png" alt="Generic Carousel Addon Edit Window"></p>
|
524 |
+
|
525 |
+
<p>If you need a carousel of custom content HTML of your choice, this element helps achieve the same. For
|
526 |
+
the HTML content, you will need to provide your own custom CSS under Settings for the carousel.
|
527 |
+
While posts carousel helps you display carousel items derived from posts or custom post types, this
|
528 |
+
element lets you display any well-formed HTML content as items in a carousel. You may use the
|
529 |
+
WordPress visual editor to construct the required content. </p>
|
530 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/livemesh-carousel-settings.png" alt="Generic Carousel Settings Window"></p>
|
531 |
+
|
532 |
+
<p>The section ‘Carousel Settings’ has options that control how the carousel is displayed. Options
|
533 |
+
include autoplay speed, gutter value between post items in various resolutions, navigation controls
|
534 |
+
for carousel, number of columns or items to display before making the user to scroll for additional
|
535 |
+
items etc. The carousel settings are explained in the help section above for Posts Carousel.</p>
|
536 |
+
<hr>
|
537 |
+
<h3 id="grid-element">Livemesh Grid<a class="back-to-top" href="#panel"> Back to top</a></h3>
|
538 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/livemesh-grid.jpg" alt="Livemesh Grid Addon"></p>
|
539 |
+
|
540 |
+
<p>Perhaps the most popular and most important of all elements part of all elements part of this plugin,
|
541 |
+
Livemesh Grid helps you build a multi-column grid of posts or custom post types. The posts displayed
|
542 |
+
are filterable by taxonomy terms.</p>
|
543 |
+
|
544 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/livemesh-grid2.jpg" alt="Livemesh Grid Addon"></p>
|
545 |
+
<p>Using the Grid element, you can construct a portfolio of your work/services/products. We recommend you
|
546 |
+
use the popular plugin – <a title="Portfolio Post Type Plugin"
|
547 |
+
href="https://wordpress.org/plugins/portfolio-post-type/">https://wordpress.org/plugins/portfolio-post-type/</a>
|
548 |
+
for building a collection of portfolio entries. Once the portfolio entries are in place, make sure
|
549 |
+
you select Portfolio Post type under Post Type entry in Build Tools window as explained below.</p>
|
550 |
+
|
551 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/livemesh-grid-pagination.jpg" alt="Livemesh Grid Pagination"></p>
|
552 |
+
<p>The <a href="https://www.livemeshthemes.com/visual-composer-addons/pricing/" title="Addons for Visual Composer Pro" target="_blank">premium version</a> of the plugin has support for pagination, lazy load with load more button and
|
553 |
+
lightbox option for images. The additional posts are loaded via AJAX when the user navigates through
|
554 |
+
the pages populated or when the user hits the Load More button.</p>
|
555 |
+
|
556 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/livemesh-grid-loadmore.jpg" alt="Livemesh Grid AJAX Load More"></p>
|
557 |
+
|
558 |
+
<p>The element features a Posts Query section to help choose posts or custom posts to display. This
|
559 |
+
powerful tool has number of fields to control what gets displayed and in what order.</p>
|
560 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/livemesh-grid-build-posts-query.png" alt="Build Post Query Tool"></p>
|
561 |
+
|
562 |
+
<p>The Posts Query tool has the following options for filtering posts –</p>
|
563 |
+
<ol>
|
564 |
+
<li><strong>Post Types</strong> – Select the custom post type that you need the element for. If none
|
565 |
+
selected, the default Post will be assumed and blog posts will be displayed.
|
566 |
+
</li>
|
567 |
+
<li><strong>Post Count</strong> – Set the number of posts you wish you display in the element. If
|
568 |
+
the element does not support pagination, the number of posts displayed is limited by the number
|
569 |
+
specified here. This is also the number of posts to display per page when the element supports
|
570 |
+
pagination as is the case with Livemesh Grid element. Enter "All" to display all posts.
|
571 |
+
</li>
|
572 |
+
<li><strong>Order By</strong> – Specify the order of the posts displayed - by post date, title, modified date, author
|
573 |
+
menu order, comment count etc.
|
574 |
+
</li>
|
575 |
+
<li><strong>Sort order</strong> – Can be ascending or descending order applied to the Order By paramter above.
|
576 |
+
</li>
|
577 |
+
<li><strong>Individual Posts/Pages/Custom Post Types</strong> – This field enabled you to choose specific
|
578 |
+
posts or custom post types that you would like to display in your element. This helps filter the posts
|
579 |
+
that the user sees as part of the grid. The field autocompletes the post titles you type in this field.
|
580 |
+
</li>
|
581 |
+
<li><strong>Categories</strong> – If you need to filter the posts by specific category, you can specify
|
582 |
+
the same here. The field autocompletes the category names you type in here.
|
583 |
+
</li>
|
584 |
+
<li><strong>Tags</strong> – If you need to filter the posts by specific tag, you can specify
|
585 |
+
the tag names here. The field autocompletes the tag names you type in here.
|
586 |
+
</li>
|
587 |
+
<li><strong>Taxonomies</strong> – If you need to filter the posts by custom taxonomy
|
588 |
+
terms, you can specify the same here. The field autocompletes the terms you type in here.
|
589 |
+
</li>
|
590 |
+
<li><strong>Author</strong> – If you need to limit the posts displayed to certain authors only, you can
|
591 |
+
use this field to specify the chosen authors here by specifying their names.
|
592 |
+
</li>
|
593 |
+
</ol>
|
594 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/livemesh-grid-edit1.png" alt="Livemesh Grid Edit Window"></p>
|
595 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/livemesh-grid-edit2.png" alt="Livemesh Grid Edit Window"></p>
|
596 |
+
|
597 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/livemesh-grid-edit3.png" alt="Livemesh Grid Edit Window"></p>
|
598 |
+
|
599 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/livemesh-grid-edit4.png" alt="Livemesh Grid Edit Window"></p>
|
600 |
+
|
601 |
+
|
602 |
+
<p>The grid element has numerous other options to control the display of posts or custom post types. Some
|
603 |
+
of these are –</p>
|
604 |
+
|
605 |
+
<ul>
|
606 |
+
<li><strong>Choose Taxonomy to display and filter on</strong> – The terms of this taxonomy chosen
|
607 |
+
will be used for filtering the posts if ‘Filterable’ option is checked. When the post info is
|
608 |
+
displayed, the specific taxonomy you want the info to use. For example, choosing category will
|
609 |
+
make the posts filterable on category while choosing ‘post_tag’ would make the posts filterable
|
610 |
+
by post tags instead of category.
|
611 |
+
</li>
|
612 |
+
<li><strong>Choose a Layout for the grid</strong> – You may choose Masonry or Fit Rows layout for
|
613 |
+
the grid.
|
614 |
+
</li>
|
615 |
+
<li><strong>Pagination options (<span class="pro-feature">Pro!</span>)</strong>– Choose pagination type or choose None if no
|
616 |
+
pagination is desired. <strong>If you choose Paged or Load More option, make sure the ‘Post per
|
617 |
+
page’ field value is set in the Build Query window to control number of posts to display per
|
618 |
+
page.</strong><br>
|
619 |
+
– If the Pagination option chosen is Paged, the grid displays a paginated grid of entries with
|
620 |
+
links to various pages displayed at the bottom of the grid, provided sufficient number of
|
621 |
+
entries of this post type has been created by the user and the Posts Per Page value is set to a
|
622 |
+
lower value than the number of entries created.<br>
|
623 |
+
– If the Pagination option chosen is Load More, the grid displays a Load More button below the
|
624 |
+
grid of posts/portfolio with an option count of remaining posts/post types yet to loaded. When
|
625 |
+
the users hits the Load More button, a number of posts/portfolio entries equal to ‘Posts per
|
626 |
+
Page’ value will be lazy loaded into the element via AJAX. Upon loading all of the remaining
|
627 |
+
entries, the Load More button is no longer shown.<br>
|
628 |
+
Do check the option ‘Display count of posts yet to be loaded with the Load More button’ to
|
629 |
+
display the remaining post count with the Load More button.
|
630 |
+
</li>
|
631 |
+
<li><strong>Link images to Posts/Portfolio</strong> – Make the post images link to the posts or
|
632 |
+
custom post types they represent.
|
633 |
+
</li>
|
634 |
+
<li><strong>Enable Lightbox Gallery (<span class="pro-feature">Pro!</span>)</strong>– If checked, the images part of the grid entries
|
635 |
+
will have a lightbox option enabled to display a gallery of post images in a popup display.
|
636 |
+
</li>
|
637 |
+
<li><strong>Display post/project titles</strong> – Checking this box will display post/portfolio
|
638 |
+
entry title below the featured image for the posts or custom post type.
|
639 |
+
</li>
|
640 |
+
<li><strong>Display post/portfolio excerpt/summary</strong> – Display summary information for the
|
641 |
+
posts/portfolio items below the featured image and post title.
|
642 |
+
</li>
|
643 |
+
<li><strong>Post Meta</strong> – Display post meta information like published date, author name,
|
644 |
+
taxonomy information below the posts. The specific taxonomy chosen above under “Choose Taxonomy
|
645 |
+
to display and filter on” will be used for display taxonomy information.
|
646 |
+
</li>
|
647 |
+
<li><strong>Columns per row</strong> – The number of posts/portfolio items to display in each row on
|
648 |
+
desktop.
|
649 |
+
</li>
|
650 |
+
<li><strong>Gutter options</strong> – The spacing in pixels between each entry in the grid. If you
|
651 |
+
need a packed layout, specify zero here.
|
652 |
+
</li>
|
653 |
+
</ul>
|
654 |
+
|
655 |
+
|
656 |
+
<hr>
|
657 |
+
<h3 id="clients-element">Clients<a class="back-to-top" href="#panel"> Back to top</a></h3>
|
658 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/clients-addon.jpg" alt="Clients Addon Edit Window"></p>
|
659 |
+
|
660 |
+
<p>Whether you are freelancer or run a small business, agency or represent a big corporate house, you
|
661 |
+
have a list of clients that you have worked with. This element lets you create a list of these
|
662 |
+
clients with banner images representing these clients.</p>
|
663 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/clients-edit1.png" alt="Clients Addon Edit Window"></p>
|
664 |
+
|
665 |
+
|
666 |
+
<p>The clients element is a container element that requires you to input multiple child elements
|
667 |
+
representing individual clients that make up the list of clients to be displayed on the frontend.</p>
|
668 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/clients-edit2.png" alt="Clients Addon Edit Window"></p>
|
669 |
+
|
670 |
+
<p>For each of the client, you provide a client name, a banner image for the client and a URL for their
|
671 |
+
website. The client name is shown on user hovering over the banner image and title text is
|
672 |
+
optionally a link pointing to the website of the client, if that link is provided by the user.</p>
|
673 |
+
<p>The collection of clients will be displayed in a multi-column grid. The ‘Columns per Row’ option lets
|
674 |
+
you control the number of client entries per row of clients displayed.</p>
|
675 |
+
|
676 |
+
<hr>
|
677 |
+
<h3 id="pricing-table">Pricing Table<a class="back-to-top" href="#panel"> Back to top</a></h3>
|
678 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/pricing-plan.png" alt="Pricing Plan Addon"></p>
|
679 |
+
|
680 |
+
<p>The pricing plans offered by your business can be captured with pricing plan element. The pricing
|
681 |
+
plans are displayed in a multi-column grid.</p>
|
682 |
+
|
683 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/pricing-plan-edit1.png" alt="Pricing Plan Editing"></p>
|
684 |
+
|
685 |
+
<p>The pricing plan element is a container element that is made up of child elements each of which represent
|
686 |
+
a pricing plan.</p>
|
687 |
+
|
688 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/pricing-plan-edit2.png" alt="Pricing Plan Edit Window 1"></p>
|
689 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/pricing-plan-edit3.png" alt="Pricing Plan Edit Window 2"></p>
|
690 |
+
|
691 |
+
<p>For each of the pricing plan, provide the following information –</p>
|
692 |
+
<ul>
|
693 |
+
<li><strong>Pricing Plan Title</strong> – The title for the pricing plan like Standard, Premium,
|
694 |
+
Developer etc.
|
695 |
+
</li>
|
696 |
+
<li><strong>Tagline Text</strong> – Provide any subtitle or taglines like “Most Popular”, “Best
|
697 |
+
Value”, “Best Selling”, “Most Flexible” etc. that you would like to use for this pricing plan.
|
698 |
+
Usually displayed above the pricing plan title.
|
699 |
+
</li>
|
700 |
+
<li><strong>Image</strong> – Optional image or icon to represent the pricing plan.</li>
|
701 |
+
<li><strong>Price Tag</strong> – This is where you specify the actual price tag for the plan along
|
702 |
+
with the currency. HTML is allowed.
|
703 |
+
</li>
|
704 |
+
<li><strong>Text for Pricing Link/Button</strong> – Specify the text for the link or a button
|
705 |
+
displayed at the bottom of the pricing plan. This link takes the user to the purchase page.
|
706 |
+
</li>
|
707 |
+
<li><strong>URL for the Pricing link/button</strong> – Provide the target URL for the link or the
|
708 |
+
button shown for this pricing plan. This link takes the user to the purchase page. Check the
|
709 |
+
option ‘Open Button URL in a new window’ if you need the link to open the target page in a new
|
710 |
+
tab or window of the browser.
|
711 |
+
</li>
|
712 |
+
<li><strong>Highlight Pricing Plan</strong> – Specify if you want to highlight the pricing plan.
|
713 |
+
This would be most likely plan your user would choose to sign up for.
|
714 |
+
</li>
|
715 |
+
<li><strong>Pricing Columns per row</strong> – The number of pricing plans to display per row of
|
716 |
+
plans. Most businesses choose to fit in all of their plans into a single row.
|
717 |
+
</li>
|
718 |
+
<li><strong>Pricing Plan Details</strong> – Enter the content for the pricing plan that include information
|
719 |
+
about individual features of the pricing plan. For prebuilt styling, enter shortcodes content like -
|
720 |
+
[lvca_pricing_item title="Storage Space" value="50 GB"]
|
721 |
+
[lvca_pricing_item title="Video Uploads" value="50"]
|
722 |
+
[lvca_pricing_item title="Portfolio Items" value="20"].
|
723 |
+
You can also enter the pricing plan content in custom forms like HTML lists but you need to provide CSS
|
724 |
+
required to style the list items.
|
725 |
+
</li>
|
726 |
+
</ul>
|
727 |
+
|
728 |
+
<hr>
|
729 |
+
<h3 id="tabs-accordions">Tabs and Accordions<a class="back-to-top" href="#panel"> Back to top</a></h3>
|
730 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/tab-addon.jpg" alt="Tabs Addons"></p>
|
731 |
+
|
732 |
+
<p>A large collection of finely designed styles are supported by tabs function of the plugin. Tabs can be of two
|
733 |
+
types – vertical and regular horizontal style tabs. </p>
|
734 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/tabs-addon2.jpg" alt="Tabs Addons"></p>
|
735 |
+
<p>There are a total of 10 tab styles to choose
|
736 |
+
from. There is simply no another plugin or theme that supports so many elegant styles for tabs.</p>
|
737 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/tabs-edit1.png" alt="Tabs Addon Edit Window"></p>
|
738 |
+
|
739 |
+
<p>Tabs are container elements with each of the tabs being child elements that require two attributes – a tab title and tab content. For styles that support icons, choice of
|
740 |
+
displaying a font icon or an icon image along with the tab title is supported.</p>
|
741 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/tabs-edit2.png" alt="Tabs Addon Edit Window"></p>
|
742 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/tabs-edit3.png" alt="Tabs Addon Edit Window"></p>
|
743 |
+
<p>Mobile Resolution – Indicate the device resolution in pixels for displaying the tab in responsive
|
744 |
+
mobile mode. The tabs are designed to work well in all device resolutions without sacrificing
|
745 |
+
usability.</p>
|
746 |
+
<p><strong>Accordions</strong></p>
|
747 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/accordions.png" alt="Accordion Addon"></p>
|
748 |
+
|
749 |
+
<p>Accordions support panels that are collapsed by default. The panels can be opened by clicking on
|
750 |
+
panel title bar.</p>
|
751 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/accordion-edit1.png" alt="Accordion Addon Edit Window"></p>
|
752 |
+
|
753 |
+
<p>Each of the panels part of an accordion require the user to input a tab title and tab content for the child elements of the container accordion element.</p>
|
754 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/accordion-edit2.png" alt="Accordion Addon Edit Window"></p>
|
755 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/accordion-edit3.png" alt="Accordion Addon Edit Window"></p>
|
756 |
+
<p>Option to allow multiple panels to be open is provided.</p>
|
757 |
+
|
758 |
+
<hr>
|
759 |
+
<h3 id="button-element">Buttons – <span class="pro-feature">Pro!</span><a class="back-to-top" href="#panel"> Back to top</a></h3>
|
760 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/buttons.png" alt="Buttons Addon"></p>
|
761 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/buttons2.png" alt="Buttons Addon"></p>
|
762 |
+
|
763 |
+
<p>The plugin lets you create buttons of multiple colors that you would use in your site. The supported
|
764 |
+
colors are Orange, Blue, Teal, Cyan, Green, Pink, Black, Red, Transparent and Semi Transparent (for
|
765 |
+
dark backgrounds). You can choose a custom color and custom hover color too for the button to create
|
766 |
+
a button of your chosen color.</p>
|
767 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/button-edit1.png" alt="Button Addon Edit Window 1"></p>
|
768 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/button-edit2.png" alt="Button Addon Edit Window 2"></p>
|
769 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/button-edit3.png" alt="Button Addon Edit Window 3"></p>
|
770 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/button-edit4.png" alt="Button Addon Edit Window 4"></p>
|
771 |
+
|
772 |
+
<p>You may choose to create a button of Default color which is the color derived from the Theme Color
|
773 |
+
set in the plugin options.</p>
|
774 |
+
<p>Additional options provided are button size, rounded and alignment – center, right, left and
|
775 |
+
None.</p>
|
776 |
+
<p>You can choose to display an icon along with the button text. The icon can be a icon font or an
|
777 |
+
image.</p>
|
778 |
+
<p>The element options are mostly self-explanatory and you can view a live preview of the buttons <a
|
779 |
+
title="Visual Composer Button Addon Demo"
|
780 |
+
href="https://www.livemeshthemes.com/visual-composer-addons/buttons/">here</a>.</p>
|
781 |
+
|
782 |
+
|
783 |
+
<hr>
|
784 |
+
<h3 id="icon-list">Icon List – <span class="pro-feature">Pro!</span><a class="back-to-top" href="#panel"> Back to top</a></h3>
|
785 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/icon-lists.png" alt="Icon Lists Addon"></p>
|
786 |
+
|
787 |
+
<p>The icon list element is a container element that is extremely useful for creating a list of icons with optional links to sites or
|
788 |
+
pages that the icons represent. Examples include social media profiles, icon lists representing
|
789 |
+
payment options or download platforms or a quick summary of services.</p>
|
790 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/icon-list-edit1.png" alt="Icon Lists Addon Editing"></p>
|
791 |
+
<p>Each of the icons, which are child elements part of the list, have a title, optional target URL and the icon itself can be a font
|
792 |
+
icon or an custom image. The title for the icon is displayed as a tooltip on mouse hover.</p>
|
793 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/icon-list-edit3.png" alt="Icon Lists Addon Edit Window 3"></p>
|
794 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/icon-list-edit2.png" alt="Icon Lists Addon Edit Window 2"></p>
|
795 |
+
|
796 |
+
<p>Following options are available –</p>
|
797 |
+
<ul>
|
798 |
+
<li><strong>Icon/Image size in pixels</strong> – Custom size of the icons displayed.</li>
|
799 |
+
<li><strong>Icon color</strong> – If the icons chosen are font icons, you may specify a custom color
|
800 |
+
for the icons.
|
801 |
+
</li>
|
802 |
+
<li><strong>Icon hover color</strong> – The color of the font icons on mouse hover.</li>
|
803 |
+
<li><strong>Open the links in new window</strong> – If a target URL is specified for a link, whether
|
804 |
+
the links should open in a new window.
|
805 |
+
</li>
|
806 |
+
<li><strong>Alignment</strong> – The icon list can be chosen to align at the center, left, right of
|
807 |
+
it’s position in a page.
|
808 |
+
</li>
|
809 |
+
</ul>
|
810 |
+
|
811 |
+
|
812 |
+
<hr>
|
813 |
+
<h3 id="image-slider">Image Slider – <span class="pro-feature">Pro!</span><a class="back-to-top" href="#panel"> Back to top</a></h3>
|
814 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-slider-flex.jpg" alt="Image Slider Addon"></p>
|
815 |
+
|
816 |
+
<p>The image slider lets you create a responsive slider of images with a multiple options to customize
|
817 |
+
the function and presentation of the slider. The slider can be used anywhere on a page and can also
|
818 |
+
function as the main slider of the page displayed at the top of the page. The slider supports
|
819 |
+
multitude of options but for most users, the default options provided should suffice.</p>
|
820 |
+
|
821 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-slider-edit1.png" alt="Image Slider Addon Edit Window"></p>
|
822 |
+
|
823 |
+
<p>The slider element is a container VC element that requires you to input multiple child slide elements
|
824 |
+
that are part of the slider.</p>
|
825 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-slider-settings1.png" alt="Image Slider Addon Settings Window 1"></p>
|
826 |
+
|
827 |
+
<ul>
|
828 |
+
<li><strong>Class</strong> – Set a unique CSS class for the slider. (optional). This lets you
|
829 |
+
customize the slider content, specially the slider caption content via Custom CSS.
|
830 |
+
</li>
|
831 |
+
<li><strong>Slider Type</strong> – The slider provides you with the choice of four popular slider
|
832 |
+
libraries – Flex Slider, Nivo Slider, Slick Slider and Responsive Slider.
|
833 |
+
</li>
|
834 |
+
<li><strong>Flex Slider</strong> – Perhaps the most popular of all and actively maintained by the
|
835 |
+
open source community. Provides features like touch navigation, thumbnail navigation and many
|
836 |
+
options to customize the slider.
|
837 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-slider-flex.jpg" alt="Image Flex Slider Addon"></p>
|
838 |
+
</li>
|
839 |
+
<li><strong>Nivo Slider</strong> – Has been a very popular slider for many years now and loved by
|
840 |
+
many for number of beautiful transition effects that it supports.
|
841 |
+
|
842 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-slider-nivo.jpg" alt="Nivo Image Slider Addon"></p>
|
843 |
+
</li>
|
844 |
+
<li><strong>Slick Slider</strong> – The most popular open source library for building carousels.
|
845 |
+
Responsive controls like touch swipe controls, desktop mouse dragging makes it a compelling
|
846 |
+
choice.
|
847 |
+
</li>
|
848 |
+
<li><strong>Responsive Slider</strong> – Simplest and most lightweight of all sliders (just 1 KB in
|
849 |
+
size minified and gzipped). If you need a slider that uses minimal resources, this option should
|
850 |
+
be worth trying out.
|
851 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-slider-responsive.jpg" alt="Responsive Image Slider Addon"></p>
|
852 |
+
</li>
|
853 |
+
<li><strong>Choose Caption Style</strong> – There are two styles of captions – one center aligned
|
854 |
+
and the other left aligned. While center aligned caption is more suited to situation where the
|
855 |
+
slider image is functioning more like a background for the caption that is a call to action or a
|
856 |
+
message to the visitor, the style 2 is useful when images speak for themselves and captions
|
857 |
+
describe the images.
|
858 |
+
</li>
|
859 |
+
</ul>
|
860 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-slider-edit2.png" alt="Image Slider Addon Edit Window"></p>
|
861 |
+
<p>Each slide for the slider allow for following options –</p>
|
862 |
+
<ul>
|
863 |
+
<li><strong>Slide Image</strong> – The image for the slide itself.</li>
|
864 |
+
<li><strong>URL to link to by image and caption heading</strong>. (optional) – Specify the URL to
|
865 |
+
which the slide image and caption heading should link to.
|
866 |
+
</li>
|
867 |
+
</ul>
|
868 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-slider-edit3.png" alt="Image Slider Addon Edit Window"></p>
|
869 |
+
<p>Slider Caption Details</p>
|
870 |
+
<ul>
|
871 |
+
<li><strong>Caption Heading</strong> – The heading title for the caption</li>
|
872 |
+
<li><strong>Caption Sub-heading(Optional)</strong> – Subtitle for the caption.</li>
|
873 |
+
<li><strong>Button text</strong> – The text for the button displayed below the caption.</li>
|
874 |
+
<li><strong>Button URL</strong> – URL for the button.</li>
|
875 |
+
<li><strong>Open URL in a new window</strong> – Specify the button click opens the link in a new
|
876 |
+
browser window.
|
877 |
+
</li>
|
878 |
+
<li><strong>Color</strong> – The color of the button. The supported colors are Orange, Blue, Teal,
|
879 |
+
Cyan, Green, Pink, Black, Red, Transparent and Semi Transparent.
|
880 |
+
</li>
|
881 |
+
<li><strong>Button Size</strong> – Can be large, medium or small.</li>
|
882 |
+
<li><strong>Display rounded button</strong> – Make the button display with rounded edges.</li>
|
883 |
+
</ul>
|
884 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-slider-settings2.png" alt="Image Slider Addon Settings Window 2"></p>
|
885 |
+
|
886 |
+
<p><strong>Slider Settings</strong> – The element has a number of options available for customizing the
|
887 |
+
slider experience –</p>
|
888 |
+
<ul>
|
889 |
+
<li><strong>Animation</strong> – Can be Slide or Fade. Applies when the slider type chosen is Flex
|
890 |
+
Slider or the Slick slider. Nivo supports a number of custom transitions while Responsive slider
|
891 |
+
is fade only.
|
892 |
+
</li>
|
893 |
+
<li><strong>Sliding Direction</strong> – Can be vertical or horizontal. Supported by Flex and Slick
|
894 |
+
sliders.
|
895 |
+
</li>
|
896 |
+
<li><strong>Control navigation</strong> – Create navigation for paging control of each slide.</li>
|
897 |
+
<li><strong>Direction navigation</strong> – Create navigation for previous/next navigation.</li>
|
898 |
+
<li><strong>Thumbnails Navigation</strong> – Use slider image thumbnails for slider navigation.
|
899 |
+
Supported by Flex and Nivo sliders.
|
900 |
+
</li>
|
901 |
+
<li><strong>Randomize slides</strong> – Display slides in random order.</li>
|
902 |
+
<li><strong>Pause on hover</strong> – Pause the slideshow when hovering over slider, then resume
|
903 |
+
when no longer hovering.
|
904 |
+
</li>
|
905 |
+
<li><strong>Pause on action</strong> – Pause the slideshow when interacting with control elements.
|
906 |
+
Supported by Flex Slider only.
|
907 |
+
</li>
|
908 |
+
<li><strong>Loop</strong> – Should the animation loop?</li>
|
909 |
+
<li><strong>Slideshow or Autoplay</strong> – Animate slider automatically without user intervention.
|
910 |
+
</li>
|
911 |
+
<li><strong>Slideshow speed (default – 5000)</strong> Set the speed of the slideshow cycling, in
|
912 |
+
milliseconds when the Slideshow option is checked.
|
913 |
+
</li>
|
914 |
+
<li><strong>Animation speed</strong> – Set the speed of animations like fade or slide, in
|
915 |
+
milliseconds.
|
916 |
+
</li>
|
917 |
+
</ul>
|
918 |
+
|
919 |
+
<hr>
|
920 |
+
<h3 id="image-video-gallery">Image/Video Gallery – <span class="pro-feature">Pro!</span><a class="back-to-top" href="#panel"> Back to top</a></h3>
|
921 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-gallery-dark.jpg" alt="Image Gallery Addon"></p>
|
922 |
+
|
923 |
+
<p>This powerful element lets you create a gallery of images or videos displayed in a multi-column grid.
|
924 |
+
An instance of this element can capture a portfolio of work like that of a photographer or graphic
|
925 |
+
designer/artist.</p>
|
926 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/video-gallery.jpg" alt="Video Gallery Addon"></p>
|
927 |
+
<p>It can be used to create a gallery of videos uploaded to YouTube/Vimeo – useful for video bloggers,
|
928 |
+
video tutorial sites, video marketers, small businesses or websites with a major presence on
|
929 |
+
YouTube/Vimeo. The videos can be played with a single click of the play button on the gallery item
|
930 |
+
as seen in this <a title="Video Gallery"
|
931 |
+
href="https://www.livemeshthemes.com/visual-composer-addons/video-gallery/">demo page</a>.
|
932 |
+
</p>
|
933 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-gallery-edit1.png" alt="Image Gallery Addon Edit Window"></p>
|
934 |
+
<p>The image gallery element is a container element that requires you to add child elements representing gallery items.</p>
|
935 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-gallery-edit2.png" alt="Image Gallery Addon Edit Window"></p>
|
936 |
+
<p>The configuration for creating a video gallery is similar to that of image gallery; a video URL would be required along with image that acts as a placeholder.</p>
|
937 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/video-gallery-edit2.png" alt="Video Gallery Addon Edit Window"></p>
|
938 |
+
|
939 |
+
<p>Each of the gallery items capture following information –</p>
|
940 |
+
<ul>
|
941 |
+
<li><strong>Item Type</strong> – Can be a Image or YouTube Video or Vimeo Video.</li>
|
942 |
+
<li><strong>Item Label</strong> – The label or name for the gallery item. This label is displayed on
|
943 |
+
mouse hover over the image.
|
944 |
+
</li>
|
945 |
+
<li><strong>Choose Media</strong> – The image for the gallery item. If item type chosen is YouTube
|
946 |
+
or Vimeo video, the image will be used as a placeholder image for video.
|
947 |
+
</li>
|
948 |
+
<li><strong>Item Tag(s)</strong> – One or more comma separated tags for the gallery item. Useful
|
949 |
+
when items are made filterable.
|
950 |
+
</li>
|
951 |
+
<li><strong>Page URL</strong> – The URL of the page to which the image gallery item points to
|
952 |
+
(optional).
|
953 |
+
</li>
|
954 |
+
<li><strong>Video URL</strong> – If the item represents a Vimeo or YouTube video, provide the URL to
|
955 |
+
the video. Any gallery item representing a video is given a play button. Upon clicking the play
|
956 |
+
button, the Vimeo/YouTube video opens up in a lightbox window for playing.
|
957 |
+
</li>
|
958 |
+
</ul>
|
959 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-gallery-settings1.png" alt="Image Gallery Addon Edit Window 3"></p>
|
960 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-gallery-settings2.png" alt="Image Gallery Addon Pagination"></p>
|
961 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-gallery-settings3.png" alt="Image Gallery Addon Settings"></p>
|
962 |
+
|
963 |
+
<p>The Gallery element comes with following settings –</p>
|
964 |
+
<ul>
|
965 |
+
<li><strong>Filterable</strong> – If the videos or images are tagged, the items can be made
|
966 |
+
filterable on the tags specified by the user just like a Portfolio Grid.
|
967 |
+
</li>
|
968 |
+
<li><strong>Layout for the grid</strong> – Comes with Masonry and FitRows option.</li>
|
969 |
+
<li><strong>Pagination</strong> – Choose pagination type or choose None if no pagination is desired.
|
970 |
+
Make sure you enter the items per page value in the option ‘Number of items to be displayed per
|
971 |
+
page and on each load more invocation’ field below to control number of items to display per
|
972 |
+
page.
|
973 |
+
</li>
|
974 |
+
|
975 |
+
<li><strong>Columns per row</strong> – Specify the number of images/videos to display per row of the
|
976 |
+
grid.
|
977 |
+
</li>
|
978 |
+
<li><strong>Enable Lightbox Gallery</strong> – The lightbox for the image opens up a bigger image in
|
979 |
+
a popup window. You can navigate among the gallery items here.
|
980 |
+
</li>
|
981 |
+
<li><strong>Gutter</strong> – The spacing between columns that contain image/video in the grid. You
|
982 |
+
can control the spacing/gutter at various resolutions like those of tablet/smartphone.
|
983 |
+
</li>
|
984 |
+
</ul>
|
985 |
+
|
986 |
+
<hr>
|
987 |
+
<h3 id="image-video-carousel">Image/Video Carousel – <span class="pro-feature">Pro!</span><a class="back-to-top" href="#panel"> Back to top</a></h3>
|
988 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-carousel.jpg" alt="Image Carousel Addon"></p>
|
989 |
+
|
990 |
+
<p>You can create a carousel of images/videos (or a combination of both) for showcasing your work or
|
991 |
+
video content uploaded to Vimeo/YouTube. An instance of this element can capture a portfolio of work
|
992 |
+
like that of a photographer or graphic designer/artist.</p>
|
993 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/video-carousel.jpg" alt="Video Carousel Addon"></p>
|
994 |
+
<p>It can be used to create a carousel of videos uploaded to YouTube/Vimeo – useful for video bloggers,
|
995 |
+
video tutorial sites, video marketers, small businesses or websites with a major presence on
|
996 |
+
YouTube/Vimeo. The videos can be played with a single click of the play button on the gallery item
|
997 |
+
as seen in this <a title="Video Gallery"
|
998 |
+
href="https://www.livemeshthemes.com/visual-composer-addons/video-gallery/">demo page</a>.
|
999 |
+
</p>
|
1000 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-carousel-edit1.png" alt="Image Carousel Addon Edit Window"></p>
|
1001 |
+
|
1002 |
+
<p>The gallery carousel element is a container element that requires you to add child elements representing carousel items.</p>
|
1003 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-carousel-edit2.png" alt="Image Carousel Addon Edit Window"></p>
|
1004 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/video-carousel-edit1.png" alt="Video Carousel Addon Edit Window"></p>
|
1005 |
+
<p>The option for creation of video carousel is similar to that of image carousel - requires input of URL for the Vimeo/YouTube video along with placeholder image. </p>
|
1006 |
+
|
1007 |
+
<p>Each of the gallery items in the carousel capture following information –</p>
|
1008 |
+
<ol>
|
1009 |
+
<li><strong>Item Type</strong> – Can be a Image or YouTube Video or Vimeo Video.</li>
|
1010 |
+
<li><strong>Item Label</strong> – The label or name for the gallery item. This label is displayed on
|
1011 |
+
mouse hover over the image.
|
1012 |
+
</li>
|
1013 |
+
<li><strong>Choose Media</strong> – The image for the gallery item. If item type chosen is YouTube
|
1014 |
+
or Vimeo video, the image will be used as a placeholder image for video.
|
1015 |
+
</li>
|
1016 |
+
<li><strong>Item Tag(s)</strong> – One or more comma separated tags for the gallery item. Useful
|
1017 |
+
when items are made filterable.
|
1018 |
+
</li>
|
1019 |
+
<li><strong>Page URL</strong> – The URL of the page to which the image gallery item points to
|
1020 |
+
(optional).
|
1021 |
+
</li>
|
1022 |
+
<li><strong>Video URL</strong> – If the item represents a Vimeo or YouTube video, provide the URL to
|
1023 |
+
the video. Any gallery item representing a video is given a play button. Upon clicking the play
|
1024 |
+
button, the Vimeo/YouTube video opens up in a lightbox window for playing.
|
1025 |
+
</li>
|
1026 |
+
</ol>
|
1027 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-carousel-settings1.png" alt="Image Carousel Addon Settings Window"></p>
|
1028 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/image-carousel-settings2.png" alt="Image Carousel Addon Settings Window"></p>
|
1029 |
+
|
1030 |
+
<p>The section ‘Carousel Settings’ has options that control how the carousel is displayed. Options
|
1031 |
+
include autoplay speed, gutter value between post items in various resolutions, navigation controls
|
1032 |
+
for carousel, number of columns or items to display before making the user to scroll for additional
|
1033 |
+
items etc.</p>
|
1034 |
+
<ul>
|
1035 |
+
<li><strong>Enable Lightbox Gallery</strong> – Enable lightbox gallery for images. The lightbox for
|
1036 |
+
the image opens up a bigger image in a popup window. You can navigate among the gallery items
|
1037 |
+
here.
|
1038 |
+
</li>
|
1039 |
+
<li><strong>Prev/Next Arrows</strong> – Display navigation for the carousel.</li>
|
1040 |
+
<li><strong>Show dot indicators for navigation</strong> – Display control navigation or pagination
|
1041 |
+
controls for the carousel.
|
1042 |
+
</li>
|
1043 |
+
<li><strong>Autoplay</strong> – Display carousel as a slideshow.</li>
|
1044 |
+
<li><strong>Autoplay speed in ms</strong> – The time between display of each page of images when
|
1045 |
+
Autoplay option is enabled.
|
1046 |
+
</li>
|
1047 |
+
<li><strong>Autoplay animation speed in ms</strong> – The time taken for animation that moves the
|
1048 |
+
carousel to next or previous page of items.
|
1049 |
+
</li>
|
1050 |
+
<li><strong>Pause on mouse hover</strong> – Pause the slideshow if the user has mouse hovered over
|
1051 |
+
the carousel contents.
|
1052 |
+
</li>
|
1053 |
+
<li><strong>Columns per row</strong> – Number of gallery items visible at any given point of time
|
1054 |
+
without scrolling.
|
1055 |
+
</li>
|
1056 |
+
<li><strong>Columns to scroll</strong> – With each scroll action – using the prev/next arrows or the
|
1057 |
+
dotted navigation, specify the number of items to scroll for each invocation of the navigation
|
1058 |
+
controls.
|
1059 |
+
</li>
|
1060 |
+
<li><strong>Gutter</strong> – The spacing in pixels between images/videos in the carousel.</li>
|
1061 |
+
</ul>
|
1062 |
+
|
1063 |
+
<hr>
|
1064 |
+
<h3 id="faq-element">FAQ- <span class="pro-feature">Pro!</span><a class="back-to-top" href="#panel"> Back to top</a></h3>
|
1065 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/faq-addon.png" alt="FAQ Addon"></p>
|
1066 |
+
|
1067 |
+
<p>The FAQ makes the task of creating a FAQ for a site effortless. Just enter FAQ items and choose the
|
1068 |
+
number of items to show per row of content and you are done.</p>
|
1069 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/faq-edit1.png" alt="FAQ Addon Edit Window"></p>
|
1070 |
+
|
1071 |
+
<p>The FAQ element is a container element that is made up of multiple child elements each of which capture a single question part of the FAQ.</p>
|
1072 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/faq-edit2.png" alt="FAQ Addon Edit Window"></p>
|
1073 |
+
|
1074 |
+
<p>Each FAQ item requires two input – question and an answer for the question part of the FAQ.</p>
|
1075 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/faq-settings.png" alt="FAQ Addon Settings Window"></p>
|
1076 |
+
<p><strong>Do note that the Accordion function of the plugin too can be used to create a nicely formed FAQ for a
|
1077 |
+
site.</strong></p>
|
1078 |
+
|
1079 |
+
<hr>
|
1080 |
+
<h3 id="features-element">Features- <span class="pro-feature">Pro!</span><a class="back-to-top" href="#panel"> Back to top</a></h3>
|
1081 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/features-addon.jpg" alt="Features Addon"></p>
|
1082 |
+
|
1083 |
+
<p>Features element lets you showcase a number of things. Below are some examples although possibilities are many - </p>
|
1084 |
+
|
1085 |
+
<ul>
|
1086 |
+
<li>Features of a product like a mobile app or other types of software.</li>
|
1087 |
+
<li>Showcase features provided by an online service or a tool.</li>
|
1088 |
+
<li>List a set of services an agency or organization may provide.</li>
|
1089 |
+
<li>Describe any type of physical or digital goods you are trying to sell.</li>
|
1090 |
+
</ul>
|
1091 |
+
|
1092 |
+
|
1093 |
+
|
1094 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/features-edit1.png" alt="Features Addon Edit Window 1"></p>
|
1095 |
+
<p>The features element is a container element with each of the child elements capturing title and description for the single feature of a product/service.</p>
|
1096 |
+
|
1097 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/features-edit2.png" alt="Features Addon Edit Window 2"></p>
|
1098 |
+
|
1099 |
+
<p>Any feature part of the features element requires you input an icon image or a screeshot which
|
1100 |
+
represents the feature you are describing. Aside from the icon or screenshot, you will need to
|
1101 |
+
provide details like heading title, subtitle and description of the feature.</p>
|
1102 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/features-settings.png" alt="Features Addon Edit Window"></p>
|
1103 |
+
|
1104 |
+
<p>The features element has an option to apply popular tile-based design to the features list (screenshot
|
1105 |
+
below). The examples of this is seen in the demo site showcasing the features element.</p>
|
1106 |
+
|
1107 |
+
<p><img class="alignnone size-large" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/features-addon2.jpg" alt="Tiled Features Addon"></p>
|
1108 |
+
|
1109 |
+
<hr>
|
1110 |
+
<h3 id="plugin-support">Plugin Support</span><a class="back-to-top" href="#panel"> Back to top</a></h3>
|
1111 |
+
<p>If you have queries or issues to report related to the plugin, feel free to contact us via our dedicated support forum.</p>
|
1112 |
+
|
1113 |
+
</div>
|
1114 |
+
|
1115 |
+
<!-- Updates panel -->
|
1116 |
+
<div id="plugins-panel" class="panel-left">
|
1117 |
+
<h4>Required/Recommended Plugins</h4>
|
1118 |
+
|
1119 |
+
<p>Below is a list of required/recommended plugins to install that will help you get the most out of the plugin. While Visual Composer plugin is required, the rest of the plugins are optional but we recommend you install these plugins if you plan to replicate the plugin demo site by importing the sample data.</p>
|
1120 |
+
|
1121 |
+
<hr/>
|
1122 |
+
|
1123 |
+
<h4><?php _e('Visual Composer', 'livemesh-vc-addons'); ?>
|
1124 |
+
<?php if (!class_exists('Vc_Manager')) { ?>
|
1125 |
+
<a class="button button-secondary thickbox onclick" href="<?php echo esc_url($visualComposerUrl); ?>"
|
1126 |
+
title="<?php esc_attr_e('Install Visual Composer', 'livemesh-vc-addons'); ?>"><span
|
1127 |
+
class="dashicons dashicons-download"></span> <?php _e('Install Now', 'livemesh-vc-addons'); ?></a>
|
1128 |
+
<?php }
|
1129 |
+
else { ?>
|
1130 |
+
<span class="button button-secondary disabled"><span
|
1131 |
+
class="dashicons dashicons-yes"></span> <?php _e('Installed', 'livemesh-vc-addons'); ?></span>
|
1132 |
+
<?php } ?>
|
1133 |
+
</h4>
|
1134 |
+
|
1135 |
+
<p><strong>Visual Composer</strong> is perhaps the most popular page builder tool for WordPress powering
|
1136 |
+
over 1.5+ million sites. You can build any layout you can imagine with intuitive drag and drop builder
|
1137 |
+
with little or no programming knowledge.</p>
|
1138 |
+
<p>All of the elements part of Addons for Visual Composer plugin were built using the API provided
|
1139 |
+
by the Visual Composer plugin and hence this plugin must be installed and activated on the site prior
|
1140 |
+
to using our plugin.</p>
|
1141 |
+
<p>All of the pages of our demo site for
|
1142 |
+
the plugin have been built using this page builder. You should install and activate this plugin
|
1143 |
+
prior to replicating the plugin demo site by importing the sample data provided.</p>
|
1144 |
+
|
1145 |
+
<hr/>
|
1146 |
+
|
1147 |
+
<h4><?php _e('Portfolio Post Type', 'livemesh-vc-addons'); ?>
|
1148 |
+
<?php if (!class_exists('Portfolio_Post_Type')) { ?>
|
1149 |
+
<a class="button button-secondary thickbox onclick" href="<?php echo esc_url($portfolioPostTypeUrl); ?>"
|
1150 |
+
title="<?php esc_attr_e('Install Portfolio Post Type', 'livemesh-vc-addons'); ?>"><span
|
1151 |
+
class="dashicons dashicons-download"></span> <?php _e('Install Now', 'livemesh-vc-addons'); ?></a>
|
1152 |
+
<?php }
|
1153 |
+
else { ?>
|
1154 |
+
<span class="button button-secondary disabled"><span
|
1155 |
+
class="dashicons dashicons-yes"></span> <?php _e('Installed', 'livemesh-vc-addons'); ?></span>
|
1156 |
+
<?php } ?>
|
1157 |
+
</h4>
|
1158 |
+
|
1159 |
+
<p><strong>Portfolio Post Type</strong> is a free plugin that registers a custom post type for
|
1160 |
+
portfolio items. It also registers separate portfolio taxonomies for tags and categories. The
|
1161 |
+
Portfolio grid instances showcased on our demo site was built using custom post types registered
|
1162 |
+
by Portfolio Post Type plugin.</p>
|
1163 |
+
</div><!-- .panel-left -->
|
1164 |
+
|
1165 |
+
<!-- Support panel -->
|
1166 |
+
<div id="support-panel" class="panel-left">
|
1167 |
+
<ul id="top" class="anchor-nav">
|
1168 |
+
<li>
|
1169 |
+
<a href="#faq-compatibility"><strong>Does it work with the theme that I am using?</strong></a>
|
1170 |
+
</li>
|
1171 |
+
<li>
|
1172 |
+
<a href="#faq-dark-version"><strong>How to enable the dark version for any element?</strong></a>
|
1173 |
+
</li>
|
1174 |
+
<li>
|
1175 |
+
<a href="#faq-portfolio-grid"><strong>My portfolio does not show any items.</strong></a>
|
1176 |
+
</li>
|
1177 |
+
</ul>
|
1178 |
+
|
1179 |
+
<h3 id="faq-compatibility">Does it work with the theme that I am using?</h3>
|
1180 |
+
|
1181 |
+
<p>Our tests indicate that the elements work well with most themes that are well coded. You may need some
|
1182 |
+
minor custom CSS with themes that hijack the styling for heading tags by using !important
|
1183 |
+
keyword.</p>
|
1184 |
+
<p>Some themes override default templates provided by Visual Composer. The themes that override VC Row
|
1185 |
+
template may require you to manually set the attributes required for the dark version (see below).</p>
|
1186 |
+
|
1187 |
+
<p>The demo site is best recreated with a theme that supports a full width page template without
|
1188 |
+
sidebars. The elements can still be used in the pages of default template.</p>
|
1189 |
+
|
1190 |
+
|
1191 |
+
<hr/>
|
1192 |
+
|
1193 |
+
<h3 id="faq-dark-version">How to enable the dark version for any element?</h3>
|
1194 |
+
|
1195 |
+
<p>In Visual Composer page builder, add a row wrapper for the element, edit row and check the option
|
1196 |
+
‘Dark Background?’ at the end of General tab of the row or an inner row element.</p>
|
1197 |
+
|
1198 |
+
<p>For themes that override the VC row template with one of their own, you may need to add a custom
|
1199 |
+
class ‘lvca-dark-bg’ manually to the VC row wrapper element to activate the dark version of an element.</p>
|
1200 |
+
|
1201 |
+
<hr/>
|
1202 |
+
|
1203 |
+
<h3 id="faq-portfolio-grid">My portfolio grid does not show any items.</h3>
|
1204 |
+
|
1205 |
+
<p>Pls install and activate the <a href="https://wordpress.org/plugins/portfolio-post-type/" title="Portfolio Post Type">Portfolio Post Type plugin</a> to enable custom post type Portfolio.
|
1206 |
+
</p>
|
1207 |
+
|
1208 |
+
<hr/>
|
1209 |
+
</div><!-- .panel-left support -->
|
1210 |
+
|
1211 |
+
<!-- Updates panel -->
|
1212 |
+
<div id="updates-panel" class="panel-left">
|
1213 |
+
|
1214 |
+
|
1215 |
+
<h3>1.5</h3>
|
1216 |
+
<ul>
|
1217 |
+
<li>Added - Detailed documentation for all addon elements</li>
|
1218 |
+
<li>Added - Plugin options panel for enabling or disabling addons along with other options.</li>
|
1219 |
+
<li>Added - Ability to enter Custom CSS in plugin options</li>
|
1220 |
+
<li>Added - Default theme color option for addons</li>
|
1221 |
+
<li>Added - Support for lightweight Portfolio Post Type plugin. Jetpack custom post types module no longer recommended.</li>
|
1222 |
+
<li>Fixed - The grid heading was not being displayed</li>
|
1223 |
+
<li>Some styling improvements and fixes</li>
|
1224 |
+
</ul>
|
1225 |
+
<h3>1.4</h3>
|
1226 |
+
<ul>
|
1227 |
+
<li>Added - Left, right and center alignment option to the heading element</li>
|
1228 |
+
<li>Added - Styling for services when font icons are chosen instead of image icons</li>
|
1229 |
+
<li>Fixed - The testimonials slider content not aligned to the center</li>
|
1230 |
+
<li>Fixed - The tab title width was fixed with no wrapping</li>
|
1231 |
+
<li>Updated - The isotope and imagesloaded JS libraries.</li>
|
1232 |
+
</ul>
|
1233 |
+
<h3>1.3</h3>
|
1234 |
+
<ul>
|
1235 |
+
<li>Fixed - Check for page id when displaying posts/pages in a grid to avoid infinite loop</li>
|
1236 |
+
<li>Fixed - Tabs not processing shortcode content</li>
|
1237 |
+
<li>Fixed - Accordion/Toggle element not processing shortcode content</li>
|
1238 |
+
</ul>
|
1239 |
+
<h3>1.2</h3>
|
1240 |
+
<ul>
|
1241 |
+
<li>Fixed PHP warnings raised in certain themes that customize VC.</li>
|
1242 |
+
<li>Performed compatibility checks with a number of premium themes; fixed any issues found.</li>
|
1243 |
+
<li>Compatibility fixes along with some minor styling tweaks for tabs, accordion, carousel and portfolio/post grid elements.</li>
|
1244 |
+
</ul>
|
1245 |
+
<h3>1.1</h3>
|
1246 |
+
<ul>
|
1247 |
+
<li>New elements - Responsive Tabs and Accordion of variety of styles</li>
|
1248 |
+
<li>Fixed a bug that caused many elements to become uneditable in VC editor</li>
|
1249 |
+
<li>New services element style</li>
|
1250 |
+
<li>Ability to choose entry meta contents for carousel and grid</li>
|
1251 |
+
<li>Ability to set a link to the clients website in clients element</li>
|
1252 |
+
<li>Email icon restored for team profiles element</li>
|
1253 |
+
<li>Fixed some bugs, incompatibilities and design improvements</li>
|
1254 |
+
</ul>
|
1255 |
+
<h3>1.0</h3>
|
1256 |
+
<ul>
|
1257 |
+
<li>Initial release.</li>
|
1258 |
+
</ul>
|
1259 |
+
</div><!-- .panel-left updates -->
|
1260 |
+
|
1261 |
+
<div class="panel-right">
|
1262 |
+
|
1263 |
+
<div class="panel-inner">
|
1264 |
+
|
1265 |
+
<div class="panel-aside banner">
|
1266 |
+
<a href="https://www.livemeshthemes.com/visual-composer-addons/pricing/" title="Purchase Now"><img class="dashboard-image"
|
1267 |
+
src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/dashboard/purchase-banner1.jpg"
|
1268 |
+
alt="Sale Banner"></a>
|
1269 |
+
</div>
|
1270 |
+
|
1271 |
+
<!-- Knowledge base -->
|
1272 |
+
<div class="panel-aside">
|
1273 |
+
<h4><?php _e('Why upgrade to Premium version?', 'livemesh-vc-addons'); ?></h4>
|
1274 |
+
<p><?php _e('Premium version offers multiple benefits - more addon elements, advanced features for addons including those part of the free plugin and priority support through a dedicated support forum.', 'livemesh-vc-addons'); ?></p>
|
1275 |
+
|
1276 |
+
<a class="button button-primary"
|
1277 |
+
href="<?php echo admin_url() . 'admin.php?page=livemesh_vc_addons_pro_upgrade'; ?>"
|
1278 |
+
title="<?php esc_attr_e('Know More', 'livemesh-vc-addons'); ?>"><?php _e('Know More Details', 'livemesh-vc-addons'); ?></a>
|
1279 |
+
</div><!-- .panel-aside knowledge base -->
|
1280 |
+
|
1281 |
+
</div><!-- .panel-inner -->
|
1282 |
+
</div><!-- .panel-right -->
|
1283 |
+
</div><!-- .panel -->
|
1284 |
+
</div><!-- .panels -->
|
1285 |
+
</div><!-- .livemesh-doc -->
|
admin/views/premium-upgrade.php
ADDED
@@ -0,0 +1,615 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// Exit if accessed directly
|
4 |
+
if (!defined('ABSPATH')) {
|
5 |
+
exit;
|
6 |
+
}
|
7 |
+
|
8 |
+
// Theme info
|
9 |
+
$plugin = get_plugin_data(LVCA_PLUGIN_FILE);
|
10 |
+
|
11 |
+
|
12 |
+
?>
|
13 |
+
|
14 |
+
<div class="livemesh-doc">
|
15 |
+
|
16 |
+
<h2 class="notices"></h2>
|
17 |
+
|
18 |
+
|
19 |
+
<div class="pricing-content clear">
|
20 |
+
<div id="plans" class="content-wrapper clear">
|
21 |
+
<div class="plans-wrapper clear">
|
22 |
+
<div class="plan-intro">
|
23 |
+
<div class="w100 clear"><img src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/dashboard/logo-light.png" class="mb30">
|
24 |
+
<p>A huge collection of Premium addons for Visual Composer. Building a beautiful website is as easy as drag and drop.</p></div>
|
25 |
+
</div>
|
26 |
+
<div class="plans">
|
27 |
+
<div class="content-wrapper flex-wrap">
|
28 |
+
<div class="plan plan1 even flex-col">
|
29 |
+
<div class="w100 clear"><h3>Lite</h3>
|
30 |
+
<p class="mb20 text">All the great features and addons you need to get started on creating a beautiful website.</p>
|
31 |
+
<h4 class="b c-wh price">FREE</h4>
|
32 |
+
<div class="action clear"><a href="https://wordpress.org/plugins/addons-for-visual-composer/" class="btn bg-gr center" title="Addons for Visual Composer Download">Download now</a></div>
|
33 |
+
</div>
|
34 |
+
</div>
|
35 |
+
<div class="plan plan2 flex-col">
|
36 |
+
<div class="w100 clear"><h3>Premium</h3>
|
37 |
+
<p class="mb20 text">More features and additional addons to build a professional website without switching your WP theme.</p>
|
38 |
+
<h4 class="b price c-wh">$19</h4>
|
39 |
+
<div class="action clear"><a href="https://www.livemeshthemes.com/visual-composer-addons/pricing/" class="btn center bg-cy">Purchase Now</a></div>
|
40 |
+
</div>
|
41 |
+
</div>
|
42 |
+
</div>
|
43 |
+
</div>
|
44 |
+
</div>
|
45 |
+
</div>
|
46 |
+
</div>
|
47 |
+
<div class="pricing-content clear">
|
48 |
+
<div id="compare" class="content-wrapper pt0 clear">
|
49 |
+
<div class="compare-wrapper clear">
|
50 |
+
<div class="benefits"><h4>Compare features</h4>
|
51 |
+
<ul>
|
52 |
+
<li><span class="help dashicons dashicons-editor-help"></span>
|
53 |
+
<div class="text">Premium quality Addons</div>
|
54 |
+
<div class="tooltip hide">
|
55 |
+
<div><p>Exquisitely designed premium quality addons for Visual Composer Page Builder.</div>
|
56 |
+
</div>
|
57 |
+
</li>
|
58 |
+
<li><span class="help dashicons dashicons-editor-help"></span>
|
59 |
+
<div class="text">Page Builder Elements</div>
|
60 |
+
<div class="tooltip hide">
|
61 |
+
<div><p>Large collection of plugin addons with their multiple styles are page builder elements that provide ALL the tools you need to come up with a dream website of yours by just drag, drop and configure. <a target="_blank" href="https://www.livemeshthemes.com/visual-composer-addons/">Live Demo</a></p></div>
|
62 |
+
</div>
|
63 |
+
</li>
|
64 |
+
<li><span class="help dashicons dashicons-editor-help"></span>
|
65 |
+
<div class="text">Dark Version</div>
|
66 |
+
<div class="tooltip hide">
|
67 |
+
<div><p>The plugin comes with dark versions for the bundled addons.</p></div>
|
68 |
+
</div>
|
69 |
+
</li>
|
70 |
+
<li><span class="help dashicons dashicons-editor-help"></span>
|
71 |
+
<div class="text">Posts/Portfolio Grid</div>
|
72 |
+
<div class="tooltip hide">
|
73 |
+
<div><p>The PRO version comes with advanced grid functions like pagination, lazy load via AJAX, lightbox support etc. <a target="_blank" href="https://www.livemeshthemes.com/visual-composer-addons/portfolio-grid-pro/">Live Demo</a></p></div>
|
74 |
+
</div>
|
75 |
+
</li>
|
76 |
+
<li><span class="help dashicons dashicons-editor-help"></span>
|
77 |
+
<div class="text">Demo Site Replication</div>
|
78 |
+
<div class="tooltip hide">
|
79 |
+
<div><p>Premium version comes with sample data XML bundled to get a head start on the plugin by import of demo data on our site.</p></div>
|
80 |
+
</div>
|
81 |
+
</li>
|
82 |
+
<li><span class="help dashicons dashicons-editor-help"></span>
|
83 |
+
<div class="text">Grids with AJAX Pagination</div>
|
84 |
+
<div class="tooltip hide">
|
85 |
+
<div><p>Multiple pages of posts/portfolio/image/video grid loaded inline without page refresh. Showcase your entire work anywhere on the site. <a target="_blank" href="https://www.livemeshthemes.com/visual-composer-addons/portfolio-grid-pro/">Live Demo</a></p></div>
|
86 |
+
</div>
|
87 |
+
</li>
|
88 |
+
<li><span class="help dashicons dashicons-editor-help"></span>
|
89 |
+
<div class="text">Advanced Grid with Lazy Load</div>
|
90 |
+
<div class="tooltip hide">
|
91 |
+
<div><p>The grid elements are loaded on demand with each press of a Load More button that displays a count of remaining posts. <a target="_blank" href="https://www.livemeshthemes.com/visual-composer-addons/portfolio-grid-pro/">Live Demo</a></p></div>
|
92 |
+
</div>
|
93 |
+
</li>
|
94 |
+
<li><span class="help dashicons dashicons-editor-help"></span>
|
95 |
+
<div class="text">Lightbox Support</div>
|
96 |
+
<div class="tooltip hide">
|
97 |
+
<div><p>Magnific Popup plugin integrated for fast and smooth lightbox support for posts/portfolio or image/video grid elements.</p>
|
98 |
+
</div>
|
99 |
+
</div>
|
100 |
+
</li>
|
101 |
+
<li><span class="help dashicons dashicons-editor-help"></span>
|
102 |
+
<div class="text">Customization Options</div>
|
103 |
+
<div class="tooltip hide">
|
104 |
+
<div><p>Premium version include more customization options like icon font size, color, hover color etc.</p>
|
105 |
+
</div>
|
106 |
+
</div>
|
107 |
+
</li>
|
108 |
+
<li><span class="help dashicons dashicons-editor-help"></span>
|
109 |
+
<div class="text">Animations</div>
|
110 |
+
<div class="tooltip hide">
|
111 |
+
<div><p>Choose from over <strong>40+ custom animations</strong> for most addons (excludes sliders, carousels and grid).</p>
|
112 |
+
</div>
|
113 |
+
</div>
|
114 |
+
</li>
|
115 |
+
<li><span class="help dashicons dashicons-editor-help"></span>
|
116 |
+
<div class="text">Advanced Image Slider</div>
|
117 |
+
<div class="tooltip hide">
|
118 |
+
<div><p>Responsive slider with choice of Nivo, Flex, Slick and Ultra Lightweight slider types. Comes with multiple caption styles, thumbnail navigation and detailed customization of slider speed and controls. <a target="_blank" href="https://www.livemeshthemes.com/visual-composer-addons/livemesh-sliders/">Live Demo</a></p>
|
119 |
+
</div>
|
120 |
+
</div>
|
121 |
+
</li>
|
122 |
+
<li><span class="help dashicons dashicons-editor-help"></span>
|
123 |
+
<div class="text">Image Gallery</div>
|
124 |
+
<div class="tooltip hide">
|
125 |
+
<div><p>Create a beautiful yet responsive gallery with support for tagging, linking, filtering, labels, lazy load of images with Load More and pagination. <a target="_blank" href="https://www.livemeshthemes.com/visual-composer-addons/image-gallery/">Live Demo</a></p></div>
|
126 |
+
</div>
|
127 |
+
</li>
|
128 |
+
<li><span class="help dashicons dashicons-editor-help"></span>
|
129 |
+
<div class="text">YouTube/Vimeo Video Gallery</div>
|
130 |
+
<div class="tooltip hide">
|
131 |
+
<div><p>Essential tool for video bloggers, video marketers, musicians and other sites with video content. Tags, filters, external linking, labels, pagination and lazy load via AJAX supported. <a target="_blank" href="https://www.livemeshthemes.com/visual-composer-addons/video-gallery/">Live Demo</a></p></div>
|
132 |
+
</div>
|
133 |
+
</li>
|
134 |
+
<li><span class="help dashicons dashicons-editor-help"></span>
|
135 |
+
<div class="text">Advanced Image Carousel</div>
|
136 |
+
<div class="tooltip hide">
|
137 |
+
<div><p>Advanced carousel with touch/swipe/drag/paged/click navigation. Extensive customization for responsiveness, animation/slideshow speed, gutter, looping etc. <a target="_blank" href="https://www.livemeshthemes.com/visual-composer-addons/gallery-carousel/">Live Demo</a></p></div>
|
138 |
+
</div>
|
139 |
+
</li>
|
140 |
+
<li><span class="help dashicons dashicons-editor-help"></span>
|
141 |
+
<div class="text">YouTube/Vimeo Video Carousel</div>
|
142 |
+
<div class="tooltip hide">
|
143 |
+
<div><p>Perfect for showcasing a select collection of videos with filters, tags, external links, labels, touch/swipe/mouse drag/click navigation, paging and lightbox support. <a target="_blank" href="https://www.livemeshthemes.com/visual-composer-addons/gallery-carousel/">Live Demo</a></p></div>
|
144 |
+
</div>
|
145 |
+
</li>
|
146 |
+
<li><span class="help dashicons dashicons-editor-help"></span>
|
147 |
+
<div class="text">Features List</div>
|
148 |
+
<div class="tooltip hide">
|
149 |
+
<div><p>List the product features or services offered in style. <a target="_blank" href="https://www.livemeshthemes.com/visual-composer-addons/features/">Live Demo</a></p></div>
|
150 |
+
</div>
|
151 |
+
</li>
|
152 |
+
<li><span class="help dashicons dashicons-editor-help"></span>
|
153 |
+
<div class="text">Dedicated Support Forum</div>
|
154 |
+
<div class="tooltip hide">
|
155 |
+
<div><p>Customers of PRO version get access to a dedicated support forum with public/private tickets, searchable content and threads which are answered within 24 hours.</p></div>
|
156 |
+
</div>
|
157 |
+
</li>
|
158 |
+
<li><span class="help dashicons dashicons-editor-help"></span>
|
159 |
+
<div class="text">Priority Support</div>
|
160 |
+
<div class="tooltip hide">
|
161 |
+
<div><p>The experience and expertize gained by providing support for over 11,000 customers for our paid themes is available to you. Private tickets let you work directly with our support staff by providing your site details.</p></div>
|
162 |
+
</div>
|
163 |
+
</li>
|
164 |
+
</ul>
|
165 |
+
</div>
|
166 |
+
<div class="plans">
|
167 |
+
<div class="content-wrapper">
|
168 |
+
<div class="plan plan1 even"><h4>Lite</h4>
|
169 |
+
<ul>
|
170 |
+
<li>
|
171 |
+
<div class="dashicons dashicons-yes"></div>
|
172 |
+
<span class="m-feature m">Premium quality Addons</span>
|
173 |
+
<div class="tooltip hide">
|
174 |
+
<p>Exquisitely designed premium quality addons for Visual Composer Page Builder.</p>
|
175 |
+
</div>
|
176 |
+
</li>
|
177 |
+
<li>
|
178 |
+
<div class="dashicons dashicons-yes m"></div>
|
179 |
+
<span class="m-feature m">Page Builder Elements</span>
|
180 |
+
<div class="m-tooltip hide"><p>Essential addons include Services, Team, Testimonials, Clients, Pricing, Statistics, Tabs, Accordions, Carousels and Grid.</p></div>
|
181 |
+
<span class="message">Essentials</span> <span class="help dashicons dashicons-editor-help"></span>
|
182 |
+
<div class="tooltip hide">
|
183 |
+
<p>Essential addons include Services, Team, Testimonials, Clients, Pricing, Statistics, Tabs, Accordions, Carousels and Grid.</p>
|
184 |
+
</div>
|
185 |
+
</li>
|
186 |
+
<li>
|
187 |
+
<div class="dashicons dashicons-yes"></div>
|
188 |
+
<span class="m-feature m">Dark Version</span>
|
189 |
+
<div class="tooltip hide">
|
190 |
+
<p>Both Lite and Premium versions include dark versions for the bundled addons.</p>
|
191 |
+
</div>
|
192 |
+
</li>
|
193 |
+
<li>
|
194 |
+
<div class="dashicons dashicons-yes m"></div>
|
195 |
+
<span class="m-feature m">Posts/Portfolio Grid</span>
|
196 |
+
<div class="m-tooltip hide"><p>Construct a responsive and filterable grid of posts or custom post types like portfolio entries.</p></div>
|
197 |
+
<span class="message">Basic</span> <span class="help dashicons dashicons-editor-help"></span>
|
198 |
+
<div class="tooltip hide">
|
199 |
+
<p>Construct a responsive and filterable grid of posts or custom post types like portfolio entries.</p>
|
200 |
+
</div>
|
201 |
+
</li>
|
202 |
+
<li>
|
203 |
+
<div class="dashicons dashicons-no-alt"></div>
|
204 |
+
<span class="m-feature m">Demo Site Replication</span>
|
205 |
+
<div class="tooltip hide">
|
206 |
+
<p>Premium version comes with sample data XML bundled to get a head start on the plugin by import of demo data on our site.</p>
|
207 |
+
</div>
|
208 |
+
</li>
|
209 |
+
<li>
|
210 |
+
<div class="dashicons dashicons-no-alt"></div>
|
211 |
+
<span class="m-feature m">Grids with AJAX Pagination</span>
|
212 |
+
<div class="tooltip hide">
|
213 |
+
<p>Multiple pages of posts/portfolio/image/video grid loaded inline without page refresh. Showcase your entire work anywhere on the site.</p>
|
214 |
+
</div>
|
215 |
+
</li>
|
216 |
+
<li>
|
217 |
+
<div class="dashicons dashicons-no-alt"></div>
|
218 |
+
<span class="m-feature m">Advanced Grid with Lazy Load</span>
|
219 |
+
<div class="tooltip hide">
|
220 |
+
<p>The grid elements are loaded on demand with each press of a Load More button that displays a count of remaining posts.</p>
|
221 |
+
</div>
|
222 |
+
</li>
|
223 |
+
<li>
|
224 |
+
<div class="dashicons dashicons-no-alt"></div>
|
225 |
+
<span class="m-feature m">Lightbox Support</span>
|
226 |
+
<div class="tooltip hide">
|
227 |
+
<p>Magnific Popup plugin integrated for fast and smooth lightbox support for posts/portfolio or image/video grid elements.</p>
|
228 |
+
</div>
|
229 |
+
</li>
|
230 |
+
<li>
|
231 |
+
<div class="dashicons dashicons-no-alt"></div>
|
232 |
+
<span class="m-feature m">Customization Options</span>
|
233 |
+
<div class="tooltip hide">
|
234 |
+
<p>Premium version include more customization options like icon font size, color, hover color etc.</p>
|
235 |
+
</div>
|
236 |
+
</li>
|
237 |
+
<li>
|
238 |
+
<div class="dashicons dashicons-no-alt"></div>
|
239 |
+
<span class="m-feature m">Animations</span>
|
240 |
+
<div class="tooltip hide">
|
241 |
+
<p>Choose from over <strong>40+ custom animations</strong> for most addons (excludes sliders, carousels and grid).</p>
|
242 |
+
</div>
|
243 |
+
</li>
|
244 |
+
<li>
|
245 |
+
<div class="dashicons dashicons-no-alt"></div>
|
246 |
+
<span class="m-feature m">Advanced Image Slider</span>
|
247 |
+
<div class="tooltip hide">
|
248 |
+
<p>Responsive slider with choice of Nivo, Flex, Slick and Ultra Lightweight slider types. Comes with multiple caption styles, thumbnail navigation and detailed customization of slider speed and controls.</p>
|
249 |
+
</div>
|
250 |
+
</li>
|
251 |
+
<li>
|
252 |
+
<div class="dashicons dashicons-no-alt"></div>
|
253 |
+
<span class="m-feature m">Image Gallery</span>
|
254 |
+
<div class="tooltip hide">
|
255 |
+
<p>Create a beautiful yet responsive gallery with support for tagging, linking, filtering, labels, lazy load of images with Load More and pagination.</p>
|
256 |
+
</div>
|
257 |
+
</li>
|
258 |
+
<li>
|
259 |
+
<div class="dashicons dashicons-no-alt"></div>
|
260 |
+
<span class="m-feature m">YouTube/Vimeo Video Gallery</span>
|
261 |
+
<div class="tooltip hide">
|
262 |
+
<p>Essential tool for video bloggers, video marketers, musicians and other sites with video content. Tags, filters, external linking, labels, pagination and lazy load via AJAX supported.</p>
|
263 |
+
</div>
|
264 |
+
</li>
|
265 |
+
<li>
|
266 |
+
<div class="dashicons dashicons-no-alt"></div>
|
267 |
+
<span class="m-feature m">Advanced Image Carousel</span>
|
268 |
+
<div class="tooltip hide">
|
269 |
+
<p>Advanced carousel with touch/swipe/drag/paged/click navigation. Extensive customization for responsiveness, animation/slideshow speed, gutter, looping etc.</p>
|
270 |
+
</div>
|
271 |
+
</li>
|
272 |
+
<li>
|
273 |
+
<div class="dashicons dashicons-no-alt"></div>
|
274 |
+
<span class="m-feature m">YouTube/Vimeo Video Carousel</span>
|
275 |
+
<div class="tooltip hide">
|
276 |
+
<p>Perfect for showcasing a select collection of videos with filters, tags, external links, labels, touch/swipe/mouse drag/click navigation, paging and lightbox support.</p>
|
277 |
+
</div>
|
278 |
+
</li>
|
279 |
+
<li>
|
280 |
+
<div class="dashicons dashicons-no-alt"></div>
|
281 |
+
<span class="m-feature m">Features List</span>
|
282 |
+
<div class="tooltip hide">
|
283 |
+
<p>Display a list the product features or services offered in style.</p>
|
284 |
+
</div>
|
285 |
+
</li>
|
286 |
+
<li>
|
287 |
+
<div class="dashicons dashicons-no-alt"></div>
|
288 |
+
<span class="m-feature m">Dedicated Support Forum</span>
|
289 |
+
<div class="tooltip hide">
|
290 |
+
<p>Customers of PRO version get access to a dedicated support forum with public/private tickets, searchable content and threads which are answered within 24 hours.</p>
|
291 |
+
</div>
|
292 |
+
</li>
|
293 |
+
<li>
|
294 |
+
<div class="dashicons dashicons-no-alt"></div>
|
295 |
+
<span class="m-feature m">Priority Support</span>
|
296 |
+
<div class="tooltip hide">
|
297 |
+
<p>The experience and expertize gained by providing support for over 11,000 customers for our paid themes is available to you. Private tickets let you work directly with our support staff by providing your site details.</p>
|
298 |
+
</div>
|
299 |
+
</li>
|
300 |
+
</ul>
|
301 |
+
<div class="action clear"><a href="https://wordpress.org/plugins/addons-for-visual-composer/" class="btn bg-gr center" title="Addons for Visual Composer Download">Download now</a></div>
|
302 |
+
</div>
|
303 |
+
<div class="plan plan2"><h4>PRO</h4>
|
304 |
+
<ul>
|
305 |
+
<li>
|
306 |
+
<div class="dashicons dashicons-yes"></div>
|
307 |
+
<span class="m-feature m">Premium quality Addons</span>
|
308 |
+
<div class="tooltip hide">
|
309 |
+
<p>Exquisitely designed premium quality addons for Visual Composer Page Builder..</p>
|
310 |
+
</div>
|
311 |
+
</li>
|
312 |
+
<li>
|
313 |
+
<div class="dashicons dashicons-yes m"></div>
|
314 |
+
<span class="m-feature m">Page Builder Elements</span>
|
315 |
+
<div class="m-tooltip hide"><p>Along with the essential web building tools bundled with free version, the PRO version comes with additional advanced addons, functions and customizations detailed below.</p></div>
|
316 |
+
<span class="message">Professional</span> <span class="help dashicons dashicons-editor-help"></span>
|
317 |
+
<div class="tooltip hide">
|
318 |
+
<p>Along with the essential web building tools bundled with free version, the PRO version comes with additional advanced addons, functions and customizations detailed below.</p>
|
319 |
+
</div>
|
320 |
+
</li>
|
321 |
+
<li>
|
322 |
+
<div class="dashicons dashicons-yes"></div>
|
323 |
+
<span class="m-feature m">Dark Version</span>
|
324 |
+
<div class="tooltip hide">
|
325 |
+
<p>Both Lite and Premium versions include dark versions for the bundled addons.</p>
|
326 |
+
</div>
|
327 |
+
</li>
|
328 |
+
<li>
|
329 |
+
<div class="dashicons dashicons-yes m"></div>
|
330 |
+
<span class="m-feature m">Posts/Portfolio Grid</span>
|
331 |
+
<div class="m-tooltip hide"><p>The PRO version comes with advanced grid functions like pagination, lazy load via AJAX, lightbox support etc.</p></div>
|
332 |
+
<span class="message">Advanced</span> <span class="help dashicons dashicons-editor-help"></span>
|
333 |
+
<div class="tooltip hide">
|
334 |
+
<p>The PRO version comes with advanced grid functions like pagination, lazy load via AJAX, lightbox support etc.</p>
|
335 |
+
</div>
|
336 |
+
</li>
|
337 |
+
<li>
|
338 |
+
<div class="dashicons dashicons-yes"></div>
|
339 |
+
<span class="m-feature m">Demo Site Replication</span>
|
340 |
+
<div class="tooltip hide">
|
341 |
+
<p>Premium version comes with sample data XML bundled to get a head start on the plugin by import of demo data on our site.</p>
|
342 |
+
</div>
|
343 |
+
</li>
|
344 |
+
<li>
|
345 |
+
<div class="dashicons dashicons-yes"></div>
|
346 |
+
<span class="m-feature m">Grids with AJAX Pagination</span>
|
347 |
+
<div class="tooltip hide">
|
348 |
+
<p>Multiple pages of posts/portfolio/image/video grid loaded inline without page refresh. Showcase your entire work anywhere on the site.</p>
|
349 |
+
</div>
|
350 |
+
</li>
|
351 |
+
<li>
|
352 |
+
<div class="dashicons dashicons-yes"></div>
|
353 |
+
<span class="m-feature m">Advanced Grid with Lazy Load</span>
|
354 |
+
<div class="tooltip hide">
|
355 |
+
<p>The grid elements are loaded on demand with each press of a Load More button that displays a count of remaining posts.</p>
|
356 |
+
</div>
|
357 |
+
</li>
|
358 |
+
<li>
|
359 |
+
<div class="dashicons dashicons-yes"></div>
|
360 |
+
<span class="m-feature m">Lightbox Support</span>
|
361 |
+
<div class="tooltip hide">
|
362 |
+
<p>Magnific Popup plugin integrated for fast and smooth lightbox support for posts/portfolio or image/video grid elements.</p>
|
363 |
+
</div>
|
364 |
+
</li>
|
365 |
+
<li>
|
366 |
+
<div class="dashicons dashicons-yes"></div>
|
367 |
+
<span class="m-feature m">Customization Options</span>
|
368 |
+
<div class="tooltip hide">
|
369 |
+
<p>Premium version include more customization options like icon font size, color, hover color etc.</p>
|
370 |
+
</div>
|
371 |
+
</li>
|
372 |
+
<li>
|
373 |
+
<div class="dashicons dashicons-yes"></div>
|
374 |
+
<span class="m-feature m">Animations</span>
|
375 |
+
<div class="tooltip hide">
|
376 |
+
<p>Choose from over <strong>40+ custom animations</strong> for most addons (excludes sliders, carousels and grid).</p>
|
377 |
+
</div>
|
378 |
+
</li>
|
379 |
+
<li>
|
380 |
+
<div class="dashicons dashicons-yes"></div>
|
381 |
+
<span class="m-feature m">Advanced Image Slider</span>
|
382 |
+
<div class="tooltip hide">
|
383 |
+
<p>Responsive slider with choice of Nivo, Flex, Slick and Ultra Lightweight slider types. Comes with multiple caption styles, thumbnail navigation and detailed customization of slider speed and controls.</p>
|
384 |
+
</div>
|
385 |
+
</li>
|
386 |
+
<li>
|
387 |
+
<div class="dashicons dashicons-yes"></div>
|
388 |
+
<span class="m-feature m">Image Gallery</span>
|
389 |
+
<div class="tooltip hide">
|
390 |
+
<p>Create a beautiful yet responsive gallery with support for tagging, linking, filtering, labels, lazy load of images with Load More and pagination.</p>
|
391 |
+
</div>
|
392 |
+
</li>
|
393 |
+
<li>
|
394 |
+
<div class="dashicons dashicons-yes"></div>
|
395 |
+
<span class="m-feature m">YouTube/Vimeo Video Gallery</span>
|
396 |
+
<div class="tooltip hide">
|
397 |
+
<p>Essential tool for video bloggers, video marketers, musicians and other sites with video content. Tags, filters, external linking, labels, pagination and lazy load via AJAX supported.</p>
|
398 |
+
</div>
|
399 |
+
</li>
|
400 |
+
<li>
|
401 |
+
<div class="dashicons dashicons-yes"></div>
|
402 |
+
<span class="m-feature m">Advanced Image Carousel</span>
|
403 |
+
<div class="tooltip hide">
|
404 |
+
<p>Advanced carousel with touch/swipe/drag/paged/click navigation. Extensive customization for responsiveness, animation/slideshow speed, gutter, looping etc.</p>
|
405 |
+
</div>
|
406 |
+
</li>
|
407 |
+
<li>
|
408 |
+
<div class="dashicons dashicons-yes"></div>
|
409 |
+
<span class="m-feature m">YouTube/Vimeo Video Carousel</span>
|
410 |
+
<div class="tooltip hide">
|
411 |
+
<p>Perfect for showcasing a select collection of videos with filters, tags, external links, labels, touch/swipe/mouse drag/click navigation, paging and lightbox support.</p>
|
412 |
+
</div>
|
413 |
+
</li>
|
414 |
+
<li>
|
415 |
+
<div class="dashicons dashicons-yes"></div>
|
416 |
+
<span class="m-feature m">Features List</span>
|
417 |
+
<div class="tooltip hide">
|
418 |
+
<p>Display a list the product features or services offered in style.</p>
|
419 |
+
</div>
|
420 |
+
</li>
|
421 |
+
<li>
|
422 |
+
<div class="dashicons dashicons-yes"></div>
|
423 |
+
<span class="m-feature m">Dedicated Support Forum</span>
|
424 |
+
<div class="tooltip hide">
|
425 |
+
<p>Customers of PRO version get access to a dedicated support forum with public/private tickets, searchable content and threads which are answered within 24 hours.</p>
|
426 |
+
</div>
|
427 |
+
</li>
|
428 |
+
<li>
|
429 |
+
<div class="dashicons dashicons-yes"></div>
|
430 |
+
<span class="m-feature m">Priority Support</span>
|
431 |
+
<div class="tooltip hide">
|
432 |
+
<p>The experience and expertize gained by providing support for over 11,000 customers for our paid themes is available to you. Private tickets let you work directly with our support staff by providing your site details.</p>
|
433 |
+
</div>
|
434 |
+
</li>
|
435 |
+
</ul>
|
436 |
+
<div class="action clear"><a href="https://www.livemeshthemes.com/visual-composer-addons/pricing/" class="btn center bg-cy">Purchase Now</a></div>
|
437 |
+
</div>
|
438 |
+
</div>
|
439 |
+
</div>
|
440 |
+
</div>
|
441 |
+
</div>
|
442 |
+
|
443 |
+
</div>
|
444 |
+
|
445 |
+
<img style="max-width:100%;padding-top: 50px;" class="dashboard-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/dashboard/why-premium.jpg" alt="Why Choose Premium">
|
446 |
+
|
447 |
+
<div class="button-wrap">
|
448 |
+
|
449 |
+
<a href="https://www.livemeshthemes.com/visual-composer-addons/pricing/" title="Purchase Now">
|
450 |
+
|
451 |
+
<img class="button-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/dashboard/purchase-button.png" alt="Purchase Button">
|
452 |
+
|
453 |
+
</a>
|
454 |
+
|
455 |
+
</div>
|
456 |
+
|
457 |
+
<div class="panels">
|
458 |
+
|
459 |
+
<div id="panel" class="panel">
|
460 |
+
|
461 |
+
<!-- Upgrade panel -->
|
462 |
+
<div id="upgrade-panel" class="panel-left visible">
|
463 |
+
|
464 |
+
<p>
|
465 |
+
<img class="dashboard-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/dashboard/image-slider.jpg" alt="Image Slider">
|
466 |
+
<img class="dashboard-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/dashboard/advanced-grid.jpg" alt="Advanced Grid">
|
467 |
+
<img class="dashboard-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/dashboard/image-gallery.jpg" alt="Image Gallery">
|
468 |
+
<img class="dashboard-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/dashboard/video-gallery.jpg" alt="Video Gallery">
|
469 |
+
<img class="dashboard-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/dashboard/image-video-carousel.jpg" alt="Image Video Carousel">
|
470 |
+
<img class="dashboard-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/dashboard/more-premium.jpg" alt="More Premium Goodness">
|
471 |
+
<img class="dashboard-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/dashboard/priority-support.jpg" alt="Priority Support">
|
472 |
+
|
473 |
+
</p>
|
474 |
+
|
475 |
+
<h3 id="item-description__features-overview"><?php echo __('Why upgrade to Premium Version of the plugin?', 'livemesh-vc-addons') ?></h3>
|
476 |
+
|
477 |
+
<p>The premium version helps us to continue development of this plugin incorporating even
|
478 |
+
more
|
479 |
+
features and enhancements along with offering more responsive support. Following are
|
480 |
+
some of the reasons why you may want to upgrade to the premium version of this
|
481 |
+
plugin.</p>
|
482 |
+
|
483 |
+
<h3 id="item-description__features-overview">New Premium Addons</h3>
|
484 |
+
|
485 |
+
<p>Although the free version of the Addons for Visual Composer features a large repertoire of premium quality addons, the premium
|
486 |
+
version does even more.</p>
|
487 |
+
|
488 |
+
<ul>
|
489 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/sliders/" title="Image Slider Addon" target="_blank">Image
|
490 |
+
Slider</a> - Create a responsive slider of images with support
|
491 |
+
for captions,
|
492 |
+
multiple slider types like Nivo, Flex, Slick and lightweight sliders, thumbnail
|
493 |
+
navigation etc.
|
494 |
+
</li>
|
495 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/image-gallery/" title="Image Gallery Addon" target="_blank">Image
|
496 |
+
Gallery</a> - Create a gallery of images with options for masonry
|
497 |
+
or fit rows, pagination, lazy load, lightbox support etc.
|
498 |
+
</li>
|
499 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/video-gallery/" title="Video Gallery Addon" target="_blank">Video
|
500 |
+
Gallery</a> - Create a beautiful gallery of videos to help
|
501 |
+
showcase a collection of YouTube/Vimeo videos on your site.
|
502 |
+
</li>
|
503 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/gallery-carousel/" title="Image Carousel" target="_blank">Image
|
504 |
+
Carousel</a> - Build a responsive carousel of images.</li>
|
505 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/gallery-carousel/" title="Video Carousel" target="_blank">Video
|
506 |
+
Carousel</a> - Build a responsive carousel of YouTube/Vimeo
|
507 |
+
videos.
|
508 |
+
</li>
|
509 |
+
<li><strong>Countdown</strong> - Use countdown addon to display a countdown timer on
|
510 |
+
your site pages
|
511 |
+
such as those that feature events or under construction/coming soon pages.
|
512 |
+
</li>
|
513 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/faq-element/" title="FAQ Addon" target="_blank">FAQ</a> - Create a set of Frequently Asked Questions for display in a
|
514 |
+
page.
|
515 |
+
</li>
|
516 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/features/" title="Features Addon" target="_blank">Features Addon</a> - Showcase product features or services provided by your agency/business.
|
517 |
+
</li>
|
518 |
+
</ul>
|
519 |
+
|
520 |
+
<h3 id="item-description__features-overview">Additional Features</h3>
|
521 |
+
|
522 |
+
<p>Along with incorporating many new addons into premium version, the pro version is being
|
523 |
+
updated with additional features for existing addons -</p>
|
524 |
+
|
525 |
+
<ul>
|
526 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/portfolio-grid-pro/" title="Livemesh Grid" target="_blank">Lazy Load</a> - The portfolio/post grid and image gallery addons
|
527 |
+
incorporate option to lazy load posts/images with the click of a Load More button.
|
528 |
+
</li>
|
529 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/portfolio-grid-pro/" title="Livemesh Grid" target="_blank">Pagination</a> - Create a grid of posts or custom post types with AJAX
|
530 |
+
based pagination support.
|
531 |
+
</li>
|
532 |
+
<li><strong>Lightbox Support</strong> - The premium version comes with support for
|
533 |
+
Lightbox for grid and carousel addons.
|
534 |
+
</li>
|
535 |
+
<li><strong>Custom Fonts</strong> - Ability to choose custom fonts from Google Fonts
|
536 |
+
library for headings in heading addon and the hero header addon.
|
537 |
+
</li>
|
538 |
+
<li><strong>Animations</strong> - Choose from over <strong>40+ animations</strong> for most addons
|
539 |
+
(excludes sliders, carousels and grid). The animations display on user scrolling to the addon or
|
540 |
+
when the addon becomes visible in the browser window.
|
541 |
+
</li>
|
542 |
+
<li><strong>Sample Data</strong> - Sample data that you can import into your site to get
|
543 |
+
started quickly on the addons and some sample layouts.
|
544 |
+
</li>
|
545 |
+
</ul>
|
546 |
+
|
547 |
+
<h3 id="item-description__features-overview">Premium Support</h3>
|
548 |
+
|
549 |
+
<p>We offer premium support for our paid customers with following benefits - </p>
|
550 |
+
|
551 |
+
<ul>
|
552 |
+
<li><strong>Dedicated Forum</strong> - The customers will be provided access to a
|
553 |
+
dedicated support forum.
|
554 |
+
</li>
|
555 |
+
<li><strong>Public and Private Tickets</strong> - Private tickets help you work with us
|
556 |
+
directly regarding the issues you are facing in your site by sharing the details of
|
557 |
+
your site securely.
|
558 |
+
</li>
|
559 |
+
<li><strong>Searchable Topics</strong> - The support forum is searchable for public
|
560 |
+
topics helping you look for resolution of similar issues reported by other
|
561 |
+
customers.
|
562 |
+
</li>
|
563 |
+
</li>
|
564 |
+
<li><strong>Faster turnaround</strong> - The threads opened by paid customers will be
|
565 |
+
attended to within 24 hours of opening a ticket.
|
566 |
+
</li>
|
567 |
+
<li><strong>Bug fixes and Enhancements</strong> - Any fixes and enhancements made to the
|
568 |
+
addons will be prioritized to arrive quicker on the premium version.
|
569 |
+
</li>
|
570 |
+
<li><strong>Proven Expertize</strong> - Having served over <strong>11,000+
|
571 |
+
customers</strong> of our themes over past 3 years, the support provided by us
|
572 |
+
is proven in competence and commitment.
|
573 |
+
</li>
|
574 |
+
</ul>
|
575 |
+
|
576 |
+
<div class="button-wrap">
|
577 |
+
|
578 |
+
<a class="button-wrap" href="https://www.livemeshthemes.com/visual-composer-addons/pricing/" title="Purchase Now">
|
579 |
+
|
580 |
+
<img class="button-image" style="border:none" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/dashboard/purchase-button.png" alt="Purchase Button">
|
581 |
+
|
582 |
+
</a>
|
583 |
+
|
584 |
+
</div>
|
585 |
+
|
586 |
+
</div>
|
587 |
+
|
588 |
+
<div class="panel-right">
|
589 |
+
|
590 |
+
<div class="panel-inner">
|
591 |
+
|
592 |
+
<div class="panel-aside banner">
|
593 |
+
<a href="https://www.livemeshthemes.com/visual-composer-addons/pricing/" title="Purchase Now"><img class="dashboard-image" src="https://www.livemeshthemes.com/wp-content/uploads/plugin-doc/livemesh-vc-addons/dashboard/purchase-banner2.jpg" alt="Sale Banner"></a>
|
594 |
+
</div>
|
595 |
+
|
596 |
+
<!-- Knowledge base -->
|
597 |
+
<div class="panel-aside panel-sticky">
|
598 |
+
|
599 |
+
<h4>Have questions regarding premium version of the plugin?</h4>
|
600 |
+
<p>If you have pre-sales questions related to the paid version of this plugin, feel free to get in touch with us via contact form on our website.</p>
|
601 |
+
|
602 |
+
<a class="button button-primary" href="https://www.livemeshthemes.com/visual-composer-addons/contact-us/"
|
603 |
+
title="<?php esc_attr_e('Contact Us', 'livemesh-vc-addons'); ?>"><?php _e('Write to Us', 'livemesh-vc-addons'); ?></a>
|
604 |
+
|
605 |
+
</div><!-- .panel-aside knowledge base -->
|
606 |
+
|
607 |
+
</div><!-- .panel-inner -->
|
608 |
+
|
609 |
+
</div><!-- .panel-right -->
|
610 |
+
|
611 |
+
</div><!-- .panel -->
|
612 |
+
|
613 |
+
</div><!-- .panels -->
|
614 |
+
|
615 |
+
</div><!-- .livemesh-doc -->
|
admin/views/settings.php
ADDED
@@ -0,0 +1,585 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// Exit if accessed directly
|
4 |
+
if (!defined('ABSPATH')) {
|
5 |
+
exit;
|
6 |
+
}
|
7 |
+
|
8 |
+
$theme_color = lvca_get_option('lvca_theme_color', '#f94213');
|
9 |
+
|
10 |
+
$theme_hover_color = lvca_get_option('lvca_theme_hover_color', '#888888');
|
11 |
+
|
12 |
+
$debug_mode = lvca_get_option('lvca_enable_debug', false);
|
13 |
+
|
14 |
+
$custom_css = lvca_get_option('lvca_custom_css', '');
|
15 |
+
|
16 |
+
/* Deactivation of VC Elements */
|
17 |
+
|
18 |
+
$deactivate_element_accordion = lvca_get_option('lvca_deactivate_element_accordion', false);
|
19 |
+
|
20 |
+
$deactivate_element_carousel = lvca_get_option('lvca_deactivate_element_carousel', false);
|
21 |
+
|
22 |
+
$deactivate_element_clients = lvca_get_option('lvca_deactivate_element_clients', false);
|
23 |
+
|
24 |
+
$deactivate_element_heading = lvca_get_option('lvca_deactivate_element_heading', false);
|
25 |
+
|
26 |
+
$deactivate_element_odometers = lvca_get_option('lvca_deactivate_element_odometers', false);
|
27 |
+
|
28 |
+
$deactivate_element_piecharts = lvca_get_option('lvca_deactivate_element_piecharts', false);
|
29 |
+
|
30 |
+
$deactivate_element_portfolio = lvca_get_option('lvca_deactivate_element_portfolio', false);
|
31 |
+
|
32 |
+
$deactivate_element_posts_carousel = lvca_get_option('lvca_deactivate_element_posts_carousel', false);
|
33 |
+
|
34 |
+
$deactivate_element_pricing_table = lvca_get_option('lvca_deactivate_element_pricing_table', false);
|
35 |
+
|
36 |
+
$deactivate_element_spacer = lvca_get_option('lvca_deactivate_element_spacer', false);
|
37 |
+
|
38 |
+
$deactivate_element_services = lvca_get_option('lvca_deactivate_element_services', false);
|
39 |
+
|
40 |
+
$deactivate_element_stats_bar = lvca_get_option('lvca_deactivate_element_stats_bar', false);
|
41 |
+
|
42 |
+
$deactivate_element_tabs = lvca_get_option('lvca_deactivate_element_tabs', false);
|
43 |
+
|
44 |
+
$deactivate_element_team = lvca_get_option('lvca_deactivate_element_team', false);
|
45 |
+
|
46 |
+
$deactivate_element_testimonials = lvca_get_option('lvca_deactivate_element_testimonials', false);
|
47 |
+
|
48 |
+
$deactivate_element_testimonials_slider = lvca_get_option('lvca_deactivate_element_testimonials_slider', false);
|
49 |
+
|
50 |
+
|
51 |
+
?>
|
52 |
+
|
53 |
+
<div class="lvca-settings">
|
54 |
+
|
55 |
+
<div class="postbox">
|
56 |
+
|
57 |
+
<!-------------------
|
58 |
+
OPTIONS HOLDER START
|
59 |
+
-------------------->
|
60 |
+
<div class="lvca-menu-options settings-options">
|
61 |
+
|
62 |
+
<div class="lvca-inner">
|
63 |
+
|
64 |
+
<!------------------- LI TABS -------------------->
|
65 |
+
|
66 |
+
<ul class="lvca-tabs-wrap">
|
67 |
+
<li class="lvca-tab selected" data-target="general"><i
|
68 |
+
class="lvca-icon dashicons dashicons-admin-generic"></i><?php echo __('General', 'livemesh-vc-addons') ?>
|
69 |
+
</li>
|
70 |
+
<li class="lvca-tab" data-target="elements"><i
|
71 |
+
class="lvca-icon dashicons dashicons-admin-settings"></i><?php echo __('Elements', 'livemesh-vc-addons') ?>
|
72 |
+
</li>
|
73 |
+
<li class="lvca-tab" data-target="custom-css"><i
|
74 |
+
class="lvca-icon dashicons dashicons-editor-code"></i><?php echo __('Custom CSS', 'livemesh-vc-addons') ?>
|
75 |
+
</li>
|
76 |
+
<li class="lvca-tab" data-target="debugging"><i
|
77 |
+
class="lvca-icon dashicons dashicons-warning"></i><?php echo __('Debugging', 'livemesh-vc-addons') ?>
|
78 |
+
</li>
|
79 |
+
<li class="lvca-tab" data-target="premium-version"><i
|
80 |
+
class="lvca-icon dashicons dashicons-yes"></i><?php echo __('Premium Version', 'livemesh-vc-addons') ?>
|
81 |
+
</li>
|
82 |
+
</ul>
|
83 |
+
|
84 |
+
<!------------------- GENERAL TAB -------------------->
|
85 |
+
|
86 |
+
<div class="lvca-tab-content general lvca-tab-show">
|
87 |
+
|
88 |
+
<!---- Theme Colors -->
|
89 |
+
<div class="lvca-box-side">
|
90 |
+
<h3><?php echo __('Theme Colors', 'livemesh-vc-addons') ?></h3>
|
91 |
+
</div>
|
92 |
+
<div class="lvca-inner lvca-box-inner">
|
93 |
+
<div class="lvca-row lvca-field">
|
94 |
+
<label
|
95 |
+
class="lvca-label"><?php echo __('Theme Color Scheme', 'livemesh-vc-addons') ?></label>
|
96 |
+
<p class="lvca-desc"><?php echo __('Most themes use a single color as a major color across the site. This color is often used for links, titles, buttons, icons, highlights etc. <br> To maintain the consistent look with the theme, specify the default color used by the theme activated on your site. This color will be applied to the addon elements by default. <br>The hover color refers to the color set for links on mouse hover.', 'livemesh-vc-addons') ?></p>
|
97 |
+
</div>
|
98 |
+
|
99 |
+
<div class="lvca-clearfix"></div>
|
100 |
+
|
101 |
+
<!---- Theme color -->
|
102 |
+
<div class="lvca-row lvca-field lvca-type-color">
|
103 |
+
<label class="lvca-label"><?php echo __('Theme Color', 'livemesh-vc-addons') ?></label>
|
104 |
+
<p class="lvca-desc"><?php echo __('Select the default theme color.', 'livemesh-vc-addons') ?></p>
|
105 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
106 |
+
<input class="lvca-colorpicker" name="lvca_theme_color" type="text"
|
107 |
+
data-default="#f94213" value="<?php echo $theme_color ?>"/>
|
108 |
+
</div>
|
109 |
+
|
110 |
+
|
111 |
+
<div class="lvca-spacer"></div>
|
112 |
+
|
113 |
+
<!---- Theme Hover color -->
|
114 |
+
<div class="lvca-row lvca-field lvca-type-color">
|
115 |
+
<label class="lvca-label"><?php echo __('Theme Hover Color', 'livemesh-vc-addons') ?></label>
|
116 |
+
<p class="lvca-desc"><?php echo __('Select the default hover color for your theme.', 'livemesh-vc-addons') ?></p>
|
117 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
118 |
+
<input class="lvca-colorpicker" name="lvca_theme_hover_color" type="text"
|
119 |
+
data-default="#888888" value="<?php echo $theme_hover_color ?>"/>
|
120 |
+
</div>
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
</div>
|
125 |
+
|
126 |
+
<div class="lvca-clearfix"></div>
|
127 |
+
|
128 |
+
|
129 |
+
</div>
|
130 |
+
|
131 |
+
|
132 |
+
|
133 |
+
<!------------------- ELEMENTS TAB -------------------->
|
134 |
+
|
135 |
+
<div class="lvca-tab-content elements">
|
136 |
+
|
137 |
+
<!---- Auto activate VC Addons -->
|
138 |
+
<div class="lvca-box-side">
|
139 |
+
|
140 |
+
<h3><?php echo __('Optimize Plugin', 'livemesh-vc-addons') ?></h3>
|
141 |
+
|
142 |
+
</div>
|
143 |
+
|
144 |
+
<div class="lvca-inner lvca-box-inner">
|
145 |
+
|
146 |
+
|
147 |
+
<div class="lvca-row lvca-field">
|
148 |
+
<label class="lvca-label"><?php echo __('Deactivate elements for better performance', 'livemesh-vc-addons') ?></label>
|
149 |
+
|
150 |
+
<p class="lvca-desc"><?php echo __('You can deactivate those elements that you do not intend to use to avoid loading scripts and files related to those elements.', 'livemesh-vc-addons'); ?></p>
|
151 |
+
</div>
|
152 |
+
|
153 |
+
<div class="lvca-spacer" style="height: 15px"></div>
|
154 |
+
|
155 |
+
<div class="lvca-elements-deactivate">
|
156 |
+
|
157 |
+
<div class="lvca-row lvca-type-checkbox lvca-field">
|
158 |
+
<label class="lvca-label"><?php echo __('Deactivate Accordion', 'livemesh-vc-addons') ?></label>
|
159 |
+
<p class="lvca-desc"><?php echo __('Deactivate the accordion element.', 'livemesh-vc-addons') ?></p>
|
160 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
161 |
+
<div class="lvca-toggle">
|
162 |
+
<input type="checkbox" class="lvca-checkbox"
|
163 |
+
name="lvca_deactivate_element_accordion"
|
164 |
+
id="lvca_deactivate_element_accordion" data-default=""
|
165 |
+
value="<?php echo $deactivate_element_accordion ?>" <?php echo checked(!empty($deactivate_element_accordion), 1, false) ?>>
|
166 |
+
<label for="lvca_deactivate_element_accordion"></label>
|
167 |
+
</div>
|
168 |
+
</div>
|
169 |
+
|
170 |
+
<div class="lvca-row lvca-type-checkbox lvca-field">
|
171 |
+
<label class="lvca-label"><?php echo __('Deactivate Carousel', 'livemesh-vc-addons') ?></label>
|
172 |
+
<p class="lvca-desc"><?php echo __('Deactivate the carousel element.', 'livemesh-vc-addons') ?></p>
|
173 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
174 |
+
<div class="lvca-toggle">
|
175 |
+
<input type="checkbox" class="lvca-checkbox" name="lvca_deactivate_element_carousel"
|
176 |
+
id="lvca_deactivate_element_carousel" data-default=""
|
177 |
+
value="<?php echo $deactivate_element_carousel ?>" <?php echo checked(!empty($deactivate_element_carousel), 1, false) ?>>
|
178 |
+
<label for="lvca_deactivate_element_carousel"></label>
|
179 |
+
</div>
|
180 |
+
</div>
|
181 |
+
|
182 |
+
<div class="lvca-row lvca-type-checkbox lvca-field">
|
183 |
+
<label class="lvca-label"><?php echo __('Deactivate Clients', 'livemesh-vc-addons') ?></label>
|
184 |
+
<p class="lvca-desc"><?php echo __('Deactivate the clients element.', 'livemesh-vc-addons') ?></p>
|
185 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
186 |
+
<div class="lvca-toggle">
|
187 |
+
<input type="checkbox" class="lvca-checkbox" name="lvca_deactivate_element_clients"
|
188 |
+
id="lvca_deactivate_element_clients" data-default=""
|
189 |
+
value="<?php echo $deactivate_element_clients ?>" <?php echo checked(!empty($deactivate_element_clients), 1, false) ?>>
|
190 |
+
<label for="lvca_deactivate_element_clients"></label>
|
191 |
+
</div>
|
192 |
+
</div>
|
193 |
+
|
194 |
+
<div class="lvca-row lvca-type-checkbox lvca-field">
|
195 |
+
<label class="lvca-label"><?php echo __('Deactivate Heading', 'livemesh-vc-addons') ?></label>
|
196 |
+
<p class="lvca-desc"><?php echo __('Deactivate the heading element.', 'livemesh-vc-addons') ?></p>
|
197 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
198 |
+
<div class="lvca-toggle">
|
199 |
+
<input type="checkbox" class="lvca-checkbox" name="lvca_deactivate_element_heading"
|
200 |
+
id="lvca_deactivate_element_heading" data-default=""
|
201 |
+
value="<?php echo $deactivate_element_heading ?>" <?php echo checked(!empty($deactivate_element_heading), 1, false) ?>>
|
202 |
+
<label for="lvca_deactivate_element_heading"></label>
|
203 |
+
</div>
|
204 |
+
</div>
|
205 |
+
|
206 |
+
<div class="lvca-row lvca-type-checkbox lvca-field">
|
207 |
+
<label class="lvca-label"><?php echo __('Deactivate Odometers', 'livemesh-vc-addons') ?></label>
|
208 |
+
<p class="lvca-desc"><?php echo __('Deactivate the odometers element.', 'livemesh-vc-addons') ?></p>
|
209 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
210 |
+
<div class="lvca-toggle">
|
211 |
+
<input type="checkbox" class="lvca-checkbox"
|
212 |
+
name="lvca_deactivate_element_odometers"
|
213 |
+
id="lvca_deactivate_element_odometers" data-default=""
|
214 |
+
value="<?php echo $deactivate_element_odometers ?>" <?php echo checked(!empty($deactivate_element_odometers), 1, false) ?>>
|
215 |
+
<label for="lvca_deactivate_element_odometers"></label>
|
216 |
+
</div>
|
217 |
+
</div>
|
218 |
+
|
219 |
+
<div class="lvca-row lvca-type-checkbox lvca-field">
|
220 |
+
<label class="lvca-label"><?php echo __('Deactivate Piecharts', 'livemesh-vc-addons') ?></label>
|
221 |
+
<p class="lvca-desc"><?php echo __('Deactivate the piecharts element.', 'livemesh-vc-addons') ?></p>
|
222 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
223 |
+
<div class="lvca-toggle">
|
224 |
+
<input type="checkbox" class="lvca-checkbox"
|
225 |
+
name="lvca_deactivate_element_piecharts"
|
226 |
+
id="lvca_deactivate_element_piecharts" data-default=""
|
227 |
+
value="<?php echo $deactivate_element_piecharts ?>" <?php echo checked(!empty($deactivate_element_piecharts), 1, false) ?>>
|
228 |
+
<label for="lvca_deactivate_element_piecharts"></label>
|
229 |
+
</div>
|
230 |
+
</div>
|
231 |
+
|
232 |
+
<div class="lvca-row lvca-type-checkbox lvca-field">
|
233 |
+
<label class="lvca-label"><?php echo __('Deactivate Portfolio', 'livemesh-vc-addons') ?></label>
|
234 |
+
<p class="lvca-desc"><?php echo __('Deactivate the portfolio element.', 'livemesh-vc-addons') ?></p>
|
235 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
236 |
+
<div class="lvca-toggle">
|
237 |
+
<input type="checkbox" class="lvca-checkbox"
|
238 |
+
name="lvca_deactivate_element_portfolio"
|
239 |
+
id="lvca_deactivate_element_portfolio" data-default=""
|
240 |
+
value="<?php echo $deactivate_element_portfolio ?>" <?php echo checked(!empty($deactivate_element_portfolio), 1, false) ?>>
|
241 |
+
<label for="lvca_deactivate_element_portfolio"></label>
|
242 |
+
</div>
|
243 |
+
</div>
|
244 |
+
|
245 |
+
<div class="lvca-row lvca-type-checkbox lvca-field">
|
246 |
+
<label class="lvca-label"><?php echo __('Deactivate Posts Carousel', 'livemesh-vc-addons') ?></label>
|
247 |
+
<p class="lvca-desc"><?php echo __('Deactivate the posts carousel element.', 'livemesh-vc-addons') ?></p>
|
248 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
249 |
+
<div class="lvca-toggle">
|
250 |
+
<input type="checkbox" class="lvca-checkbox"
|
251 |
+
name="lvca_deactivate_element_posts_carousel"
|
252 |
+
id="lvca_deactivate_element_posts_carousel" data-default=""
|
253 |
+
value="<?php echo $deactivate_element_posts_carousel ?>" <?php echo checked(!empty($deactivate_element_posts_carousel), 1, false) ?>>
|
254 |
+
<label for="lvca_deactivate_element_posts_carousel"></label>
|
255 |
+
</div>
|
256 |
+
</div>
|
257 |
+
|
258 |
+
<div class="lvca-row lvca-type-checkbox lvca-field">
|
259 |
+
<label class="lvca-label"><?php echo __('Deactivate Pricing Table', 'livemesh-vc-addons') ?></label>
|
260 |
+
<p class="lvca-desc"><?php echo __('Deactivate the pricing table element.', 'livemesh-vc-addons') ?></p>
|
261 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
262 |
+
<div class="lvca-toggle">
|
263 |
+
<input type="checkbox" class="lvca-checkbox"
|
264 |
+
name="lvca_deactivate_element_pricing_table"
|
265 |
+
id="lvca_deactivate_element_pricing_table" data-default=""
|
266 |
+
value="<?php echo $deactivate_element_pricing_table ?>" <?php echo checked(!empty($deactivate_element_pricing_table), 1, false) ?>>
|
267 |
+
<label for="lvca_deactivate_element_pricing_table"></label>
|
268 |
+
</div>
|
269 |
+
</div>
|
270 |
+
|
271 |
+
<div class="lvca-row lvca-type-checkbox lvca-field">
|
272 |
+
<label class="lvca-label"><?php echo __('Deactivate Spacer', 'livemesh-vc-addons') ?></label>
|
273 |
+
<p class="lvca-desc"><?php echo __('Deactivate the spacer element.', 'livemesh-vc-addons') ?></p>
|
274 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
275 |
+
<div class="lvca-toggle">
|
276 |
+
<input type="checkbox" class="lvca-checkbox" name="lvca_deactivate_element_spacer"
|
277 |
+
id="lvca_deactivate_element_spacer" data-default=""
|
278 |
+
value="<?php echo $deactivate_element_spacer ?>" <?php echo checked(!empty($deactivate_element_spacer), 1, false) ?>>
|
279 |
+
<label for="lvca_deactivate_element_spacer"></label>
|
280 |
+
</div>
|
281 |
+
</div>
|
282 |
+
|
283 |
+
<div class="lvca-row lvca-type-checkbox lvca-field">
|
284 |
+
<label class="lvca-label"><?php echo __('Deactivate Services', 'livemesh-vc-addons') ?></label>
|
285 |
+
<p class="lvca-desc"><?php echo __('Deactivate the services element.', 'livemesh-vc-addons') ?></p>
|
286 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
287 |
+
<div class="lvca-toggle">
|
288 |
+
<input type="checkbox" class="lvca-checkbox" name="lvca_deactivate_element_services"
|
289 |
+
id="lvca_deactivate_element_spacer" data-default=""
|
290 |
+
value="<?php echo $deactivate_element_services ?>" <?php echo checked(!empty($deactivate_element_services), 1, false) ?>>
|
291 |
+
<label for="lvca_deactivate_element_services"></label>
|
292 |
+
</div>
|
293 |
+
</div>
|
294 |
+
|
295 |
+
<div class="lvca-row lvca-type-checkbox lvca-field">
|
296 |
+
<label class="lvca-label"><?php echo __('Deactivate Stats Bars', 'livemesh-vc-addons') ?></label>
|
297 |
+
<p class="lvca-desc"><?php echo __('Deactivate the stats bars element.', 'livemesh-vc-addons') ?></p>
|
298 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
299 |
+
<div class="lvca-toggle">
|
300 |
+
<input type="checkbox" class="lvca-checkbox"
|
301 |
+
name="lvca_deactivate_element_stats_bar"
|
302 |
+
id="lvca_deactivate_element_stats_bar" data-default=""
|
303 |
+
value="<?php echo $deactivate_element_stats_bar ?>" <?php echo checked(!empty($deactivate_element_stats_bar), 1, false) ?>>
|
304 |
+
<label for="lvca_deactivate_element_stats_bar"></label>
|
305 |
+
</div>
|
306 |
+
</div>
|
307 |
+
|
308 |
+
<div class="lvca-row lvca-type-checkbox lvca-field">
|
309 |
+
<label class="lvca-label"><?php echo __('Deactivate Tabs', 'livemesh-vc-addons') ?></label>
|
310 |
+
<p class="lvca-desc"><?php echo __('Deactivate the tabs element.', 'livemesh-vc-addons') ?></p>
|
311 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
312 |
+
<div class="lvca-toggle">
|
313 |
+
<input type="checkbox" class="lvca-checkbox" name="lvca_deactivate_element_tabs"
|
314 |
+
id="lvca_deactivate_element_tabs" data-default=""
|
315 |
+
value="<?php echo $deactivate_element_tabs ?>" <?php echo checked(!empty($deactivate_element_tabs), 1, false) ?>>
|
316 |
+
<label for="lvca_deactivate_element_tabs"></label>
|
317 |
+
</div>
|
318 |
+
</div>
|
319 |
+
|
320 |
+
<div class="lvca-row lvca-type-checkbox lvca-field">
|
321 |
+
<label class="lvca-label"><?php echo __('Deactivate Team', 'livemesh-vc-addons') ?></label>
|
322 |
+
<p class="lvca-desc"><?php echo __('Deactivate the team element.', 'livemesh-vc-addons') ?></p>
|
323 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
324 |
+
<div class="lvca-toggle">
|
325 |
+
<input type="checkbox" class="lvca-checkbox" name="lvca_deactivate_element_team"
|
326 |
+
id="lvca_deactivate_element_team" data-default=""
|
327 |
+
value="<?php echo $deactivate_element_team ?>" <?php echo checked(!empty($deactivate_element_team), 1, false) ?>>
|
328 |
+
<label for="lvca_deactivate_element_team"></label>
|
329 |
+
</div>
|
330 |
+
</div>
|
331 |
+
|
332 |
+
<div class="lvca-row lvca-type-checkbox lvca-field">
|
333 |
+
<label class="lvca-label"><?php echo __('Deactivate Testimonials', 'livemesh-vc-addons') ?></label>
|
334 |
+
<p class="lvca-desc"><?php echo __('Deactivate the testimonials element.', 'livemesh-vc-addons') ?></p>
|
335 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
336 |
+
<div class="lvca-toggle">
|
337 |
+
<input type="checkbox" class="lvca-checkbox"
|
338 |
+
name="lvca_deactivate_element_testimonials"
|
339 |
+
id="lvca_deactivate_element_testimonials" data-default=""
|
340 |
+
value="<?php echo $deactivate_element_testimonials ?>" <?php echo checked(!empty($deactivate_element_testimonials), 1, false) ?>>
|
341 |
+
<label for="lvca_deactivate_element_testimonials"></label>
|
342 |
+
</div>
|
343 |
+
</div>
|
344 |
+
|
345 |
+
<div class="lvca-row lvca-type-checkbox lvca-field">
|
346 |
+
<label class="lvca-label"><?php echo __('Deactivate Testimonials Slider', 'livemesh-vc-addons') ?></label>
|
347 |
+
<p class="lvca-desc"><?php echo __('Deactivate the testimonials slider element.', 'livemesh-vc-addons') ?></p>
|
348 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
349 |
+
<div class="lvca-toggle">
|
350 |
+
<input type="checkbox" class="lvca-checkbox"
|
351 |
+
name="lvca_deactivate_element_testimonials_slider"
|
352 |
+
id="lvca_deactivate_element_testimonials_slider" data-default=""
|
353 |
+
value="<?php echo $deactivate_element_testimonials_slider ?>" <?php echo checked(!empty($deactivate_element_testimonials_slider), 1, false) ?>>
|
354 |
+
<label for="lvca_deactivate_element_testimonials_slider"></label>
|
355 |
+
</div>
|
356 |
+
</div>
|
357 |
+
|
358 |
+
</div>
|
359 |
+
|
360 |
+
</div>
|
361 |
+
|
362 |
+
<div class="lvca-spacer"></div>
|
363 |
+
|
364 |
+
<div class="lvca-clearfix"></div>
|
365 |
+
|
366 |
+
</div>
|
367 |
+
|
368 |
+
<!------------------- Custom CSS TAB -------------------->
|
369 |
+
|
370 |
+
<div class="lvca-tab-content custom-css">
|
371 |
+
|
372 |
+
<!---- Custom CSS -->
|
373 |
+
<div class="lvca-box-side">
|
374 |
+
<h3><?php echo __('Custom CSS', 'livemesh-vc-addons') ?></h3>
|
375 |
+
</div>
|
376 |
+
<div class="lvca-inner lvca-box-inner">
|
377 |
+
|
378 |
+
<div class="lvca-row lvca-field lvca-custom-css">
|
379 |
+
<label
|
380 |
+
class="lvca-label"><?php echo __('Custom CSS', 'livemesh-vc-addons') ?></label>
|
381 |
+
<div class="lvca-spacer" style="height: 5px"></div>
|
382 |
+
<p class="lvca-desc"><?php echo __('Please enter custom CSS for custom styling of elements', 'livemesh-vc-addons') ?></p>
|
383 |
+
|
384 |
+
<div class="lvca-spacer" style="height: 15px"></div>
|
385 |
+
|
386 |
+
<textarea class="lvca-textarea" name="lvca_custom_css" id="lvca_custom_css" rows="20" cols="120"><?php echo $custom_css ?></textarea>
|
387 |
+
|
388 |
+
</div>
|
389 |
+
</div>
|
390 |
+
|
391 |
+
<div class="lvca-clearfix"></div>
|
392 |
+
|
393 |
+
</div>
|
394 |
+
|
395 |
+
<!------------------- Debugging TAB -------------------->
|
396 |
+
|
397 |
+
<div class="lvca-tab-content debugging">
|
398 |
+
|
399 |
+
<!---- Enable script debugging -->
|
400 |
+
<div class="lvca-box-side">
|
401 |
+
<h3><?php echo __('Debug Mode', 'livemesh-vc-addons') ?></h3>
|
402 |
+
</div>
|
403 |
+
<div class="lvca-inner lvca-box-inner">
|
404 |
+
<div class="lvca-spacer" style="height: 15px"></div>
|
405 |
+
<label
|
406 |
+
class="lvca-label lvca-label-outside"><?php echo __('Enable Script Debug Mode', 'livemesh-vc-addons') ?></label>
|
407 |
+
<div class="lvca-row lvca-type-checkbox lvca-field">
|
408 |
+
<p class="lvca-desc"><?php echo __('Use unminified Javascript files instead of minified ones to help developers debug an issue', 'livemesh-vc-addons') ?></p>
|
409 |
+
<div class="lvca-toggle">
|
410 |
+
<input type="checkbox" class="lvca-checkbox" name="lvca_enable_debug" id="lvca_enable_debug"
|
411 |
+
data-default="" value="<?php echo $debug_mode ?>" <?php echo checked(!empty($debug_mode), 1, false) ?>>
|
412 |
+
<label for="lvca_enable_debug"></label>
|
413 |
+
</div>
|
414 |
+
</div>
|
415 |
+
</div>
|
416 |
+
|
417 |
+
<div class="lvca-clearfix"></div>
|
418 |
+
|
419 |
+
<!---- System Info -->
|
420 |
+
<div class="lvca-box-side">
|
421 |
+
<h3><?php echo __('System Info', 'livemesh-vc-addons') ?></h3>
|
422 |
+
</div>
|
423 |
+
<div class="lvca-inner lvca-box-inner">
|
424 |
+
|
425 |
+
<div class="lvca-row lvca-field">
|
426 |
+
<label
|
427 |
+
class="lvca-label"><?php echo __('System Information', 'livemesh-vc-addons') ?></label>
|
428 |
+
<p class="lvca-desc"><?php echo __('Server setup information useful for debugging purposes.', 'livemesh-vc-addons'); ?></p>
|
429 |
+
|
430 |
+
<div class="lvca-spacer" style="height: 15px"></div>
|
431 |
+
|
432 |
+
<p class="debug-info"><?php echo nl2br(lvca_get_sysinfo()); ?></p>
|
433 |
+
</div>
|
434 |
+
|
435 |
+
</div>
|
436 |
+
|
437 |
+
<div class="lvca-clearfix"></div>
|
438 |
+
|
439 |
+
</div>
|
440 |
+
|
441 |
+
<!------------------- PREMIUM VERSION TAB -------------------->
|
442 |
+
|
443 |
+
<div class="lvca-tab-content premium-version">
|
444 |
+
|
445 |
+
<!---- Premium Version Information -->
|
446 |
+
<div class="lvca-box-side">
|
447 |
+
<h3><?php echo __('Premium Version', 'livemesh-vc-addons') ?></h3>
|
448 |
+
</div>
|
449 |
+
<div class="lvca-inner lvca-box-inner">
|
450 |
+
|
451 |
+
|
452 |
+
<div class="lvca-row lvca-field lvca_premium_version">
|
453 |
+
|
454 |
+
<label
|
455 |
+
class="lvca-label"><?php echo __('Why upgrade to Premium Version of the plugin?!', 'livemesh-vc-addons') ?></label>
|
456 |
+
|
457 |
+
<p>The premium version helps us to continue development of this plugin incorporating even
|
458 |
+
more features and enhancements along with offering more responsive support. Following are
|
459 |
+
some of the reasons why you may want to upgrade to the premium version of this
|
460 |
+
plugin.</p>
|
461 |
+
|
462 |
+
<label class="lvca-label">New Premium Widgets</label>
|
463 |
+
|
464 |
+
<p>Although the free version of the Addons for Visual Composer features a large repertoire of
|
465 |
+
premium quality elements with its numerous styles, the premium version does even more.</p>
|
466 |
+
|
467 |
+
<ul>
|
468 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/sliders/" title="Image Slider Widget" target="_blank">Image
|
469 |
+
Slider</a> - Create a responsive slider of images with support
|
470 |
+
for captions,
|
471 |
+
multiple slider types like Nivo, Flex, Slick and lightweight sliders, thumbnail
|
472 |
+
navigation etc.
|
473 |
+
</li>
|
474 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/image-gallery/" title="Image Gallery Widget" target="_blank">Image
|
475 |
+
Gallery</a> - Create a gallery of images with options for masonry
|
476 |
+
or fit rows, pagination, lazy load, lightbox support etc.
|
477 |
+
</li>
|
478 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/video-gallery/" title="Video Gallery Widget" target="_blank">Video
|
479 |
+
Gallery</a> - Create a beautiful gallery of videos to help
|
480 |
+
showcase a collection of YouTube/Vimeo videos on your site.
|
481 |
+
</li>
|
482 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/gallery-carousel/" title="Image Carousel" target="_blank">Image
|
483 |
+
Carousel</a> - Build a responsive carousel of images.</li>
|
484 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/gallery-carousel/" title="Video Carousel" target="_blank">Video
|
485 |
+
Carousel</a> - Build a responsive carousel of YouTube/Vimeo
|
486 |
+
videos.
|
487 |
+
</li>
|
488 |
+
<li><strong>Countdown</strong> - Use countdown element to display a countdown timer on
|
489 |
+
your site pages such as those that feature events or under construction/coming soon
|
490 |
+
pages.
|
491 |
+
</li>
|
492 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/buttons/" title="Buttons Addon" target="_blank">Buttons</a> - Animated buttons with great choice of colors.
|
493 |
+
</li>
|
494 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/icon-lists/" title="Icon List" target="_blank">Icon List</a> - - Create a list of icons with description and link - for social media profiles,
|
495 |
+
for showcasing services or features as well with icons or images.
|
496 |
+
</li>
|
497 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/faq-element/" title="FAQ Addon" target="_blank">FAQ</a> - Create a set of Frequently Asked Questions for display in a
|
498 |
+
page.
|
499 |
+
</li>
|
500 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/features/" title="Features Addon" target="_blank">Features Addon</a> for showcasing product features or services provided by an agency/business.
|
501 |
+
</li>
|
502 |
+
</ul>
|
503 |
+
|
504 |
+
<div class="lvca-spacer" style="height: 15px"></div>
|
505 |
+
|
506 |
+
<a class="lvca-button purchase" href="https://www.livemeshthemes.com/visual-composer-addons/pricing/"><i class="dashicons dashicons-cart"></i><?php echo __('Purchase Now', 'livemesh-vc-addons'); ?></a>
|
507 |
+
|
508 |
+
<div class="lvca-spacer" style="height: 25px"></div>
|
509 |
+
|
510 |
+
<label class="lvca-label">Additional Features</label>
|
511 |
+
|
512 |
+
<p>Along with incorporating many new elements into premium version, the pro version is being
|
513 |
+
updated with additional features for existing elements -</p>
|
514 |
+
|
515 |
+
<ul>
|
516 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/portfolio-grid-pro/" title="Livemesh Grid" target="_blank">Lazy Load</a> - The portfolio/post grid and image gallery elements
|
517 |
+
incorporate option to lazy load posts/images with the click of a Load More button.
|
518 |
+
</li>
|
519 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/portfolio-grid-pro/" title="Livemesh Grid" target="_blank">Pagination</a> - Create a grid of posts or custom post types with AJAX
|
520 |
+
based pagination support.
|
521 |
+
</li>
|
522 |
+
<li><strong>Lightbox Support</strong> - The premium version comes with support for
|
523 |
+
Lightbox for grid and carousel elements.
|
524 |
+
</li>
|
525 |
+
<li><strong>Customizations</strong> - Ability to choose custom font sizes and colors for
|
526 |
+
certain elements like services and icon lists.
|
527 |
+
</li>
|
528 |
+
<li><strong>Custom Animations</strong> - Choose from over <strong>40+ animations</strong>
|
529 |
+
for most elements (excludes sliders, carousels and grid). The animations display on
|
530 |
+
user scrolling to the element or when the element becomes visible in the browser window.
|
531 |
+
</li>
|
532 |
+
<li><strong>Sample Data</strong> - Sample data that you can import into your site to get
|
533 |
+
started quickly on the addon elements and some sample layouts.
|
534 |
+
</li>
|
535 |
+
</ul>
|
536 |
+
|
537 |
+
<label class="lvca-label">Premium Support</label>
|
538 |
+
|
539 |
+
<p>We offer premium support for our paid customers with following benefits - </p>
|
540 |
+
|
541 |
+
<ul>
|
542 |
+
<li><strong>Dedicated Forum</strong> - The customers will be provided access to a
|
543 |
+
dedicated support forum.
|
544 |
+
</li>
|
545 |
+
<li><strong>Public and Private Tickets</strong> - Private tickets help you work with us
|
546 |
+
directly regarding the issues you are facing in your site by sharing the details of
|
547 |
+
your site securely.
|
548 |
+
</li>
|
549 |
+
<li><strong>Searchable Topics</strong> - The support forum is searchable for public
|
550 |
+
topics helping you look for resolution of similar issues reported by other
|
551 |
+
customers.
|
552 |
+
</li>
|
553 |
+
</li>
|
554 |
+
<li><strong>Faster turnaround</strong> - The threads opened by paid customers will be
|
555 |
+
attended to within 24 hours of opening a ticket.
|
556 |
+
</li>
|
557 |
+
<li><strong>Bug fixes and Enhancements</strong> - Any fixes and enhancements made to the
|
558 |
+
elements will be prioritized to arrive quicker on the premium version.
|
559 |
+
</li>
|
560 |
+
<li><strong>Proven Expertize</strong> - Having served over <strong>12,280+
|
561 |
+
customers</strong> of our themes over past 3 years, the support provided by us
|
562 |
+
is proven in competence and commitment.
|
563 |
+
</li>
|
564 |
+
</ul>
|
565 |
+
|
566 |
+
<div class="lvca-spacer" style="height: 25px"></div>
|
567 |
+
|
568 |
+
<a class="lvca-button purchase" href="https://www.livemeshthemes.com/visual-composer-addons/pricing/"><i class="dashicons dashicons-cart"></i><?php echo __('Go Premium', 'livemesh-vc-addons'); ?></a>
|
569 |
+
|
570 |
+
</div>
|
571 |
+
|
572 |
+
</div>
|
573 |
+
|
574 |
+
</div>
|
575 |
+
|
576 |
+
<!------------------- OPTIONS HOLDER END -------------------->
|
577 |
+
</div>
|
578 |
+
|
579 |
+
</div>
|
580 |
+
|
581 |
+
<!------------------- BUILD PANEL SETTINGS -------------------->
|
582 |
+
|
583 |
+
</div>
|
584 |
+
|
585 |
+
</div>
|
assets/css/lvca-frontend.css
CHANGED
@@ -11,9 +11,6 @@ html {
|
|
11 |
box-sizing: inherit; }
|
12 |
|
13 |
/* --------------- Reset styles --------- */
|
14 |
-
.panel-grid .widget {
|
15 |
-
overflow: initial; }
|
16 |
-
|
17 |
.lvca-container ol, .lvca-container ul, .lvca-container ol li, .lvca-container ul li, .lvca-container ol:hover, .lvca-container ul:hover, .lvca-container ul li:hover, .lvca-container ol li:hover, .lvca-container ol li a, .lvca-container ul li a, .lvca-container ol li a:hover, .lvca-container ul li a:hover, .lvca-container img {
|
18 |
padding: 0;
|
19 |
margin: 0;
|
@@ -225,6 +222,9 @@ html {
|
|
225 |
width: 100%; } }
|
226 |
|
227 |
/* --------------- Flexslider Styles -------------- */
|
|
|
|
|
|
|
228 |
.lvca-container .lvca-flex-direction-nav li {
|
229 |
position: initial; }
|
230 |
.lvca-container .lvca-flex-direction-nav a, .lvca-container .lvca-flex-direction-nav a:hover {
|
@@ -255,7 +255,8 @@ html {
|
|
255 |
-webkit-transition: all 0.3s ease-in-out 0s;
|
256 |
-moz-transition: all 0.3s ease-in-out 0s;
|
257 |
-ms-transition: all 0.3s ease-in-out 0s;
|
258 |
-
transition: all 0.3s ease-in-out 0s;
|
|
|
259 |
.lvca-container .lvca-flex-direction-nav a:before, .lvca-container .lvca-flex-direction-nav a:hover:before, .lvca-container .lvca-flex-direction-nav a:hover:before, .lvca-container .lvca-flex-direction-nav a:hover:hover:before {
|
260 |
margin: 2px;
|
261 |
vertical-align: middle;
|
@@ -284,7 +285,9 @@ html {
|
|
284 |
width: 100%;
|
285 |
position: absolute;
|
286 |
bottom: -40px;
|
287 |
-
text-align: center;
|
|
|
|
|
288 |
.lvca-container .lvca-flex-control-nav li, .lvca-container .lvca-flex-control-nav li:hover {
|
289 |
margin: 0 8px 0 0;
|
290 |
padding: 0;
|
@@ -302,7 +305,8 @@ html {
|
|
302 |
-ms-transition: all 0.2s ease-in 0s;
|
303 |
transition: all 0.2s ease-in 0s;
|
304 |
display: inline-block;
|
305 |
-
vertical-align: middle;
|
|
|
306 |
.lvca-dark-bg .lvca-container .lvca-flex-control-nav li a, .lvca-dark-bg .lvca-container .lvca-flex-control-nav li a:hover {
|
307 |
background: #ccc;
|
308 |
border-color: #ccc; }
|
@@ -349,7 +353,8 @@ html {
|
|
349 |
-ms-transition: all 0.3s ease-in-out 0s;
|
350 |
transition: all 0.3s ease-in-out 0s;
|
351 |
overflow: hidden;
|
352 |
-
box-shadow: none;
|
|
|
353 |
.lvca-container button.slick-prev:before, .lvca-container button.slick-next:before {
|
354 |
margin: 2px;
|
355 |
vertical-align: middle; }
|
@@ -375,10 +380,13 @@ html {
|
|
375 |
.lvca-container ul.slick-dots {
|
376 |
width: 100%;
|
377 |
position: absolute;
|
378 |
-
bottom: -
|
379 |
-
text-align: center;
|
|
|
|
|
380 |
.lvca-container ul.slick-dots li {
|
381 |
-
margin: 0 8px 0 0;
|
|
|
382 |
display: inline-block;
|
383 |
font-size: 0; }
|
384 |
.lvca-container ul.slick-dots li button {
|
@@ -389,17 +397,20 @@ html {
|
|
389 |
width: 12px;
|
390 |
height: 12px;
|
391 |
box-shadow: none;
|
392 |
-
-webkit-transition:
|
393 |
-
-moz-transition:
|
394 |
-
-ms-transition:
|
395 |
-
transition:
|
396 |
font-size: 0; }
|
397 |
.lvca-dark-bg .lvca-container ul.slick-dots li button {
|
398 |
background: #888 !important;
|
399 |
border-color: #888 !important; }
|
400 |
-
.lvca-container ul.slick-dots li button:hover {
|
401 |
background: none !important;
|
402 |
border-color: #aaa !important; }
|
|
|
|
|
|
|
403 |
|
404 |
/* -------- Widget separator headline ------------ */
|
405 |
.lvca-widget-heading {
|
11 |
box-sizing: inherit; }
|
12 |
|
13 |
/* --------------- Reset styles --------- */
|
|
|
|
|
|
|
14 |
.lvca-container ol, .lvca-container ul, .lvca-container ol li, .lvca-container ul li, .lvca-container ol:hover, .lvca-container ul:hover, .lvca-container ul li:hover, .lvca-container ol li:hover, .lvca-container ol li a, .lvca-container ul li a, .lvca-container ol li a:hover, .lvca-container ul li a:hover, .lvca-container img {
|
15 |
padding: 0;
|
16 |
margin: 0;
|
222 |
width: 100%; } }
|
223 |
|
224 |
/* --------------- Flexslider Styles -------------- */
|
225 |
+
.lvca-container .lvca-flex-direction-nav {
|
226 |
+
padding: 0 !important;
|
227 |
+
margin: 0 !important; }
|
228 |
.lvca-container .lvca-flex-direction-nav li {
|
229 |
position: initial; }
|
230 |
.lvca-container .lvca-flex-direction-nav a, .lvca-container .lvca-flex-direction-nav a:hover {
|
255 |
-webkit-transition: all 0.3s ease-in-out 0s;
|
256 |
-moz-transition: all 0.3s ease-in-out 0s;
|
257 |
-ms-transition: all 0.3s ease-in-out 0s;
|
258 |
+
transition: all 0.3s ease-in-out 0s;
|
259 |
+
outline: none; }
|
260 |
.lvca-container .lvca-flex-direction-nav a:before, .lvca-container .lvca-flex-direction-nav a:hover:before, .lvca-container .lvca-flex-direction-nav a:hover:before, .lvca-container .lvca-flex-direction-nav a:hover:hover:before {
|
261 |
margin: 2px;
|
262 |
vertical-align: middle;
|
285 |
width: 100%;
|
286 |
position: absolute;
|
287 |
bottom: -40px;
|
288 |
+
text-align: center;
|
289 |
+
padding: 0 !important;
|
290 |
+
margin: 0 !important; }
|
291 |
.lvca-container .lvca-flex-control-nav li, .lvca-container .lvca-flex-control-nav li:hover {
|
292 |
margin: 0 8px 0 0;
|
293 |
padding: 0;
|
305 |
-ms-transition: all 0.2s ease-in 0s;
|
306 |
transition: all 0.2s ease-in 0s;
|
307 |
display: inline-block;
|
308 |
+
vertical-align: middle;
|
309 |
+
outline: none; }
|
310 |
.lvca-dark-bg .lvca-container .lvca-flex-control-nav li a, .lvca-dark-bg .lvca-container .lvca-flex-control-nav li a:hover {
|
311 |
background: #ccc;
|
312 |
border-color: #ccc; }
|
353 |
-ms-transition: all 0.3s ease-in-out 0s;
|
354 |
transition: all 0.3s ease-in-out 0s;
|
355 |
overflow: hidden;
|
356 |
+
box-shadow: none;
|
357 |
+
outline: none; }
|
358 |
.lvca-container button.slick-prev:before, .lvca-container button.slick-next:before {
|
359 |
margin: 2px;
|
360 |
vertical-align: middle; }
|
380 |
.lvca-container ul.slick-dots {
|
381 |
width: 100%;
|
382 |
position: absolute;
|
383 |
+
bottom: -30px;
|
384 |
+
text-align: center;
|
385 |
+
padding: 0 !important;
|
386 |
+
margin: 0 !important; }
|
387 |
.lvca-container ul.slick-dots li {
|
388 |
+
margin: 0 8px 0 0 !important;
|
389 |
+
padding: 0 !important;
|
390 |
display: inline-block;
|
391 |
font-size: 0; }
|
392 |
.lvca-container ul.slick-dots li button {
|
397 |
width: 12px;
|
398 |
height: 12px;
|
399 |
box-shadow: none;
|
400 |
+
-webkit-transition: background 0.3s ease-in-out 0s;
|
401 |
+
-moz-transition: background 0.3s ease-in-out 0s;
|
402 |
+
-ms-transition: background 0.3s ease-in-out 0s;
|
403 |
+
transition: background 0.3s ease-in-out 0s;
|
404 |
font-size: 0; }
|
405 |
.lvca-dark-bg .lvca-container ul.slick-dots li button {
|
406 |
background: #888 !important;
|
407 |
border-color: #888 !important; }
|
408 |
+
.lvca-container ul.slick-dots li button:hover, .lvca-container ul.slick-dots li.slick-active button {
|
409 |
background: none !important;
|
410 |
border-color: #aaa !important; }
|
411 |
+
.lvca-container ul.slick-dots li.slick-active button {
|
412 |
+
width: 14px;
|
413 |
+
height: 14px; }
|
414 |
|
415 |
/* -------- Widget separator headline ------------ */
|
416 |
.lvca-widget-heading {
|
assets/css/lvca-frontend.css.map
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
{
|
2 |
"version": 3,
|
3 |
-
"mappings": "AAGE,IAAK;EACH,UAAU,EAAE,UAAU;;AAItB,sBAEU;EACR,UAAU,EAAE,OAAO;;AARvB,IAAK;EACH,UAAU,EAAE,UAAU;;AAItB,sBAEU;EACR,UAAU,EAAE,OAAO;;;
|
4 |
"sources": ["../../../../bower_components/neat/app/assets/stylesheets/grid/_box-sizing.scss","lvca-frontend.scss","../../../../bower_components/neat/app/assets/stylesheets/grid/_omega.scss","_lvca-lib.scss","../../../../bower_components/neat/app/assets/stylesheets/grid/_span-columns.scss"],
|
5 |
"names": [],
|
6 |
"file": "lvca-frontend.css"
|
1 |
{
|
2 |
"version": 3,
|
3 |
+
"mappings": "AAGE,IAAK;EACH,UAAU,EAAE,UAAU;;AAItB,sBAEU;EACR,UAAU,EAAE,OAAO;;AARvB,IAAK;EACH,UAAU,EAAE,UAAU;;AAItB,sBAEU;EACR,UAAU,EAAE,OAAO;;;ACFvB,uUAAwH;EACtH,OAAO,EAAE,CAAC;EACV,MAAM,EAAE,CAAC;EACT,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,IAAI;EAChB,UAAU,EAAE,IAAI;EAChB,UAAU,EAAE,IAAI;EAChB,yzBAAkB;IAChB,OAAO,EAAE,IAAI;AAGjB,iBAAE;EACA,eAAe,EAAE,OAAO;AAE1B,mBAAI;EACF,SAAS,EAAE,IAAI;EACf,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;;;AAKhB,eAAgB;EACd,WAAW,EAAE,IAAI;EACjB,YAAY,EAAE,IAAI;;AAEpB,mBAAoB;EAClB,MAAM,EAAE,CAAC;;AAEX,YAAa;EACX,UAAU,EAAE,MAAM;;AAEpB,aAAc;ECcR,YAAoB,EAAE,CAAC;;ADV3B,uXAAwL;EACtL,UAAU,EAAE,GAAG;;AE0BjB,yCAA8C;EFrB5C,4BAAa;IGgBb,KAAK,EAAE,IAAsB;IAG3B,OAAO,EAAE,KAAK;IAed,YAAoB,EAAE,QAA+B;IACrD,KAAK,EAAE,QAAuC;IAE9C,uCAAa;MACX,YAAoB,EAAE,CAAC;IFZ7B,2CAAuB;MACrB,YAAoB,EAAE,CAAC;IAIvB,6CAAyB;MACvB,KAAK,EARY,IAAkC;EDnBrD,4BAAa;IGWb,KAAK,EAAE,IAAsB;IAG3B,OAAO,EAAE,KAAK;IAed,YAAoB,EAAE,QAA+B;IACrD,KAAK,EAAE,QAAuC;IAE9C,uCAAa;MACX,YAAoB,EAAE,CAAC;IFZ7B,0CAAuB;MACrB,YAAoB,EAAE,CAAC;IAIvB,4CAAyB;MACvB,KAAK,EARY,IAAkC;EDdrD,8BAAe;IGMf,KAAK,EAAE,IAAsB;IAG3B,OAAO,EAAE,KAAK;IAed,YAAoB,EAAE,QAA+B;IACrD,KAAK,EAAE,SAAuC;IAE9C,yCAAa;MACX,YAAoB,EAAE,CAAC;IFZ7B,4CAAuB;MACrB,YAAoB,EAAE,CAAC;IAIvB,8CAAyB;MACvB,KAAK,EARY,IAAkC;EDTrD,6BAAc;IGCd,KAAK,EAAE,IAAsB;IAG3B,OAAO,EAAE,KAAK;IAed,YAAoB,EAAE,QAA+B;IACrD,KAAK,EAAE,SAAuC;IAE9C,wCAAa;MACX,YAAoB,EAAE,CAAC;IFZ7B,2CAAuB;MACrB,YAAoB,EAAE,CAAC;IAIvB,6CAAyB;MACvB,KAAK,EARY,IAAkC;EDJrD,6BAAc;IGJd,KAAK,EAAE,IAAsB;IAG3B,OAAO,EAAE,KAAK;IAed,YAAoB,EAAE,QAA+B;IACrD,KAAK,EAAE,SAAuC;IAE9C,wCAAa;MACX,YAAoB,EAAE,CAAC;EHd3B,4BAAa;IGRb,KAAK,EAAE,IAAsB;IAG3B,OAAO,EAAE,KAAK;IAed,YAAoB,EAAE,QAA+B;IACrD,KAAK,EAAE,SAAuC;IAE9C,uCAAa;MACX,YAAoB,EAAE,CAAC;IFZ7B,0CAAuB;MACrB,YAAoB,EAAE,CAAC;IAIvB,4CAAyB;MACvB,KAAK,EARY,IAAkC;EDKrD,8BAAe;IGbf,KAAK,EAAE,IAAsB;IAG3B,OAAO,EAAE,KAAK;IAed,YAAoB,EAAE,QAA+B;IACrD,KAAK,EAAE,SAAuC;IAE9C,yCAAa;MACX,YAAoB,EAAE,CAAC;EHL3B,8BAAe;IGjBf,KAAK,EAAE,IAAsB;IAG3B,OAAO,EAAE,KAAK;IAed,YAAoB,EAAE,QAA+B;IACrD,KAAK,EAAE,SAAuC;IAE9C,yCAAa;MACX,YAAoB,EAAE,CAAC;EHD3B,6BAAc;IGrBd,KAAK,EAAE,IAAsB;IAG3B,OAAO,EAAE,KAAK;IAed,YAAoB,EAAE,QAA+B;IACrD,KAAK,EAAE,SAAuC;IAE9C,wCAAa;MACX,YAAoB,EAAE,CAAC;EHG3B,4BAAa;IGzBb,KAAK,EAAE,IAAsB;IAG3B,OAAO,EAAE,KAAK;IAed,YAAoB,EAAE,QAA+B;IACrD,KAAK,EAAE,SAAuC;IAE9C,uCAAa;MACX,YAAoB,EAAE,CAAC;EHO3B,+BAAgB;IG7BhB,KAAK,EAAE,IAAsB;IAG3B,OAAO,EAAE,KAAK;IAed,YAAoB,EAAE,QAA+B;IACrD,KAAK,EAAE,SAAuC;IAE9C,0CAAa;MACX,YAAoB,EAAE,CAAC;AHY7B,gEAAiC;EAC/B,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,KAAK;EACd,KAAK,EAAE,IAAI;;;AEhCb,yCAA8C;EF2C5C,iCAAkB;IGhDlB,KAAK,EAAE,IAAsB;IAG3B,OAAO,EAAE,KAAK;IAed,YAAoB,EAAE,QAA+B;IACrD,KAAK,EAAE,SAAuC;IAE9C,4CAAa;MACX,YAAoB,EAAE,CAAC;IFZ7B,+CAAuB;MACrB,YAAoB,EAAE,CAAC;IAIvB,iDAAyB;MACvB,KAAK,EARY,IAAkC;;;ACPvD,gEAA2E;EF8DzE,uXAAwL;IG/DxL,KAAK,EAAE,IAAsB;IAG3B,OAAO,EAAE,KAAK;IAed,YAAoB,EAAE,QAA+B;IACrD,KAAK,EAAE,SAAuC;IAE9C,2fAAa;MACX,YAAoB,EAAE,CAAC;IFZ7B,+hBAAuB;MACrB,YAAoB,EAAE,CAAC;IAIvB,ujBAAyB;MACvB,KAAK,EARY,IAAkC;ACXvD,yCAA8C;EF2E5C,uXAAwL;IACtL,KAAK,EAAE,IAAI;ICrFX,YAAoB,EAAE,CAAC;;;AD6F7B,6BAA8B;EC7FxB,YAAoB,EAAE,CAAC;;;ADkG7B,6DAA8D;EClGxD,YAAoB,EAAE,CAAC;;ADuG3B,mkBAAoY;ECvGhY,YAAoB,EAAE,CAAC;ACiB3B,yCAA8C;EF4F5C,6CAA8B;IAC5B,KAAK,EAAE,QAAgB;EAGzB,6CAA8B;IAC5B,KAAK,EAAE,SAAgB;EAGzB,kDAAmC;IACjC,KAAK,EAAE,GAAgB;EAGzB,+CAAgC;IAC9B,KAAK,EAAE,GAAgB;EAGzB,8CAA+B;IAC7B,KAAK,EAAE,SAAgB;EAGzB,8CAA+B;IAC7B,KAAK,EAAE,SAAgB;EAGzB,6CAA8B;IAC5B,KAAK,EAAE,GAAgB;EAGzB,+CAAgC;IAC9B,KAAK,EAAE,SAAgB;EAGzB,+CAAgC;IAC9B,KAAK,EAAE,SAAgB;EAGzB,8CAA+B;IAC7B,KAAK,EAAE,GAAgB;EAGzB,6CAA8B;IAC5B,KAAK,EAAE,SAAiB;EAG1B,gDAAiC;IAC/B,KAAK,EAAE,SAAiB;AE7I5B,gEAA2E;EFkJzE,mkBAAoY;IAClY,KAAK,EAAE,GAAgB;AEvJ3B,yCAA8C;EF4J5C,mkBAAoY;IAClY,KAAK,EAAE,IAAI;;;AAQf,wCAAyB;EACvB,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,YAAY;AAEtB,2CAA4B;EAC1B,QAAQ,EAAE,OAAO;AAEnB,4FAA6D;EAC3D,OAAO,EAAE,CAAC;EACV,WAAW,EAAE,IAAI;EACjB,UAAU,EAAE,IAAI;EAChB,KAAK,EAAE,IAAI;EEtJb,WAAW,EAAE,yBAAyB;EACtC,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,MAAM;EACnB,YAAY,EAAE,MAAM;EACpB,cAAc,EAAE,IAAI;EACpB,WAAW,EAAE,CAAC;EACd,sBAAsB,EAAE,WAAW;EACnC,uBAAuB,EAAE,SAAS;EFgJhC,SAAS,EAAE,IAAI;EACf,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,SAAS;EACjB,MAAM,EAAE,OAAO;EACf,IAAI,EAAE,OAAO;EACb,KAAK,EAAE,OAAO;EACd,GAAG,EAAE,GAAG;EACR,WAAW,EAAE,CAAC;EACd,UAAU,EAAE,MAAM;EAClB,KAAK,EAAE,IAAI;EE9Nb,kBAAoB,EF+NY,uBAAwB;EE9NxD,eAAiB,EF8Ne,uBAAwB;EE7NxD,cAAgB,EF6NgB,uBAAwB;EE5NxD,UAAY,EF4NoB,uBAAwB;EACtD,OAAO,EAAE,IAAI;EACb,kOAAyB;IACvB,MAAM,EAAE,GAAG;IACX,cAAc,EAAE,MAAM;IACtB,OAAO,EAAE,MAAM;IACf,WAAW,EAAE,kBAAkB;IAC/B,OAAO,EAAE,CAAC;EAEZ,wGAAQ;IACN,KAAK,EAAE,IAAI;EAEb,wHAAgB;IACd,KAAK,EAAE,IAAI;IACX,oIAAQ;MACN,KAAK,EAAE,IAAI;EE5MjB,yCAA8C;IF4K9C,4FAA6D;MAoCzD,OAAO,EAAE,IAAI;;AAGjB,yDAA0C;EACxC,IAAI,EAAE,KAAK;EACX,gEAAS;IACP,OAAO,EAAE,OAAO;AAGpB,yDAA0C;EACxC,KAAK,EAAE,KAAK;EACZ,gEAAS;IACP,OAAO,EAAE,OAAO;AAGpB,sCAAuB;EACrB,KAAK,EAAE,IAAI;EACX,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,KAAK;EACb,UAAU,EAAE,MAAM;EAClB,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,YAAY;EACpB,0FAAa;IACX,MAAM,EAAE,SAAS;IACjB,OAAO,EAAE,CAAC;IACV,MAAM,EAAE,IAAI;IACZ,UAAU,EAAE,IAAI;EAElB,8FAAiB;IACf,UAAU,EAAE,IAAI;IAChB,MAAM,EAAE,cAAc;IACtB,aAAa,EAAE,GAAG;IAClB,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,UAAU,EAAE,IAAI;IEpRpB,kBAAoB,EFqRc,mBAAoB;IEpRtD,eAAiB,EFoRiB,mBAAoB;IEnRtD,cAAgB,EFmRkB,mBAAoB;IElRtD,UAAY,EFkRsB,mBAAoB;IAClD,OAAO,EAAE,YAAY;IACrB,cAAc,EAAE,MAAM;IACtB,OAAO,EAAE,IAAI;IACb,0HAAgB;MACd,UAAU,EAAE,IAAI;MAChB,YAAY,EAAE,IAAI;EAGtB,mLAA+D;IAC7D,UAAU,EAAE,IAAI;EAElB,gIAAmD;IACjD,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;;;AAMlB,0BAA2B;EACzB,UAAU,EAAE,qDAAqD;;AAIjE,oEAAqC;EACnC,QAAQ,EAAE,QAAQ;EAClB,OAAO,EAAE,CAAC;EACV,WAAW,EAAE,IAAI;EACjB,UAAU,EAAE,eAAe;EAC3B,MAAM,EAAE,IAAI;EACZ,OAAO,EAAE,CAAC;EACV,KAAK,EAAE,IAAI;EEzPb,WAAW,EAAE,yBAAyB;EACtC,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,MAAM;EAClB,WAAW,EAAE,MAAM;EACnB,YAAY,EAAE,MAAM;EACpB,cAAc,EAAE,IAAI;EACpB,WAAW,EAAE,CAAC;EACd,sBAAsB,EAAE,WAAW;EACnC,uBAAuB,EAAE,SAAS;EFmPhC,SAAS,EAAE,IAAI;EACf,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,IAAI;EACZ,MAAM,EAAE,SAAS;EACjB,MAAM,EAAE,OAAO;EACf,IAAI,EAAE,OAAO;EACb,KAAK,EAAE,OAAO;EACd,GAAG,EAAE,GAAG;EACR,WAAW,EAAE,CAAC;EACd,UAAU,EAAE,MAAM;EAClB,KAAK,EAAE,eAAe;EEjUxB,kBAAoB,EFkUY,uBAAwB;EEjUxD,eAAiB,EFiUe,uBAAwB;EEhUxD,cAAgB,EFgUgB,uBAAwB;EE/TxD,UAAY,EF+ToB,uBAAwB;EACtD,QAAQ,EAAE,MAAM;EAChB,UAAU,EAAE,IAAI;EAChB,OAAO,EAAE,IAAI;EACb,kFAAS;IACP,MAAM,EAAE,GAAG;IACX,cAAc,EAAE,MAAM;EAExB,gFAAQ;IACN,KAAK,EAAE,eAAe;EAExB,gGAAgB;IACd,KAAK,EAAE,eAAe;IACtB,4GAAQ;MACN,KAAK,EAAE,eAAe;MACtB,UAAU,EAAE,eAAe;EE/SjC,0CAA8C;IF4Q9C,oEAAqC;MAuCjC,OAAO,EAAE,eAAe;;AAG5B,iCAAkB;EAChB,IAAI,EAAE,KAAK;EACX,wCAAS;IACP,OAAO,EAAE,OAAO;AAGpB,iCAAkB;EAChB,KAAK,EAAE,KAAK;EACZ,wCAAS;IACP,OAAO,EAAE,OAAO;AAGpB,6BAAc;EACZ,KAAK,EAAE,IAAI;EACX,QAAQ,EAAE,QAAQ;EAClB,MAAM,EAAE,KAAK;EACb,UAAU,EAAE,MAAM;EAClB,OAAO,EAAE,YAAY;EACrB,MAAM,EAAE,YAAY;EACpB,gCAAG;IACD,MAAM,EAAE,oBAAoB;IAC5B,OAAO,EAAE,YAAY;IACrB,OAAO,EAAE,YAAY;IACrB,SAAS,EAAE,CAAC;EAEd,uCAAU;IACR,OAAO,EAAE,CAAC;IACV,UAAU,EAAE,IAAI;IAChB,MAAM,EAAE,cAAc;IACtB,aAAa,EAAE,GAAG;IAClB,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;IACZ,UAAU,EAAE,IAAI;IExXpB,kBAAoB,EFyXc,8BAA+B;IExXjE,eAAiB,EFwXiB,8BAA+B;IEvXjE,cAAgB,EFuXkB,8BAA+B;IEtXjE,UAAY,EFsXsB,8BAA+B;IAC7D,SAAS,EAAE,CAAC;IACZ,qDAAgB;MACd,UAAU,EAAE,eAAe;MAC3B,YAAY,EAAE,eAAe;EAGjC,mGAAwC;IACtC,UAAU,EAAE,eAAe;IAC3B,YAAY,EAAE,eAAe;EAE/B,oDAAuB;IACrB,KAAK,EAAE,IAAI;IACX,MAAM,EAAE,IAAI;;;AAOlB,oBAAqB;EEhUnB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;EACjB,cAAc,EAAE,GAAG;EACnB,WAAW,EAAE,IAAI;EACjB,KAAK,EAAE,IAAI;EACX,cAAc,EAAE,SAAS;EACzB,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,CAAC;EACb,aAAa,EAAE,IAAI;EF0TnB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;EACjB,UAAU,EAAE,MAAM;EE/WlB,yCAA8C;IF2WhD,oBAAqB;MAMjB,SAAS,EAAE,IAAI;MACf,WAAW,EAAE,IAAI;;;AAKrB,YAAa;EACX,KAAK,EAAE,IAAI",
|
4 |
"sources": ["../../../../bower_components/neat/app/assets/stylesheets/grid/_box-sizing.scss","lvca-frontend.scss","../../../../bower_components/neat/app/assets/stylesheets/grid/_omega.scss","_lvca-lib.scss","../../../../bower_components/neat/app/assets/stylesheets/grid/_span-columns.scss"],
|
5 |
"names": [],
|
6 |
"file": "lvca-frontend.css"
|
assets/css/lvca-frontend.scss
CHANGED
@@ -6,9 +6,6 @@
|
|
6 |
|
7 |
/* --------------- Reset styles --------- */
|
8 |
|
9 |
-
.panel-grid .widget {
|
10 |
-
overflow: initial;
|
11 |
-
}
|
12 |
.lvca-container {
|
13 |
ol, ul, ol li, ul li, ol:hover, ul:hover, ul li:hover, ol li:hover, ol li a, ul li a, ol li a:hover, ul li a:hover, img {
|
14 |
padding: 0;
|
@@ -230,6 +227,10 @@ $grid-columns: 12;
|
|
230 |
/* --------------- Flexslider Styles -------------- */
|
231 |
|
232 |
.lvca-container {
|
|
|
|
|
|
|
|
|
233 |
.lvca-flex-direction-nav li {
|
234 |
position: initial;
|
235 |
}
|
@@ -251,6 +252,7 @@ $grid-columns: 12;
|
|
251 |
text-align: center;
|
252 |
color: #aaa;
|
253 |
@include vendorize(transition, all 0.3s ease-in-out 0s);
|
|
|
254 |
&:before, &:hover:before {
|
255 |
margin: 2px;
|
256 |
vertical-align: middle;
|
@@ -288,6 +290,8 @@ $grid-columns: 12;
|
|
288 |
position: absolute;
|
289 |
bottom: -40px;
|
290 |
text-align: center;
|
|
|
|
|
291 |
li, li:hover {
|
292 |
margin: 0 8px 0 0;
|
293 |
padding: 0;
|
@@ -304,7 +308,7 @@ $grid-columns: 12;
|
|
304 |
@include vendorize(transition, all 0.2s ease-in 0s);
|
305 |
display: inline-block;
|
306 |
vertical-align: middle;
|
307 |
-
|
308 |
.lvca-dark-bg & {
|
309 |
background: #ccc;
|
310 |
border-color: #ccc;
|
@@ -349,6 +353,7 @@ $grid-columns: 12;
|
|
349 |
@include vendorize(transition, all 0.3s ease-in-out 0s);
|
350 |
overflow: hidden;
|
351 |
box-shadow: none;
|
|
|
352 |
&:before {
|
353 |
margin: 2px;
|
354 |
vertical-align: middle;
|
@@ -382,10 +387,13 @@ $grid-columns: 12;
|
|
382 |
ul.slick-dots {
|
383 |
width: 100%;
|
384 |
position: absolute;
|
385 |
-
bottom: -
|
386 |
text-align: center;
|
|
|
|
|
387 |
li {
|
388 |
-
margin: 0 8px 0 0;
|
|
|
389 |
display: inline-block;
|
390 |
font-size: 0;
|
391 |
}
|
@@ -397,19 +405,24 @@ $grid-columns: 12;
|
|
397 |
width: 12px;
|
398 |
height: 12px;
|
399 |
box-shadow: none;
|
400 |
-
@include vendorize(transition,
|
401 |
font-size: 0;
|
402 |
.lvca-dark-bg & {
|
403 |
background: #888 !important;
|
404 |
border-color: #888 !important;
|
405 |
}
|
406 |
}
|
407 |
-
li button:hover {
|
408 |
background: none !important;
|
409 |
border-color: #aaa !important;
|
410 |
}
|
|
|
|
|
|
|
411 |
}
|
412 |
}
|
|
|
|
|
413 |
/* -------- Widget separator headline ------------ */
|
414 |
|
415 |
.lvca-widget-heading {
|
6 |
|
7 |
/* --------------- Reset styles --------- */
|
8 |
|
|
|
|
|
|
|
9 |
.lvca-container {
|
10 |
ol, ul, ol li, ul li, ol:hover, ul:hover, ul li:hover, ol li:hover, ol li a, ul li a, ol li a:hover, ul li a:hover, img {
|
11 |
padding: 0;
|
227 |
/* --------------- Flexslider Styles -------------- */
|
228 |
|
229 |
.lvca-container {
|
230 |
+
.lvca-flex-direction-nav {
|
231 |
+
padding: 0 !important;
|
232 |
+
margin: 0 !important;
|
233 |
+
}
|
234 |
.lvca-flex-direction-nav li {
|
235 |
position: initial;
|
236 |
}
|
252 |
text-align: center;
|
253 |
color: #aaa;
|
254 |
@include vendorize(transition, all 0.3s ease-in-out 0s);
|
255 |
+
outline: none;
|
256 |
&:before, &:hover:before {
|
257 |
margin: 2px;
|
258 |
vertical-align: middle;
|
290 |
position: absolute;
|
291 |
bottom: -40px;
|
292 |
text-align: center;
|
293 |
+
padding: 0 !important;
|
294 |
+
margin: 0 !important;
|
295 |
li, li:hover {
|
296 |
margin: 0 8px 0 0;
|
297 |
padding: 0;
|
308 |
@include vendorize(transition, all 0.2s ease-in 0s);
|
309 |
display: inline-block;
|
310 |
vertical-align: middle;
|
311 |
+
outline: none;
|
312 |
.lvca-dark-bg & {
|
313 |
background: #ccc;
|
314 |
border-color: #ccc;
|
353 |
@include vendorize(transition, all 0.3s ease-in-out 0s);
|
354 |
overflow: hidden;
|
355 |
box-shadow: none;
|
356 |
+
outline: none;
|
357 |
&:before {
|
358 |
margin: 2px;
|
359 |
vertical-align: middle;
|
387 |
ul.slick-dots {
|
388 |
width: 100%;
|
389 |
position: absolute;
|
390 |
+
bottom: -30px;
|
391 |
text-align: center;
|
392 |
+
padding: 0 !important;
|
393 |
+
margin: 0 !important;
|
394 |
li {
|
395 |
+
margin: 0 8px 0 0 !important;
|
396 |
+
padding: 0 !important;
|
397 |
display: inline-block;
|
398 |
font-size: 0;
|
399 |
}
|
405 |
width: 12px;
|
406 |
height: 12px;
|
407 |
box-shadow: none;
|
408 |
+
@include vendorize(transition, background 0.3s ease-in-out 0s);
|
409 |
font-size: 0;
|
410 |
.lvca-dark-bg & {
|
411 |
background: #888 !important;
|
412 |
border-color: #888 !important;
|
413 |
}
|
414 |
}
|
415 |
+
li button:hover, li.slick-active button {
|
416 |
background: none !important;
|
417 |
border-color: #aaa !important;
|
418 |
}
|
419 |
+
li.slick-active button {
|
420 |
+
width: 14px;
|
421 |
+
height: 14px;
|
422 |
}
|
423 |
}
|
424 |
+
}
|
425 |
+
|
426 |
/* -------- Widget separator headline ------------ */
|
427 |
|
428 |
.lvca-widget-heading {
|
assets/js/lvca-admin.js
DELETED
File without changes
|
assets/js/lvca-admin.min.js
DELETED
File without changes
|
assets/js/lvca-frontend.js
CHANGED
@@ -15,6 +15,7 @@ if (typeof (jQuery) != 'undefined') {
|
|
15 |
|
16 |
init: function () {
|
17 |
this.carousel();
|
|
|
18 |
},
|
19 |
|
20 |
isMobile: function () {
|
@@ -41,6 +42,16 @@ if (typeof (jQuery) != 'undefined') {
|
|
41 |
return prefix;
|
42 |
},
|
43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
carousel: function () {
|
45 |
|
46 |
if ($().slick === undefined) {
|
@@ -53,35 +64,37 @@ if (typeof (jQuery) != 'undefined') {
|
|
53 |
|
54 |
var carousel_elem = $(this);
|
55 |
|
56 |
-
var
|
|
|
|
|
57 |
|
58 |
-
var dots =
|
59 |
|
60 |
-
var autoplay =
|
61 |
|
62 |
-
var autoplay_speed =
|
63 |
|
64 |
-
var animation_speed =
|
65 |
|
66 |
-
var fade =
|
67 |
|
68 |
-
var pause_on_hover =
|
69 |
|
70 |
-
var display_columns =
|
71 |
|
72 |
-
var scroll_columns =
|
73 |
|
74 |
-
var tablet_width =
|
75 |
|
76 |
-
var tablet_display_columns =
|
77 |
|
78 |
-
var tablet_scroll_columns =
|
79 |
|
80 |
-
var mobile_width =
|
81 |
|
82 |
-
var mobile_display_columns =
|
83 |
|
84 |
-
var mobile_scroll_columns =
|
85 |
|
86 |
carousel_elem.slick({
|
87 |
arrows: arrows,
|
15 |
|
16 |
init: function () {
|
17 |
this.carousel();
|
18 |
+
this.output_custom_css();
|
19 |
},
|
20 |
|
21 |
isMobile: function () {
|
42 |
return prefix;
|
43 |
},
|
44 |
|
45 |
+
output_custom_css: function () {
|
46 |
+
|
47 |
+
var custom_css = lvca_settings['custom_css'];
|
48 |
+
if (custom_css !== undefined && custom_css !== '') {
|
49 |
+
custom_css = '<style type="text/css">' + custom_css + '</style>';
|
50 |
+
$('head').append(custom_css);
|
51 |
+
}
|
52 |
+
},
|
53 |
+
|
54 |
+
|
55 |
carousel: function () {
|
56 |
|
57 |
if ($().slick === undefined) {
|
64 |
|
65 |
var carousel_elem = $(this);
|
66 |
|
67 |
+
var settings = carousel_elem.data('settings');
|
68 |
+
|
69 |
+
var arrows = settings['arrows'] ? true : false;
|
70 |
|
71 |
+
var dots = settings['dots'] ? true : false;
|
72 |
|
73 |
+
var autoplay = settings['autoplay'] ? true : false;
|
74 |
|
75 |
+
var autoplay_speed = parseInt(settings['autoplay_speed']) || 3000;
|
76 |
|
77 |
+
var animation_speed = parseInt(settings['animation_speed']) || 300;
|
78 |
|
79 |
+
var fade = settings['fade'] ? true : false;
|
80 |
|
81 |
+
var pause_on_hover = settings['pause_on_hover'] ? true : false;
|
82 |
|
83 |
+
var display_columns = parseInt(settings['display_columns']) || 4;
|
84 |
|
85 |
+
var scroll_columns = parseInt(settings['scroll_columns']) || 4;
|
86 |
|
87 |
+
var tablet_width = parseInt(settings['tablet_width']) || 800;
|
88 |
|
89 |
+
var tablet_display_columns = parseInt(settings['tablet_display_columns']) || 2;
|
90 |
|
91 |
+
var tablet_scroll_columns = parseInt(settings['tablet_scroll_columns']) || 2;
|
92 |
|
93 |
+
var mobile_width = parseInt(settings['mobile_width']) || 480;
|
94 |
|
95 |
+
var mobile_display_columns = parseInt(settings['mobile_display_columns']) || 1;
|
96 |
|
97 |
+
var mobile_scroll_columns = parseInt(settings['mobile_scroll_columns']) || 1;
|
98 |
|
99 |
carousel_elem.slick({
|
100 |
arrows: arrows,
|
assets/js/lvca-frontend.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
"undefined"
|
1 |
+
if(typeof jQuery!="undefined"){jQuery.noConflict();(function($){"use strict";$(function(){var LVCA_Frontend={init:function(){this.carousel();this.output_custom_css()},isMobile:function(){"use strict";if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)){return true}return false},vendor_prefix:function(){var prefix;function prefix(){var styles=window.getComputedStyle(document.documentElement,"");prefix=(Array.prototype.slice.call(styles).join("").match(/-(moz|webkit|ms)-/)||styles.OLink===""&&["","o"])[1];return prefix}prefix();return prefix},output_custom_css:function(){var custom_css=lvca_settings["custom_css"];if(custom_css!==undefined&&custom_css!==""){custom_css='<style type="text/css">'+custom_css+"</style>";$("head").append(custom_css)}},carousel:function(){if($().slick===undefined){return}var carousel_elements=$(".lvca-carousel, .lvca-posts-carousel");carousel_elements.each(function(){var carousel_elem=$(this);var settings=carousel_elem.data("settings");var arrows=settings["arrows"]?true:false;var dots=settings["dots"]?true:false;var autoplay=settings["autoplay"]?true:false;var autoplay_speed=parseInt(settings["autoplay_speed"])||3e3;var animation_speed=parseInt(settings["animation_speed"])||300;var fade=settings["fade"]?true:false;var pause_on_hover=settings["pause_on_hover"]?true:false;var display_columns=parseInt(settings["display_columns"])||4;var scroll_columns=parseInt(settings["scroll_columns"])||4;var tablet_width=parseInt(settings["tablet_width"])||800;var tablet_display_columns=parseInt(settings["tablet_display_columns"])||2;var tablet_scroll_columns=parseInt(settings["tablet_scroll_columns"])||2;var mobile_width=parseInt(settings["mobile_width"])||480;var mobile_display_columns=parseInt(settings["mobile_display_columns"])||1;var mobile_scroll_columns=parseInt(settings["mobile_scroll_columns"])||1;carousel_elem.slick({arrows:arrows,dots:dots,infinite:true,autoplay:autoplay,autoplaySpeed:autoplay_speed,speed:animation_speed,fade:false,pauseOnHover:pause_on_hover,slidesToShow:display_columns,slidesToScroll:scroll_columns,responsive:[{breakpoint:tablet_width,settings:{slidesToShow:tablet_display_columns,slidesToScroll:tablet_scroll_columns}},{breakpoint:mobile_width,settings:{slidesToShow:mobile_display_columns,slidesToScroll:mobile_scroll_columns}}]})})}};LVCA_Frontend.init()})})(jQuery)}
|
assets/js/modernizr-custom.js
ADDED
@@ -0,0 +1,1384 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* modernizr v3.3.1
|
3 |
+
* Build http://modernizr.com/download?-csstransforms-csstransforms3d-flexbox-flexboxlegacy-touchevents-setclasses-shiv-dontmin-cssclassprefix:lvca-
|
4 |
+
*
|
5 |
+
* Copyright (c)
|
6 |
+
* Faruk Ates
|
7 |
+
* Paul Irish
|
8 |
+
* Alex Sexton
|
9 |
+
* Ryan Seddon
|
10 |
+
* Patrick Kettner
|
11 |
+
* Stu Cox
|
12 |
+
* Richard Herrera
|
13 |
+
|
14 |
+
* MIT License
|
15 |
+
*/
|
16 |
+
|
17 |
+
/*
|
18 |
+
* Modernizr tests which native CSS3 and HTML5 features are available in the
|
19 |
+
* current UA and makes the results available to you in two ways: as properties on
|
20 |
+
* a global `Modernizr` object, and as classes on the `<html>` element. This
|
21 |
+
* information allows you to progressively enhance your pages with a granular level
|
22 |
+
* of control over the experience.
|
23 |
+
*/
|
24 |
+
|
25 |
+
;(function(window, document, undefined){
|
26 |
+
var classes = [];
|
27 |
+
|
28 |
+
|
29 |
+
var tests = [];
|
30 |
+
|
31 |
+
|
32 |
+
/**
|
33 |
+
*
|
34 |
+
* ModernizrProto is the constructor for Modernizr
|
35 |
+
*
|
36 |
+
* @class
|
37 |
+
* @access public
|
38 |
+
*/
|
39 |
+
|
40 |
+
var ModernizrProto = {
|
41 |
+
// The current version, dummy
|
42 |
+
_version: '3.3.1',
|
43 |
+
|
44 |
+
// Any settings that don't work as separate modules
|
45 |
+
// can go in here as configuration.
|
46 |
+
_config: {
|
47 |
+
'classPrefix': "lvca-",
|
48 |
+
'enableClasses': true,
|
49 |
+
'enableJSClass': true,
|
50 |
+
'usePrefixes': true
|
51 |
+
},
|
52 |
+
|
53 |
+
// Queue of tests
|
54 |
+
_q: [],
|
55 |
+
|
56 |
+
// Stub these for people who are listening
|
57 |
+
on: function(test, cb) {
|
58 |
+
// I don't really think people should do this, but we can
|
59 |
+
// safe guard it a bit.
|
60 |
+
// -- NOTE:: this gets WAY overridden in src/addTest for actual async tests.
|
61 |
+
// This is in case people listen to synchronous tests. I would leave it out,
|
62 |
+
// but the code to *disallow* sync tests in the real version of this
|
63 |
+
// function is actually larger than this.
|
64 |
+
var self = this;
|
65 |
+
setTimeout(function() {
|
66 |
+
cb(self[test]);
|
67 |
+
}, 0);
|
68 |
+
},
|
69 |
+
|
70 |
+
addTest: function(name, fn, options) {
|
71 |
+
tests.push({name: name, fn: fn, options: options});
|
72 |
+
},
|
73 |
+
|
74 |
+
addAsyncTest: function(fn) {
|
75 |
+
tests.push({name: null, fn: fn});
|
76 |
+
}
|
77 |
+
};
|
78 |
+
|
79 |
+
|
80 |
+
|
81 |
+
// Fake some of Object.create so we can force non test results to be non "own" properties.
|
82 |
+
var Modernizr = function() {};
|
83 |
+
Modernizr.prototype = ModernizrProto;
|
84 |
+
|
85 |
+
// Leak modernizr globally when you `require` it rather than force it here.
|
86 |
+
// Overwrite name so constructor name is nicer :D
|
87 |
+
Modernizr = new Modernizr();
|
88 |
+
|
89 |
+
|
90 |
+
|
91 |
+
/**
|
92 |
+
* is returns a boolean if the typeof an obj is exactly type.
|
93 |
+
*
|
94 |
+
* @access private
|
95 |
+
* @function is
|
96 |
+
* @param {*} obj - A thing we want to check the type of
|
97 |
+
* @param {string} type - A string to compare the typeof against
|
98 |
+
* @returns {boolean}
|
99 |
+
*/
|
100 |
+
|
101 |
+
function is(obj, type) {
|
102 |
+
return typeof obj === type;
|
103 |
+
}
|
104 |
+
;
|
105 |
+
|
106 |
+
/**
|
107 |
+
* Run through all tests and detect their support in the current UA.
|
108 |
+
*
|
109 |
+
* @access private
|
110 |
+
*/
|
111 |
+
|
112 |
+
function testRunner() {
|
113 |
+
var featureNames;
|
114 |
+
var feature;
|
115 |
+
var aliasIdx;
|
116 |
+
var result;
|
117 |
+
var nameIdx;
|
118 |
+
var featureName;
|
119 |
+
var featureNameSplit;
|
120 |
+
|
121 |
+
for (var featureIdx in tests) {
|
122 |
+
if (tests.hasOwnProperty(featureIdx)) {
|
123 |
+
featureNames = [];
|
124 |
+
feature = tests[featureIdx];
|
125 |
+
// run the test, throw the return value into the Modernizr,
|
126 |
+
// then based on that boolean, define an appropriate className
|
127 |
+
// and push it into an array of classes we'll join later.
|
128 |
+
//
|
129 |
+
// If there is no name, it's an 'async' test that is run,
|
130 |
+
// but not directly added to the object. That should
|
131 |
+
// be done with a post-run addTest call.
|
132 |
+
if (feature.name) {
|
133 |
+
featureNames.push(feature.name.toLowerCase());
|
134 |
+
|
135 |
+
if (feature.options && feature.options.aliases && feature.options.aliases.length) {
|
136 |
+
// Add all the aliases into the names list
|
137 |
+
for (aliasIdx = 0; aliasIdx < feature.options.aliases.length; aliasIdx++) {
|
138 |
+
featureNames.push(feature.options.aliases[aliasIdx].toLowerCase());
|
139 |
+
}
|
140 |
+
}
|
141 |
+
}
|
142 |
+
|
143 |
+
// Run the test, or use the raw value if it's not a function
|
144 |
+
result = is(feature.fn, 'function') ? feature.fn() : feature.fn;
|
145 |
+
|
146 |
+
|
147 |
+
// Set each of the names on the Modernizr object
|
148 |
+
for (nameIdx = 0; nameIdx < featureNames.length; nameIdx++) {
|
149 |
+
featureName = featureNames[nameIdx];
|
150 |
+
// Support dot properties as sub tests. We don't do checking to make sure
|
151 |
+
// that the implied parent tests have been added. You must call them in
|
152 |
+
// order (either in the test, or make the parent test a dependency).
|
153 |
+
//
|
154 |
+
// Cap it to TWO to make the logic simple and because who needs that kind of subtesting
|
155 |
+
// hashtag famous last words
|
156 |
+
featureNameSplit = featureName.split('.');
|
157 |
+
|
158 |
+
if (featureNameSplit.length === 1) {
|
159 |
+
Modernizr[featureNameSplit[0]] = result;
|
160 |
+
} else {
|
161 |
+
// cast to a Boolean, if not one already
|
162 |
+
/* jshint -W053 */
|
163 |
+
if (Modernizr[featureNameSplit[0]] && !(Modernizr[featureNameSplit[0]] instanceof Boolean)) {
|
164 |
+
Modernizr[featureNameSplit[0]] = new Boolean(Modernizr[featureNameSplit[0]]);
|
165 |
+
}
|
166 |
+
|
167 |
+
Modernizr[featureNameSplit[0]][featureNameSplit[1]] = result;
|
168 |
+
}
|
169 |
+
|
170 |
+
classes.push((result ? '' : 'no-') + featureNameSplit.join('-'));
|
171 |
+
}
|
172 |
+
}
|
173 |
+
}
|
174 |
+
}
|
175 |
+
;
|
176 |
+
|
177 |
+
/**
|
178 |
+
* docElement is a convenience wrapper to grab the root element of the document
|
179 |
+
*
|
180 |
+
* @access private
|
181 |
+
* @returns {HTMLElement|SVGElement} The root element of the document
|
182 |
+
*/
|
183 |
+
|
184 |
+
var docElement = document.documentElement;
|
185 |
+
|
186 |
+
|
187 |
+
/**
|
188 |
+
* A convenience helper to check if the document we are running in is an SVG document
|
189 |
+
*
|
190 |
+
* @access private
|
191 |
+
* @returns {boolean}
|
192 |
+
*/
|
193 |
+
|
194 |
+
var isSVG = docElement.nodeName.toLowerCase() === 'svg';
|
195 |
+
|
196 |
+
|
197 |
+
/**
|
198 |
+
* setClasses takes an array of class names and adds them to the root element
|
199 |
+
*
|
200 |
+
* @access private
|
201 |
+
* @function setClasses
|
202 |
+
* @param {string[]} classes - Array of class names
|
203 |
+
*/
|
204 |
+
|
205 |
+
// Pass in an and array of class names, e.g.:
|
206 |
+
// ['no-webp', 'borderradius', ...]
|
207 |
+
function setClasses(classes) {
|
208 |
+
var className = docElement.className;
|
209 |
+
var classPrefix = Modernizr._config.classPrefix || '';
|
210 |
+
|
211 |
+
if (isSVG) {
|
212 |
+
className = className.baseVal;
|
213 |
+
}
|
214 |
+
|
215 |
+
// Change `no-js` to `js` (independently of the `enableClasses` option)
|
216 |
+
// Handle classPrefix on this too
|
217 |
+
if (Modernizr._config.enableJSClass) {
|
218 |
+
var reJS = new RegExp('(^|\\s)' + classPrefix + 'no-js(\\s|$)');
|
219 |
+
className = className.replace(reJS, '$1' + classPrefix + 'js$2');
|
220 |
+
}
|
221 |
+
|
222 |
+
if (Modernizr._config.enableClasses) {
|
223 |
+
// Add the new classes
|
224 |
+
className += ' ' + classPrefix + classes.join(' ' + classPrefix);
|
225 |
+
isSVG ? docElement.className.baseVal = className : docElement.className = className;
|
226 |
+
}
|
227 |
+
|
228 |
+
}
|
229 |
+
|
230 |
+
;
|
231 |
+
|
232 |
+
/**
|
233 |
+
* @optionName html5shiv
|
234 |
+
* @optionProp html5shiv
|
235 |
+
*/
|
236 |
+
|
237 |
+
// Take the html5 variable out of the html5shiv scope so we can return it.
|
238 |
+
var html5;
|
239 |
+
if (!isSVG) {
|
240 |
+
/**
|
241 |
+
* @preserve HTML5 Shiv 3.7.3 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
|
242 |
+
*/
|
243 |
+
;(function(window, document) {
|
244 |
+
/*jshint evil:true */
|
245 |
+
/** version */
|
246 |
+
var version = '3.7.3';
|
247 |
+
|
248 |
+
/** Preset options */
|
249 |
+
var options = window.html5 || {};
|
250 |
+
|
251 |
+
/** Used to skip problem elements */
|
252 |
+
var reSkip = /^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i;
|
253 |
+
|
254 |
+
/** Not all elements can be cloned in IE **/
|
255 |
+
var saveClones = /^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i;
|
256 |
+
|
257 |
+
/** Detect whether the browser supports default html5 styles */
|
258 |
+
var supportsHtml5Styles;
|
259 |
+
|
260 |
+
/** Name of the expando, to work with multiple documents or to re-shiv one document */
|
261 |
+
var expando = '_html5shiv';
|
262 |
+
|
263 |
+
/** The id for the the documents expando */
|
264 |
+
var expanID = 0;
|
265 |
+
|
266 |
+
/** Cached data for each document */
|
267 |
+
var expandoData = {};
|
268 |
+
|
269 |
+
/** Detect whether the browser supports unknown elements */
|
270 |
+
var supportsUnknownElements;
|
271 |
+
|
272 |
+
(function() {
|
273 |
+
try {
|
274 |
+
var a = document.createElement('a');
|
275 |
+
a.innerHTML = '<xyz></xyz>';
|
276 |
+
//if the hidden property is implemented we can assume, that the browser supports basic HTML5 Styles
|
277 |
+
supportsHtml5Styles = ('hidden' in a);
|
278 |
+
|
279 |
+
supportsUnknownElements = a.childNodes.length == 1 || (function() {
|
280 |
+
// assign a false positive if unable to shiv
|
281 |
+
(document.createElement)('a');
|
282 |
+
var frag = document.createDocumentFragment();
|
283 |
+
return (
|
284 |
+
typeof frag.cloneNode == 'undefined' ||
|
285 |
+
typeof frag.createDocumentFragment == 'undefined' ||
|
286 |
+
typeof frag.createElement == 'undefined'
|
287 |
+
);
|
288 |
+
}());
|
289 |
+
} catch(e) {
|
290 |
+
// assign a false positive if detection fails => unable to shiv
|
291 |
+
supportsHtml5Styles = true;
|
292 |
+
supportsUnknownElements = true;
|
293 |
+
}
|
294 |
+
|
295 |
+
}());
|
296 |
+
|
297 |
+
/*--------------------------------------------------------------------------*/
|
298 |
+
|
299 |
+
/**
|
300 |
+
* Creates a style sheet with the given CSS text and adds it to the document.
|
301 |
+
* @private
|
302 |
+
* @param {Document} ownerDocument The document.
|
303 |
+
* @param {String} cssText The CSS text.
|
304 |
+
* @returns {StyleSheet} The style element.
|
305 |
+
*/
|
306 |
+
function addStyleSheet(ownerDocument, cssText) {
|
307 |
+
var p = ownerDocument.createElement('p'),
|
308 |
+
parent = ownerDocument.getElementsByTagName('head')[0] || ownerDocument.documentElement;
|
309 |
+
|
310 |
+
p.innerHTML = 'x<style>' + cssText + '</style>';
|
311 |
+
return parent.insertBefore(p.lastChild, parent.firstChild);
|
312 |
+
}
|
313 |
+
|
314 |
+
/**
|
315 |
+
* Returns the value of `html5.elements` as an array.
|
316 |
+
* @private
|
317 |
+
* @returns {Array} An array of shived element node names.
|
318 |
+
*/
|
319 |
+
function getElements() {
|
320 |
+
var elements = html5.elements;
|
321 |
+
return typeof elements == 'string' ? elements.split(' ') : elements;
|
322 |
+
}
|
323 |
+
|
324 |
+
/**
|
325 |
+
* Extends the built-in list of html5 elements
|
326 |
+
* @memberOf html5
|
327 |
+
* @param {String|Array} newElements whitespace separated list or array of new element names to shiv
|
328 |
+
* @param {Document} ownerDocument The context document.
|
329 |
+
*/
|
330 |
+
function addElements(newElements, ownerDocument) {
|
331 |
+
var elements = html5.elements;
|
332 |
+
if(typeof elements != 'string'){
|
333 |
+
elements = elements.join(' ');
|
334 |
+
}
|
335 |
+
if(typeof newElements != 'string'){
|
336 |
+
newElements = newElements.join(' ');
|
337 |
+
}
|
338 |
+
html5.elements = elements +' '+ newElements;
|
339 |
+
shivDocument(ownerDocument);
|
340 |
+
}
|
341 |
+
|
342 |
+
/**
|
343 |
+
* Returns the data associated to the given document
|
344 |
+
* @private
|
345 |
+
* @param {Document} ownerDocument The document.
|
346 |
+
* @returns {Object} An object of data.
|
347 |
+
*/
|
348 |
+
function getExpandoData(ownerDocument) {
|
349 |
+
var data = expandoData[ownerDocument[expando]];
|
350 |
+
if (!data) {
|
351 |
+
data = {};
|
352 |
+
expanID++;
|
353 |
+
ownerDocument[expando] = expanID;
|
354 |
+
expandoData[expanID] = data;
|
355 |
+
}
|
356 |
+
return data;
|
357 |
+
}
|
358 |
+
|
359 |
+
/**
|
360 |
+
* returns a shived element for the given nodeName and document
|
361 |
+
* @memberOf html5
|
362 |
+
* @param {String} nodeName name of the element
|
363 |
+
* @param {Document|DocumentFragment} ownerDocument The context document.
|
364 |
+
* @returns {Object} The shived element.
|
365 |
+
*/
|
366 |
+
function createElement(nodeName, ownerDocument, data){
|
367 |
+
if (!ownerDocument) {
|
368 |
+
ownerDocument = document;
|
369 |
+
}
|
370 |
+
if(supportsUnknownElements){
|
371 |
+
return ownerDocument.createElement(nodeName);
|
372 |
+
}
|
373 |
+
if (!data) {
|
374 |
+
data = getExpandoData(ownerDocument);
|
375 |
+
}
|
376 |
+
var node;
|
377 |
+
|
378 |
+
if (data.cache[nodeName]) {
|
379 |
+
node = data.cache[nodeName].cloneNode();
|
380 |
+
} else if (saveClones.test(nodeName)) {
|
381 |
+
node = (data.cache[nodeName] = data.createElem(nodeName)).cloneNode();
|
382 |
+
} else {
|
383 |
+
node = data.createElem(nodeName);
|
384 |
+
}
|
385 |
+
|
386 |
+
// Avoid adding some elements to fragments in IE < 9 because
|
387 |
+
// * Attributes like `name` or `type` cannot be set/changed once an element
|
388 |
+
// is inserted into a document/fragment
|
389 |
+
// * Link elements with `src` attributes that are inaccessible, as with
|
390 |
+
// a 403 response, will cause the tab/window to crash
|
391 |
+
// * Script elements appended to fragments will execute when their `src`
|
392 |
+
// or `text` property is set
|
393 |
+
return node.canHaveChildren && !reSkip.test(nodeName) && !node.tagUrn ? data.frag.appendChild(node) : node;
|
394 |
+
}
|
395 |
+
|
396 |
+
/**
|
397 |
+
* returns a shived DocumentFragment for the given document
|
398 |
+
* @memberOf html5
|
399 |
+
* @param {Document} ownerDocument The context document.
|
400 |
+
* @returns {Object} The shived DocumentFragment.
|
401 |
+
*/
|
402 |
+
function createDocumentFragment(ownerDocument, data){
|
403 |
+
if (!ownerDocument) {
|
404 |
+
ownerDocument = document;
|
405 |
+
}
|
406 |
+
if(supportsUnknownElements){
|
407 |
+
return ownerDocument.createDocumentFragment();
|
408 |
+
}
|
409 |
+
data = data || getExpandoData(ownerDocument);
|
410 |
+
var clone = data.frag.cloneNode(),
|
411 |
+
i = 0,
|
412 |
+
elems = getElements(),
|
413 |
+
l = elems.length;
|
414 |
+
for(;i<l;i++){
|
415 |
+
clone.createElement(elems[i]);
|
416 |
+
}
|
417 |
+
return clone;
|
418 |
+
}
|
419 |
+
|
420 |
+
/**
|
421 |
+
* Shivs the `createElement` and `createDocumentFragment` methods of the document.
|
422 |
+
* @private
|
423 |
+
* @param {Document|DocumentFragment} ownerDocument The document.
|
424 |
+
* @param {Object} data of the document.
|
425 |
+
*/
|
426 |
+
function shivMethods(ownerDocument, data) {
|
427 |
+
if (!data.cache) {
|
428 |
+
data.cache = {};
|
429 |
+
data.createElem = ownerDocument.createElement;
|
430 |
+
data.createFrag = ownerDocument.createDocumentFragment;
|
431 |
+
data.frag = data.createFrag();
|
432 |
+
}
|
433 |
+
|
434 |
+
|
435 |
+
ownerDocument.createElement = function(nodeName) {
|
436 |
+
//abort shiv
|
437 |
+
if (!html5.shivMethods) {
|
438 |
+
return data.createElem(nodeName);
|
439 |
+
}
|
440 |
+
return createElement(nodeName, ownerDocument, data);
|
441 |
+
};
|
442 |
+
|
443 |
+
ownerDocument.createDocumentFragment = Function('h,f', 'return function(){' +
|
444 |
+
'var n=f.cloneNode(),c=n.createElement;' +
|
445 |
+
'h.shivMethods&&(' +
|
446 |
+
// unroll the `createElement` calls
|
447 |
+
getElements().join().replace(/[\w\-:]+/g, function(nodeName) {
|
448 |
+
data.createElem(nodeName);
|
449 |
+
data.frag.createElement(nodeName);
|
450 |
+
return 'c("' + nodeName + '")';
|
451 |
+
}) +
|
452 |
+
');return n}'
|
453 |
+
)(html5, data.frag);
|
454 |
+
}
|
455 |
+
|
456 |
+
/*--------------------------------------------------------------------------*/
|
457 |
+
|
458 |
+
/**
|
459 |
+
* Shivs the given document.
|
460 |
+
* @memberOf html5
|
461 |
+
* @param {Document} ownerDocument The document to shiv.
|
462 |
+
* @returns {Document} The shived document.
|
463 |
+
*/
|
464 |
+
function shivDocument(ownerDocument) {
|
465 |
+
if (!ownerDocument) {
|
466 |
+
ownerDocument = document;
|
467 |
+
}
|
468 |
+
var data = getExpandoData(ownerDocument);
|
469 |
+
|
470 |
+
if (html5.shivCSS && !supportsHtml5Styles && !data.hasCSS) {
|
471 |
+
data.hasCSS = !!addStyleSheet(ownerDocument,
|
472 |
+
// corrects block display not defined in IE6/7/8/9
|
473 |
+
'article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}' +
|
474 |
+
// adds styling not present in IE6/7/8/9
|
475 |
+
'mark{background:#FF0;color:#000}' +
|
476 |
+
// hides non-rendered elements
|
477 |
+
'template{display:none}'
|
478 |
+
);
|
479 |
+
}
|
480 |
+
if (!supportsUnknownElements) {
|
481 |
+
shivMethods(ownerDocument, data);
|
482 |
+
}
|
483 |
+
return ownerDocument;
|
484 |
+
}
|
485 |
+
|
486 |
+
/*--------------------------------------------------------------------------*/
|
487 |
+
|
488 |
+
/**
|
489 |
+
* The `html5` object is exposed so that more elements can be shived and
|
490 |
+
* existing shiving can be detected on iframes.
|
491 |
+
* @type Object
|
492 |
+
* @example
|
493 |
+
*
|
494 |
+
* // options can be changed before the script is included
|
495 |
+
* html5 = { 'elements': 'mark section', 'shivCSS': false, 'shivMethods': false };
|
496 |
+
*/
|
497 |
+
var html5 = {
|
498 |
+
|
499 |
+
/**
|
500 |
+
* An array or space separated string of node names of the elements to shiv.
|
501 |
+
* @memberOf html5
|
502 |
+
* @type Array|String
|
503 |
+
*/
|
504 |
+
'elements': options.elements || 'abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video',
|
505 |
+
|
506 |
+
/**
|
507 |
+
* current version of html5shiv
|
508 |
+
*/
|
509 |
+
'version': version,
|
510 |
+
|
511 |
+
/**
|
512 |
+
* A flag to indicate that the HTML5 style sheet should be inserted.
|
513 |
+
* @memberOf html5
|
514 |
+
* @type Boolean
|
515 |
+
*/
|
516 |
+
'shivCSS': (options.shivCSS !== false),
|
517 |
+
|
518 |
+
/**
|
519 |
+
* Is equal to true if a browser supports creating unknown/HTML5 elements
|
520 |
+
* @memberOf html5
|
521 |
+
* @type boolean
|
522 |
+
*/
|
523 |
+
'supportsUnknownElements': supportsUnknownElements,
|
524 |
+
|
525 |
+
/**
|
526 |
+
* A flag to indicate that the document's `createElement` and `createDocumentFragment`
|
527 |
+
* methods should be overwritten.
|
528 |
+
* @memberOf html5
|
529 |
+
* @type Boolean
|
530 |
+
*/
|
531 |
+
'shivMethods': (options.shivMethods !== false),
|
532 |
+
|
533 |
+
/**
|
534 |
+
* A string to describe the type of `html5` object ("default" or "default print").
|
535 |
+
* @memberOf html5
|
536 |
+
* @type String
|
537 |
+
*/
|
538 |
+
'type': 'default',
|
539 |
+
|
540 |
+
// shivs the document according to the specified `html5` object options
|
541 |
+
'shivDocument': shivDocument,
|
542 |
+
|
543 |
+
//creates a shived element
|
544 |
+
createElement: createElement,
|
545 |
+
|
546 |
+
//creates a shived documentFragment
|
547 |
+
createDocumentFragment: createDocumentFragment,
|
548 |
+
|
549 |
+
//extends list of elements
|
550 |
+
addElements: addElements
|
551 |
+
};
|
552 |
+
|
553 |
+
/*--------------------------------------------------------------------------*/
|
554 |
+
|
555 |
+
// expose html5
|
556 |
+
window.html5 = html5;
|
557 |
+
|
558 |
+
// shiv the document
|
559 |
+
shivDocument(document);
|
560 |
+
|
561 |
+
if(typeof module == 'object' && module.exports){
|
562 |
+
module.exports = html5;
|
563 |
+
}
|
564 |
+
|
565 |
+
}(typeof window !== "undefined" ? window : this, document));
|
566 |
+
}
|
567 |
+
;
|
568 |
+
|
569 |
+
/**
|
570 |
+
* List of property values to set for css tests. See ticket #21
|
571 |
+
* http://git.io/vUGl4
|
572 |
+
*
|
573 |
+
* @memberof Modernizr
|
574 |
+
* @name Modernizr._prefixes
|
575 |
+
* @optionName Modernizr._prefixes
|
576 |
+
* @optionProp prefixes
|
577 |
+
* @access public
|
578 |
+
* @example
|
579 |
+
*
|
580 |
+
* Modernizr._prefixes is the internal list of prefixes that we test against
|
581 |
+
* inside of things like [prefixed](#modernizr-prefixed) and [prefixedCSS](#-code-modernizr-prefixedcss). It is simply
|
582 |
+
* an array of kebab-case vendor prefixes you can use within your code.
|
583 |
+
*
|
584 |
+
* Some common use cases include
|
585 |
+
*
|
586 |
+
* Generating all possible prefixed version of a CSS property
|
587 |
+
* ```js
|
588 |
+
* var rule = Modernizr._prefixes.join('transform: rotate(20deg); ');
|
589 |
+
*
|
590 |
+
* rule === 'transform: rotate(20deg); webkit-transform: rotate(20deg); moz-transform: rotate(20deg); o-transform: rotate(20deg); ms-transform: rotate(20deg);'
|
591 |
+
* ```
|
592 |
+
*
|
593 |
+
* Generating all possible prefixed version of a CSS value
|
594 |
+
* ```js
|
595 |
+
* rule = 'display:' + Modernizr._prefixes.join('flex; display:') + 'flex';
|
596 |
+
*
|
597 |
+
* rule === 'display:flex; display:-webkit-flex; display:-moz-flex; display:-o-flex; display:-ms-flex; display:flex'
|
598 |
+
* ```
|
599 |
+
*/
|
600 |
+
|
601 |
+
// we use ['',''] rather than an empty array in order to allow a pattern of .`join()`ing prefixes to test
|
602 |
+
// values in feature detects to continue to work
|
603 |
+
var prefixes = (ModernizrProto._config.usePrefixes ? ' -webkit- -moz- -o- -ms- '.split(' ') : ['','']);
|
604 |
+
|
605 |
+
// expose these for the plugin API. Look in the source for how to join() them against your input
|
606 |
+
ModernizrProto._prefixes = prefixes;
|
607 |
+
|
608 |
+
|
609 |
+
/*!
|
610 |
+
{
|
611 |
+
"name": "CSS Supports",
|
612 |
+
"property": "supports",
|
613 |
+
"caniuse": "css-featurequeries",
|
614 |
+
"tags": ["css"],
|
615 |
+
"builderAliases": ["css_supports"],
|
616 |
+
"notes": [{
|
617 |
+
"name": "W3 Spec",
|
618 |
+
"href": "http://dev.w3.org/csswg/css3-conditional/#at-supports"
|
619 |
+
},{
|
620 |
+
"name": "Related Github Issue",
|
621 |
+
"href": "github.com/Modernizr/Modernizr/issues/648"
|
622 |
+
},{
|
623 |
+
"name": "W3 Info",
|
624 |
+
"href": "http://dev.w3.org/csswg/css3-conditional/#the-csssupportsrule-interface"
|
625 |
+
}]
|
626 |
+
}
|
627 |
+
!*/
|
628 |
+
|
629 |
+
var newSyntax = 'CSS' in window && 'supports' in window.CSS;
|
630 |
+
var oldSyntax = 'supportsCSS' in window;
|
631 |
+
Modernizr.addTest('supports', newSyntax || oldSyntax);
|
632 |
+
|
633 |
+
|
634 |
+
/**
|
635 |
+
* createElement is a convenience wrapper around document.createElement. Since we
|
636 |
+
* use createElement all over the place, this allows for (slightly) smaller code
|
637 |
+
* as well as abstracting away issues with creating elements in contexts other than
|
638 |
+
* HTML documents (e.g. SVG documents).
|
639 |
+
*
|
640 |
+
* @access private
|
641 |
+
* @function createElement
|
642 |
+
* @returns {HTMLElement|SVGElement} An HTML or SVG element
|
643 |
+
*/
|
644 |
+
|
645 |
+
function createElement() {
|
646 |
+
if (typeof document.createElement !== 'function') {
|
647 |
+
// This is the case in IE7, where the type of createElement is "object".
|
648 |
+
// For this reason, we cannot call apply() as Object is not a Function.
|
649 |
+
return document.createElement(arguments[0]);
|
650 |
+
} else if (isSVG) {
|
651 |
+
return document.createElementNS.call(document, 'http://www.w3.org/2000/svg', arguments[0]);
|
652 |
+
} else {
|
653 |
+
return document.createElement.apply(document, arguments);
|
654 |
+
}
|
655 |
+
}
|
656 |
+
|
657 |
+
;
|
658 |
+
|
659 |
+
/**
|
660 |
+
* getBody returns the body of a document, or an element that can stand in for
|
661 |
+
* the body if a real body does not exist
|
662 |
+
*
|
663 |
+
* @access private
|
664 |
+
* @function getBody
|
665 |
+
* @returns {HTMLElement|SVGElement} Returns the real body of a document, or an
|
666 |
+
* artificially created element that stands in for the body
|
667 |
+
*/
|
668 |
+
|
669 |
+
function getBody() {
|
670 |
+
// After page load injecting a fake body doesn't work so check if body exists
|
671 |
+
var body = document.body;
|
672 |
+
|
673 |
+
if (!body) {
|
674 |
+
// Can't use the real body create a fake one.
|
675 |
+
body = createElement(isSVG ? 'svg' : 'body');
|
676 |
+
body.fake = true;
|
677 |
+
}
|
678 |
+
|
679 |
+
return body;
|
680 |
+
}
|
681 |
+
|
682 |
+
;
|
683 |
+
|
684 |
+
/**
|
685 |
+
* injectElementWithStyles injects an element with style element and some CSS rules
|
686 |
+
*
|
687 |
+
* @access private
|
688 |
+
* @function injectElementWithStyles
|
689 |
+
* @param {string} rule - String representing a css rule
|
690 |
+
* @param {function} callback - A function that is used to test the injected element
|
691 |
+
* @param {number} [nodes] - An integer representing the number of additional nodes you want injected
|
692 |
+
* @param {string[]} [testnames] - An array of strings that are used as ids for the additional nodes
|
693 |
+
* @returns {boolean}
|
694 |
+
*/
|
695 |
+
|
696 |
+
function injectElementWithStyles(rule, callback, nodes, testnames) {
|
697 |
+
var mod = 'modernizr';
|
698 |
+
var style;
|
699 |
+
var ret;
|
700 |
+
var node;
|
701 |
+
var docOverflow;
|
702 |
+
var div = createElement('div');
|
703 |
+
var body = getBody();
|
704 |
+
|
705 |
+
if (parseInt(nodes, 10)) {
|
706 |
+
// In order not to give false positives we create a node for each test
|
707 |
+
// This also allows the method to scale for unspecified uses
|
708 |
+
while (nodes--) {
|
709 |
+
node = createElement('div');
|
710 |
+
node.id = testnames ? testnames[nodes] : mod + (nodes + 1);
|
711 |
+
div.appendChild(node);
|
712 |
+
}
|
713 |
+
}
|
714 |
+
|
715 |
+
style = createElement('style');
|
716 |
+
style.type = 'text/css';
|
717 |
+
style.id = 's' + mod;
|
718 |
+
|
719 |
+
// IE6 will false positive on some tests due to the style element inside the test div somehow interfering offsetHeight, so insert it into body or fakebody.
|
720 |
+
// Opera will act all quirky when injecting elements in documentElement when page is served as xml, needs fakebody too. #270
|
721 |
+
(!body.fake ? div : body).appendChild(style);
|
722 |
+
body.appendChild(div);
|
723 |
+
|
724 |
+
if (style.styleSheet) {
|
725 |
+
style.styleSheet.cssText = rule;
|
726 |
+
} else {
|
727 |
+
style.appendChild(document.createTextNode(rule));
|
728 |
+
}
|
729 |
+
div.id = mod;
|
730 |
+
|
731 |
+
if (body.fake) {
|
732 |
+
//avoid crashing IE8, if background image is used
|
733 |
+
body.style.background = '';
|
734 |
+
//Safari 5.13/5.1.4 OSX stops loading if ::-webkit-scrollbar is used and scrollbars are visible
|
735 |
+
body.style.overflow = 'hidden';
|
736 |
+
docOverflow = docElement.style.overflow;
|
737 |
+
docElement.style.overflow = 'hidden';
|
738 |
+
docElement.appendChild(body);
|
739 |
+
}
|
740 |
+
|
741 |
+
ret = callback(div, rule);
|
742 |
+
// If this is done after page load we don't want to remove the body so check if body exists
|
743 |
+
if (body.fake) {
|
744 |
+
body.parentNode.removeChild(body);
|
745 |
+
docElement.style.overflow = docOverflow;
|
746 |
+
// Trigger layout so kinetic scrolling isn't disabled in iOS6+
|
747 |
+
docElement.offsetHeight;
|
748 |
+
} else {
|
749 |
+
div.parentNode.removeChild(div);
|
750 |
+
}
|
751 |
+
|
752 |
+
return !!ret;
|
753 |
+
|
754 |
+
}
|
755 |
+
|
756 |
+
;
|
757 |
+
|
758 |
+
/**
|
759 |
+
* testStyles injects an element with style element and some CSS rules
|
760 |
+
*
|
761 |
+
* @memberof Modernizr
|
762 |
+
* @name Modernizr.testStyles
|
763 |
+
* @optionName Modernizr.testStyles()
|
764 |
+
* @optionProp testStyles
|
765 |
+
* @access public
|
766 |
+
* @function testStyles
|
767 |
+
* @param {string} rule - String representing a css rule
|
768 |
+
* @param {function} callback - A function that is used to test the injected element
|
769 |
+
* @param {number} [nodes] - An integer representing the number of additional nodes you want injected
|
770 |
+
* @param {string[]} [testnames] - An array of strings that are used as ids for the additional nodes
|
771 |
+
* @returns {boolean}
|
772 |
+
* @example
|
773 |
+
*
|
774 |
+
* `Modernizr.testStyles` takes a CSS rule and injects it onto the current page
|
775 |
+
* along with (possibly multiple) DOM elements. This lets you check for features
|
776 |
+
* that can not be detected by simply checking the [IDL](https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Interface_development_guide/IDL_interface_rules).
|
777 |
+
*
|
778 |
+
* ```js
|
779 |
+
* Modernizr.testStyles('#modernizr { width: 9px; color: papayawhip; }', function(elem, rule) {
|
780 |
+
* // elem is the first DOM node in the page (by default #modernizr)
|
781 |
+
* // rule is the first argument you supplied - the CSS rule in string form
|
782 |
+
*
|
783 |
+
* addTest('widthworks', elem.style.width === '9px')
|
784 |
+
* });
|
785 |
+
* ```
|
786 |
+
*
|
787 |
+
* If your test requires multiple nodes, you can include a third argument
|
788 |
+
* indicating how many additional div elements to include on the page. The
|
789 |
+
* additional nodes are injected as children of the `elem` that is returned as
|
790 |
+
* the first argument to the callback.
|
791 |
+
*
|
792 |
+
* ```js
|
793 |
+
* Modernizr.testStyles('#modernizr {width: 1px}; #modernizr2 {width: 2px}', function(elem) {
|
794 |
+
* document.getElementById('modernizr').style.width === '1px'; // true
|
795 |
+
* document.getElementById('modernizr2').style.width === '2px'; // true
|
796 |
+
* elem.firstChild === document.getElementById('modernizr2'); // true
|
797 |
+
* }, 1);
|
798 |
+
* ```
|
799 |
+
*
|
800 |
+
* By default, all of the additional elements have an ID of `modernizr[n]`, where
|
801 |
+
* `n` is its index (e.g. the first additional, second overall is `#modernizr2`,
|
802 |
+
* the second additional is `#modernizr3`, etc.).
|
803 |
+
* If you want to have more meaningful IDs for your function, you can provide
|
804 |
+
* them as the fourth argument, as an array of strings
|
805 |
+
*
|
806 |
+
* ```js
|
807 |
+
* Modernizr.testStyles('#foo {width: 10px}; #bar {height: 20px}', function(elem) {
|
808 |
+
* elem.firstChild === document.getElementById('foo'); // true
|
809 |
+
* elem.lastChild === document.getElementById('bar'); // true
|
810 |
+
* }, 2, ['foo', 'bar']);
|
811 |
+
* ```
|
812 |
+
*
|
813 |
+
*/
|
814 |
+
|
815 |
+
var testStyles = ModernizrProto.testStyles = injectElementWithStyles;
|
816 |
+
|
817 |
+
/*!
|
818 |
+
{
|
819 |
+
"name": "Touch Events",
|
820 |
+
"property": "touchevents",
|
821 |
+
"caniuse" : "touch",
|
822 |
+
"tags": ["media", "attribute"],
|
823 |
+
"notes": [{
|
824 |
+
"name": "Touch Events spec",
|
825 |
+
"href": "https://www.w3.org/TR/2013/WD-touch-events-20130124/"
|
826 |
+
}],
|
827 |
+
"warnings": [
|
828 |
+
"Indicates if the browser supports the Touch Events spec, and does not necessarily reflect a touchscreen device"
|
829 |
+
],
|
830 |
+
"knownBugs": [
|
831 |
+
"False-positive on some configurations of Nokia N900",
|
832 |
+
"False-positive on some BlackBerry 6.0 builds – https://github.com/Modernizr/Modernizr/issues/372#issuecomment-3112695"
|
833 |
+
]
|
834 |
+
}
|
835 |
+
!*/
|
836 |
+
/* DOC
|
837 |
+
Indicates if the browser supports the W3C Touch Events API.
|
838 |
+
|
839 |
+
This *does not* necessarily reflect a touchscreen device:
|
840 |
+
|
841 |
+
* Older touchscreen devices only emulate mouse events
|
842 |
+
* Modern IE touch devices implement the Pointer Events API instead: use `Modernizr.pointerevents` to detect support for that
|
843 |
+
* Some browsers & OS setups may enable touch APIs when no touchscreen is connected
|
844 |
+
* Future browsers may implement other event models for touch interactions
|
845 |
+
|
846 |
+
See this article: [You Can't Detect A Touchscreen](http://www.stucox.com/blog/you-cant-detect-a-touchscreen/).
|
847 |
+
|
848 |
+
It's recommended to bind both mouse and touch/pointer events simultaneously – see [this HTML5 Rocks tutorial](http://www.html5rocks.com/en/mobile/touchandmouse/).
|
849 |
+
|
850 |
+
This test will also return `true` for Firefox 4 Multitouch support.
|
851 |
+
*/
|
852 |
+
|
853 |
+
// Chrome (desktop) used to lie about its support on this, but that has since been rectified: http://crbug.com/36415
|
854 |
+
Modernizr.addTest('touchevents', function() {
|
855 |
+
var bool;
|
856 |
+
if (('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch) {
|
857 |
+
bool = true;
|
858 |
+
} else {
|
859 |
+
// include the 'heartz' as a way to have a non matching MQ to help terminate the join
|
860 |
+
// https://git.io/vznFH
|
861 |
+
var query = ['@media (', prefixes.join('touch-enabled),('), 'heartz', ')', '{#modernizr{top:9px;position:absolute}}'].join('');
|
862 |
+
testStyles(query, function(node) {
|
863 |
+
bool = node.offsetTop === 9;
|
864 |
+
});
|
865 |
+
}
|
866 |
+
return bool;
|
867 |
+
});
|
868 |
+
|
869 |
+
|
870 |
+
/**
|
871 |
+
* If the browsers follow the spec, then they would expose vendor-specific style as:
|
872 |
+
* elem.style.WebkitBorderRadius
|
873 |
+
* instead of something like the following, which would be technically incorrect:
|
874 |
+
* elem.style.webkitBorderRadius
|
875 |
+
|
876 |
+
* Webkit ghosts their properties in lowercase but Opera & Moz do not.
|
877 |
+
* Microsoft uses a lowercase `ms` instead of the correct `Ms` in IE8+
|
878 |
+
* erik.eae.net/archives/2008/03/10/21.48.10/
|
879 |
+
|
880 |
+
* More here: github.com/Modernizr/Modernizr/issues/issue/21
|
881 |
+
*
|
882 |
+
* @access private
|
883 |
+
* @returns {string} The string representing the vendor-specific style properties
|
884 |
+
*/
|
885 |
+
|
886 |
+
var omPrefixes = 'Moz O ms Webkit';
|
887 |
+
|
888 |
+
|
889 |
+
var cssomPrefixes = (ModernizrProto._config.usePrefixes ? omPrefixes.split(' ') : []);
|
890 |
+
ModernizrProto._cssomPrefixes = cssomPrefixes;
|
891 |
+
|
892 |
+
|
893 |
+
/**
|
894 |
+
* List of JavaScript DOM values used for tests
|
895 |
+
*
|
896 |
+
* @memberof Modernizr
|
897 |
+
* @name Modernizr._domPrefixes
|
898 |
+
* @optionName Modernizr._domPrefixes
|
899 |
+
* @optionProp domPrefixes
|
900 |
+
* @access public
|
901 |
+
* @example
|
902 |
+
*
|
903 |
+
* Modernizr._domPrefixes is exactly the same as [_prefixes](#modernizr-_prefixes), but rather
|
904 |
+
* than kebab-case properties, all properties are their Capitalized variant
|
905 |
+
*
|
906 |
+
* ```js
|
907 |
+
* Modernizr._domPrefixes === [ "Moz", "O", "ms", "Webkit" ];
|
908 |
+
* ```
|
909 |
+
*/
|
910 |
+
|
911 |
+
var domPrefixes = (ModernizrProto._config.usePrefixes ? omPrefixes.toLowerCase().split(' ') : []);
|
912 |
+
ModernizrProto._domPrefixes = domPrefixes;
|
913 |
+
|
914 |
+
|
915 |
+
|
916 |
+
/**
|
917 |
+
* contains checks to see if a string contains another string
|
918 |
+
*
|
919 |
+
* @access private
|
920 |
+
* @function contains
|
921 |
+
* @param {string} str - The string we want to check for substrings
|
922 |
+
* @param {string} substr - The substring we want to search the first string for
|
923 |
+
* @returns {boolean}
|
924 |
+
*/
|
925 |
+
|
926 |
+
function contains(str, substr) {
|
927 |
+
return !!~('' + str).indexOf(substr);
|
928 |
+
}
|
929 |
+
|
930 |
+
;
|
931 |
+
|
932 |
+
/**
|
933 |
+
* cssToDOM takes a kebab-case string and converts it to camelCase
|
934 |
+
* e.g. box-sizing -> boxSizing
|
935 |
+
*
|
936 |
+
* @access private
|
937 |
+
* @function cssToDOM
|
938 |
+
* @param {string} name - String name of kebab-case prop we want to convert
|
939 |
+
* @returns {string} The camelCase version of the supplied name
|
940 |
+
*/
|
941 |
+
|
942 |
+
function cssToDOM(name) {
|
943 |
+
return name.replace(/([a-z])-([a-z])/g, function(str, m1, m2) {
|
944 |
+
return m1 + m2.toUpperCase();
|
945 |
+
}).replace(/^-/, '');
|
946 |
+
}
|
947 |
+
;
|
948 |
+
|
949 |
+
/**
|
950 |
+
* fnBind is a super small [bind](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind) polyfill.
|
951 |
+
*
|
952 |
+
* @access private
|
953 |
+
* @function fnBind
|
954 |
+
* @param {function} fn - a function you want to change `this` reference to
|
955 |
+
* @param {object} that - the `this` you want to call the function with
|
956 |
+
* @returns {function} The wrapped version of the supplied function
|
957 |
+
*/
|
958 |
+
|
959 |
+
function fnBind(fn, that) {
|
960 |
+
return function() {
|
961 |
+
return fn.apply(that, arguments);
|
962 |
+
};
|
963 |
+
}
|
964 |
+
|
965 |
+
;
|
966 |
+
|
967 |
+
/**
|
968 |
+
* testDOMProps is a generic DOM property test; if a browser supports
|
969 |
+
* a certain property, it won't return undefined for it.
|
970 |
+
*
|
971 |
+
* @access private
|
972 |
+
* @function testDOMProps
|
973 |
+
* @param {array.<string>} props - An array of properties to test for
|
974 |
+
* @param {object} obj - An object or Element you want to use to test the parameters again
|
975 |
+
* @param {boolean|object} elem - An Element to bind the property lookup again. Use `false` to prevent the check
|
976 |
+
*/
|
977 |
+
function testDOMProps(props, obj, elem) {
|
978 |
+
var item;
|
979 |
+
|
980 |
+
for (var i in props) {
|
981 |
+
if (props[i] in obj) {
|
982 |
+
|
983 |
+
// return the property name as a string
|
984 |
+
if (elem === false) {
|
985 |
+
return props[i];
|
986 |
+
}
|
987 |
+
|
988 |
+
item = obj[props[i]];
|
989 |
+
|
990 |
+
// let's bind a function
|
991 |
+
if (is(item, 'function')) {
|
992 |
+
// bind to obj unless overriden
|
993 |
+
return fnBind(item, elem || obj);
|
994 |
+
}
|
995 |
+
|
996 |
+
// return the unbound function or obj or value
|
997 |
+
return item;
|
998 |
+
}
|
999 |
+
}
|
1000 |
+
return false;
|
1001 |
+
}
|
1002 |
+
|
1003 |
+
;
|
1004 |
+
|
1005 |
+
/**
|
1006 |
+
* Create our "modernizr" element that we do most feature tests on.
|
1007 |
+
*
|
1008 |
+
* @access private
|
1009 |
+
*/
|
1010 |
+
|
1011 |
+
var modElem = {
|
1012 |
+
elem: createElement('modernizr')
|
1013 |
+
};
|
1014 |
+
|
1015 |
+
// Clean up this element
|
1016 |
+
Modernizr._q.push(function() {
|
1017 |
+
delete modElem.elem;
|
1018 |
+
});
|
1019 |
+
|
1020 |
+
|
1021 |
+
|
1022 |
+
var mStyle = {
|
1023 |
+
style: modElem.elem.style
|
1024 |
+
};
|
1025 |
+
|
1026 |
+
// kill ref for gc, must happen before mod.elem is removed, so we unshift on to
|
1027 |
+
// the front of the queue.
|
1028 |
+
Modernizr._q.unshift(function() {
|
1029 |
+
delete mStyle.style;
|
1030 |
+
});
|
1031 |
+
|
1032 |
+
|
1033 |
+
|
1034 |
+
/**
|
1035 |
+
* domToCSS takes a camelCase string and converts it to kebab-case
|
1036 |
+
* e.g. boxSizing -> box-sizing
|
1037 |
+
*
|
1038 |
+
* @access private
|
1039 |
+
* @function domToCSS
|
1040 |
+
* @param {string} name - String name of camelCase prop we want to convert
|
1041 |
+
* @returns {string} The kebab-case version of the supplied name
|
1042 |
+
*/
|
1043 |
+
|
1044 |
+
function domToCSS(name) {
|
1045 |
+
return name.replace(/([A-Z])/g, function(str, m1) {
|
1046 |
+
return '-' + m1.toLowerCase();
|
1047 |
+
}).replace(/^ms-/, '-ms-');
|
1048 |
+
}
|
1049 |
+
;
|
1050 |
+
|
1051 |
+
/**
|
1052 |
+
* nativeTestProps allows for us to use native feature detection functionality if available.
|
1053 |
+
* some prefixed form, or false, in the case of an unsupported rule
|
1054 |
+
*
|
1055 |
+
* @access private
|
1056 |
+
* @function nativeTestProps
|
1057 |
+
* @param {array} props - An array of property names
|
1058 |
+
* @param {string} value - A string representing the value we want to check via @supports
|
1059 |
+
* @returns {boolean|undefined} A boolean when @supports exists, undefined otherwise
|
1060 |
+
*/
|
1061 |
+
|
1062 |
+
// Accepts a list of property names and a single value
|
1063 |
+
// Returns `undefined` if native detection not available
|
1064 |
+
function nativeTestProps(props, value) {
|
1065 |
+
var i = props.length;
|
1066 |
+
// Start with the JS API: http://www.w3.org/TR/css3-conditional/#the-css-interface
|
1067 |
+
if ('CSS' in window && 'supports' in window.CSS) {
|
1068 |
+
// Try every prefixed variant of the property
|
1069 |
+
while (i--) {
|
1070 |
+
if (window.CSS.supports(domToCSS(props[i]), value)) {
|
1071 |
+
return true;
|
1072 |
+
}
|
1073 |
+
}
|
1074 |
+
return false;
|
1075 |
+
}
|
1076 |
+
// Otherwise fall back to at-rule (for Opera 12.x)
|
1077 |
+
else if ('CSSSupportsRule' in window) {
|
1078 |
+
// Build a condition string for every prefixed variant
|
1079 |
+
var conditionText = [];
|
1080 |
+
while (i--) {
|
1081 |
+
conditionText.push('(' + domToCSS(props[i]) + ':' + value + ')');
|
1082 |
+
}
|
1083 |
+
conditionText = conditionText.join(' or ');
|
1084 |
+
return injectElementWithStyles('@supports (' + conditionText + ') { #modernizr { position: absolute; } }', function(node) {
|
1085 |
+
return getComputedStyle(node, null).position == 'absolute';
|
1086 |
+
});
|
1087 |
+
}
|
1088 |
+
return undefined;
|
1089 |
+
}
|
1090 |
+
;
|
1091 |
+
|
1092 |
+
// testProps is a generic CSS / DOM property test.
|
1093 |
+
|
1094 |
+
// In testing support for a given CSS property, it's legit to test:
|
1095 |
+
// `elem.style[styleName] !== undefined`
|
1096 |
+
// If the property is supported it will return an empty string,
|
1097 |
+
// if unsupported it will return undefined.
|
1098 |
+
|
1099 |
+
// We'll take advantage of this quick test and skip setting a style
|
1100 |
+
// on our modernizr element, but instead just testing undefined vs
|
1101 |
+
// empty string.
|
1102 |
+
|
1103 |
+
// Property names can be provided in either camelCase or kebab-case.
|
1104 |
+
|
1105 |
+
function testProps(props, prefixed, value, skipValueTest) {
|
1106 |
+
skipValueTest = is(skipValueTest, 'undefined') ? false : skipValueTest;
|
1107 |
+
|
1108 |
+
// Try native detect first
|
1109 |
+
if (!is(value, 'undefined')) {
|
1110 |
+
var result = nativeTestProps(props, value);
|
1111 |
+
if (!is(result, 'undefined')) {
|
1112 |
+
return result;
|
1113 |
+
}
|
1114 |
+
}
|
1115 |
+
|
1116 |
+
// Otherwise do it properly
|
1117 |
+
var afterInit, i, propsLength, prop, before;
|
1118 |
+
|
1119 |
+
// If we don't have a style element, that means we're running async or after
|
1120 |
+
// the core tests, so we'll need to create our own elements to use
|
1121 |
+
|
1122 |
+
// inside of an SVG element, in certain browsers, the `style` element is only
|
1123 |
+
// defined for valid tags. Therefore, if `modernizr` does not have one, we
|
1124 |
+
// fall back to a less used element and hope for the best.
|
1125 |
+
var elems = ['modernizr', 'tspan'];
|
1126 |
+
while (!mStyle.style) {
|
1127 |
+
afterInit = true;
|
1128 |
+
mStyle.modElem = createElement(elems.shift());
|
1129 |
+
mStyle.style = mStyle.modElem.style;
|
1130 |
+
}
|
1131 |
+
|
1132 |
+
// Delete the objects if we created them.
|
1133 |
+
function cleanElems() {
|
1134 |
+
if (afterInit) {
|
1135 |
+
delete mStyle.style;
|
1136 |
+
delete mStyle.modElem;
|
1137 |
+
}
|
1138 |
+
}
|
1139 |
+
|
1140 |
+
propsLength = props.length;
|
1141 |
+
for (i = 0; i < propsLength; i++) {
|
1142 |
+
prop = props[i];
|
1143 |
+
before = mStyle.style[prop];
|
1144 |
+
|
1145 |
+
if (contains(prop, '-')) {
|
1146 |
+
prop = cssToDOM(prop);
|
1147 |
+
}
|
1148 |
+
|
1149 |
+
if (mStyle.style[prop] !== undefined) {
|
1150 |
+
|
1151 |
+
// If value to test has been passed in, do a set-and-check test.
|
1152 |
+
// 0 (integer) is a valid property value, so check that `value` isn't
|
1153 |
+
// undefined, rather than just checking it's truthy.
|
1154 |
+
if (!skipValueTest && !is(value, 'undefined')) {
|
1155 |
+
|
1156 |
+
// Needs a try catch block because of old IE. This is slow, but will
|
1157 |
+
// be avoided in most cases because `skipValueTest` will be used.
|
1158 |
+
try {
|
1159 |
+
mStyle.style[prop] = value;
|
1160 |
+
} catch (e) {}
|
1161 |
+
|
1162 |
+
// If the property value has changed, we assume the value used is
|
1163 |
+
// supported. If `value` is empty string, it'll fail here (because
|
1164 |
+
// it hasn't changed), which matches how browsers have implemented
|
1165 |
+
// CSS.supports()
|
1166 |
+
if (mStyle.style[prop] != before) {
|
1167 |
+
cleanElems();
|
1168 |
+
return prefixed == 'pfx' ? prop : true;
|
1169 |
+
}
|
1170 |
+
}
|
1171 |
+
// Otherwise just return true, or the property name if this is a
|
1172 |
+
// `prefixed()` call
|
1173 |
+
else {
|
1174 |
+
cleanElems();
|
1175 |
+
return prefixed == 'pfx' ? prop : true;
|
1176 |
+
}
|
1177 |
+
}
|
1178 |
+
}
|
1179 |
+
cleanElems();
|
1180 |
+
return false;
|
1181 |
+
}
|
1182 |
+
|
1183 |
+
;
|
1184 |
+
|
1185 |
+
/**
|
1186 |
+
* testPropsAll tests a list of DOM properties we want to check against.
|
1187 |
+
* We specify literally ALL possible (known and/or likely) properties on
|
1188 |
+
* the element including the non-vendor prefixed one, for forward-
|
1189 |
+
* compatibility.
|
1190 |
+
*
|
1191 |
+
* @access private
|
1192 |
+
* @function testPropsAll
|
1193 |
+
* @param {string} prop - A string of the property to test for
|
1194 |
+
* @param {string|object} [prefixed] - An object to check the prefixed properties on. Use a string to skip
|
1195 |
+
* @param {HTMLElement|SVGElement} [elem] - An element used to test the property and value against
|
1196 |
+
* @param {string} [value] - A string of a css value
|
1197 |
+
* @param {boolean} [skipValueTest] - An boolean representing if you want to test if value sticks when set
|
1198 |
+
*/
|
1199 |
+
function testPropsAll(prop, prefixed, elem, value, skipValueTest) {
|
1200 |
+
|
1201 |
+
var ucProp = prop.charAt(0).toUpperCase() + prop.slice(1),
|
1202 |
+
props = (prop + ' ' + cssomPrefixes.join(ucProp + ' ') + ucProp).split(' ');
|
1203 |
+
|
1204 |
+
// did they call .prefixed('boxSizing') or are we just testing a prop?
|
1205 |
+
if (is(prefixed, 'string') || is(prefixed, 'undefined')) {
|
1206 |
+
return testProps(props, prefixed, value, skipValueTest);
|
1207 |
+
|
1208 |
+
// otherwise, they called .prefixed('requestAnimationFrame', window[, elem])
|
1209 |
+
} else {
|
1210 |
+
props = (prop + ' ' + (domPrefixes).join(ucProp + ' ') + ucProp).split(' ');
|
1211 |
+
return testDOMProps(props, prefixed, elem);
|
1212 |
+
}
|
1213 |
+
}
|
1214 |
+
|
1215 |
+
// Modernizr.testAllProps() investigates whether a given style property,
|
1216 |
+
// or any of its vendor-prefixed variants, is recognized
|
1217 |
+
//
|
1218 |
+
// Note that the property names must be provided in the camelCase variant.
|
1219 |
+
// Modernizr.testAllProps('boxSizing')
|
1220 |
+
ModernizrProto.testAllProps = testPropsAll;
|
1221 |
+
|
1222 |
+
|
1223 |
+
|
1224 |
+
/**
|
1225 |
+
* testAllProps determines whether a given CSS property is supported in the browser
|
1226 |
+
*
|
1227 |
+
* @memberof Modernizr
|
1228 |
+
* @name Modernizr.testAllProps
|
1229 |
+
* @optionName Modernizr.testAllProps()
|
1230 |
+
* @optionProp testAllProps
|
1231 |
+
* @access public
|
1232 |
+
* @function testAllProps
|
1233 |
+
* @param {string} prop - String naming the property to test (either camelCase or kebab-case)
|
1234 |
+
* @param {string} [value] - String of the value to test
|
1235 |
+
* @param {boolean} [skipValueTest=false] - Whether to skip testing that the value is supported when using non-native detection
|
1236 |
+
* @example
|
1237 |
+
*
|
1238 |
+
* testAllProps determines whether a given CSS property, in some prefixed form,
|
1239 |
+
* is supported by the browser.
|
1240 |
+
*
|
1241 |
+
* ```js
|
1242 |
+
* testAllProps('boxSizing') // true
|
1243 |
+
* ```
|
1244 |
+
*
|
1245 |
+
* It can optionally be given a CSS value in string form to test if a property
|
1246 |
+
* value is valid
|
1247 |
+
*
|
1248 |
+
* ```js
|
1249 |
+
* testAllProps('display', 'block') // true
|
1250 |
+
* testAllProps('display', 'penguin') // false
|
1251 |
+
* ```
|
1252 |
+
*
|
1253 |
+
* A boolean can be passed as a third parameter to skip the value check when
|
1254 |
+
* native detection (@supports) isn't available.
|
1255 |
+
*
|
1256 |
+
* ```js
|
1257 |
+
* testAllProps('shapeOutside', 'content-box', true);
|
1258 |
+
* ```
|
1259 |
+
*/
|
1260 |
+
|
1261 |
+
function testAllProps(prop, value, skipValueTest) {
|
1262 |
+
return testPropsAll(prop, undefined, undefined, value, skipValueTest);
|
1263 |
+
}
|
1264 |
+
ModernizrProto.testAllProps = testAllProps;
|
1265 |
+
|
1266 |
+
/*!
|
1267 |
+
{
|
1268 |
+
"name": "Flexbox",
|
1269 |
+
"property": "flexbox",
|
1270 |
+
"caniuse": "flexbox",
|
1271 |
+
"tags": ["css"],
|
1272 |
+
"notes": [{
|
1273 |
+
"name": "The _new_ flexbox",
|
1274 |
+
"href": "http://dev.w3.org/csswg/css3-flexbox"
|
1275 |
+
}],
|
1276 |
+
"warnings": [
|
1277 |
+
"A `true` result for this detect does not imply that the `flex-wrap` property is supported; see the `flexwrap` detect."
|
1278 |
+
]
|
1279 |
+
}
|
1280 |
+
!*/
|
1281 |
+
/* DOC
|
1282 |
+
Detects support for the Flexible Box Layout model, a.k.a. Flexbox, which allows easy manipulation of layout order and sizing within a container.
|
1283 |
+
*/
|
1284 |
+
|
1285 |
+
Modernizr.addTest('flexbox', testAllProps('flexBasis', '1px', true));
|
1286 |
+
|
1287 |
+
/*!
|
1288 |
+
{
|
1289 |
+
"name": "Flexbox (legacy)",
|
1290 |
+
"property": "flexboxlegacy",
|
1291 |
+
"tags": ["css"],
|
1292 |
+
"polyfills": ["flexie"],
|
1293 |
+
"notes": [{
|
1294 |
+
"name": "The _old_ flexbox",
|
1295 |
+
"href": "https://www.w3.org/TR/2009/WD-css3-flexbox-20090723/"
|
1296 |
+
}]
|
1297 |
+
}
|
1298 |
+
!*/
|
1299 |
+
|
1300 |
+
Modernizr.addTest('flexboxlegacy', testAllProps('boxDirection', 'reverse', true));
|
1301 |
+
|
1302 |
+
/*!
|
1303 |
+
{
|
1304 |
+
"name": "CSS Transforms",
|
1305 |
+
"property": "csstransforms",
|
1306 |
+
"caniuse": "transforms2d",
|
1307 |
+
"tags": ["css"]
|
1308 |
+
}
|
1309 |
+
!*/
|
1310 |
+
|
1311 |
+
Modernizr.addTest('csstransforms', function() {
|
1312 |
+
// Android < 3.0 is buggy, so we sniff and blacklist
|
1313 |
+
// http://git.io/hHzL7w
|
1314 |
+
return navigator.userAgent.indexOf('Android 2.') === -1 &&
|
1315 |
+
testAllProps('transform', 'scale(1)', true);
|
1316 |
+
});
|
1317 |
+
|
1318 |
+
/*!
|
1319 |
+
{
|
1320 |
+
"name": "CSS Transforms 3D",
|
1321 |
+
"property": "csstransforms3d",
|
1322 |
+
"caniuse": "transforms3d",
|
1323 |
+
"tags": ["css"],
|
1324 |
+
"warnings": [
|
1325 |
+
"Chrome may occassionally fail this test on some systems; more info: https://code.google.com/p/chromium/issues/detail?id=129004"
|
1326 |
+
]
|
1327 |
+
}
|
1328 |
+
!*/
|
1329 |
+
|
1330 |
+
Modernizr.addTest('csstransforms3d', function() {
|
1331 |
+
var ret = !!testAllProps('perspective', '1px', true);
|
1332 |
+
var usePrefix = Modernizr._config.usePrefixes;
|
1333 |
+
|
1334 |
+
// Webkit's 3D transforms are passed off to the browser's own graphics renderer.
|
1335 |
+
// It works fine in Safari on Leopard and Snow Leopard, but not in Chrome in
|
1336 |
+
// some conditions. As a result, Webkit typically recognizes the syntax but
|
1337 |
+
// will sometimes throw a false positive, thus we must do a more thorough check:
|
1338 |
+
if (ret && (!usePrefix || 'webkitPerspective' in docElement.style)) {
|
1339 |
+
var mq;
|
1340 |
+
var defaultStyle = '#modernizr{width:0;height:0}';
|
1341 |
+
// Use CSS Conditional Rules if available
|
1342 |
+
if (Modernizr.supports) {
|
1343 |
+
mq = '@supports (perspective: 1px)';
|
1344 |
+
} else {
|
1345 |
+
// Otherwise, Webkit allows this media query to succeed only if the feature is enabled.
|
1346 |
+
// `@media (transform-3d),(-webkit-transform-3d){ ... }`
|
1347 |
+
mq = '@media (transform-3d)';
|
1348 |
+
if (usePrefix) {
|
1349 |
+
mq += ',(-webkit-transform-3d)';
|
1350 |
+
}
|
1351 |
+
}
|
1352 |
+
|
1353 |
+
mq += '{#modernizr{width:7px;height:18px;margin:0;padding:0;border:0}}';
|
1354 |
+
|
1355 |
+
testStyles(defaultStyle + mq, function(elem) {
|
1356 |
+
ret = elem.offsetWidth === 7 && elem.offsetHeight === 18;
|
1357 |
+
});
|
1358 |
+
}
|
1359 |
+
|
1360 |
+
return ret;
|
1361 |
+
});
|
1362 |
+
|
1363 |
+
|
1364 |
+
// Run each test
|
1365 |
+
testRunner();
|
1366 |
+
|
1367 |
+
// Remove the "no-js" class if it exists
|
1368 |
+
setClasses(classes);
|
1369 |
+
|
1370 |
+
delete ModernizrProto.addTest;
|
1371 |
+
delete ModernizrProto.addAsyncTest;
|
1372 |
+
|
1373 |
+
// Run the things that are supposed to run after the tests
|
1374 |
+
for (var i = 0; i < Modernizr._q.length; i++) {
|
1375 |
+
Modernizr._q[i]();
|
1376 |
+
}
|
1377 |
+
|
1378 |
+
// Leak Modernizr namespace
|
1379 |
+
window.lvcaModernizr = Modernizr;
|
1380 |
+
|
1381 |
+
|
1382 |
+
;
|
1383 |
+
|
1384 |
+
})(window, document);
|
assets/js/modernizr-custom.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
(function(window,document,undefined){var classes=[];var tests=[];var ModernizrProto={_version:"3.3.1",_config:{classPrefix:"lvca-",enableClasses:true,enableJSClass:true,usePrefixes:true},_q:[],on:function(test,cb){var self=this;setTimeout(function(){cb(self[test])},0)},addTest:function(name,fn,options){tests.push({name:name,fn:fn,options:options})},addAsyncTest:function(fn){tests.push({name:null,fn:fn})}};var Modernizr=function(){};Modernizr.prototype=ModernizrProto;Modernizr=new Modernizr;function is(obj,type){return typeof obj===type}function testRunner(){var featureNames;var feature;var aliasIdx;var result;var nameIdx;var featureName;var featureNameSplit;for(var featureIdx in tests){if(tests.hasOwnProperty(featureIdx)){featureNames=[];feature=tests[featureIdx];if(feature.name){featureNames.push(feature.name.toLowerCase());if(feature.options&&feature.options.aliases&&feature.options.aliases.length){for(aliasIdx=0;aliasIdx<feature.options.aliases.length;aliasIdx++){featureNames.push(feature.options.aliases[aliasIdx].toLowerCase())}}}result=is(feature.fn,"function")?feature.fn():feature.fn;for(nameIdx=0;nameIdx<featureNames.length;nameIdx++){featureName=featureNames[nameIdx];featureNameSplit=featureName.split(".");if(featureNameSplit.length===1){Modernizr[featureNameSplit[0]]=result}else{if(Modernizr[featureNameSplit[0]]&&!(Modernizr[featureNameSplit[0]]instanceof Boolean)){Modernizr[featureNameSplit[0]]=new Boolean(Modernizr[featureNameSplit[0]])}Modernizr[featureNameSplit[0]][featureNameSplit[1]]=result}classes.push((result?"":"no-")+featureNameSplit.join("-"))}}}}var docElement=document.documentElement;var isSVG=docElement.nodeName.toLowerCase()==="svg";function setClasses(classes){var className=docElement.className;var classPrefix=Modernizr._config.classPrefix||"";if(isSVG){className=className.baseVal}if(Modernizr._config.enableJSClass){var reJS=new RegExp("(^|\\s)"+classPrefix+"no-js(\\s|$)");className=className.replace(reJS,"$1"+classPrefix+"js$2")}if(Modernizr._config.enableClasses){className+=" "+classPrefix+classes.join(" "+classPrefix);isSVG?docElement.className.baseVal=className:docElement.className=className}}var html5;if(!isSVG){(function(window,document){var version="3.7.3";var options=window.html5||{};var reSkip=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i;var saveClones=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i;var supportsHtml5Styles;var expando="_html5shiv";var expanID=0;var expandoData={};var supportsUnknownElements;(function(){try{var a=document.createElement("a");a.innerHTML="<xyz></xyz>";supportsHtml5Styles="hidden"in a;supportsUnknownElements=a.childNodes.length==1||function(){document.createElement("a");var frag=document.createDocumentFragment();return typeof frag.cloneNode=="undefined"||typeof frag.createDocumentFragment=="undefined"||typeof frag.createElement=="undefined"}()}catch(e){supportsHtml5Styles=true;supportsUnknownElements=true}})();function addStyleSheet(ownerDocument,cssText){var p=ownerDocument.createElement("p"),parent=ownerDocument.getElementsByTagName("head")[0]||ownerDocument.documentElement;p.innerHTML="x<style>"+cssText+"</style>";return parent.insertBefore(p.lastChild,parent.firstChild)}function getElements(){var elements=html5.elements;return typeof elements=="string"?elements.split(" "):elements}function addElements(newElements,ownerDocument){var elements=html5.elements;if(typeof elements!="string"){elements=elements.join(" ")}if(typeof newElements!="string"){newElements=newElements.join(" ")}html5.elements=elements+" "+newElements;shivDocument(ownerDocument)}function getExpandoData(ownerDocument){var data=expandoData[ownerDocument[expando]];if(!data){data={};expanID++;ownerDocument[expando]=expanID;expandoData[expanID]=data}return data}function createElement(nodeName,ownerDocument,data){if(!ownerDocument){ownerDocument=document}if(supportsUnknownElements){return ownerDocument.createElement(nodeName)}if(!data){data=getExpandoData(ownerDocument)}var node;if(data.cache[nodeName]){node=data.cache[nodeName].cloneNode()}else if(saveClones.test(nodeName)){node=(data.cache[nodeName]=data.createElem(nodeName)).cloneNode()}else{node=data.createElem(nodeName)}return node.canHaveChildren&&!reSkip.test(nodeName)&&!node.tagUrn?data.frag.appendChild(node):node}function createDocumentFragment(ownerDocument,data){if(!ownerDocument){ownerDocument=document}if(supportsUnknownElements){return ownerDocument.createDocumentFragment()}data=data||getExpandoData(ownerDocument);var clone=data.frag.cloneNode(),i=0,elems=getElements(),l=elems.length;for(;i<l;i++){clone.createElement(elems[i])}return clone}function shivMethods(ownerDocument,data){if(!data.cache){data.cache={};data.createElem=ownerDocument.createElement;data.createFrag=ownerDocument.createDocumentFragment;data.frag=data.createFrag()}ownerDocument.createElement=function(nodeName){if(!html5.shivMethods){return data.createElem(nodeName)}return createElement(nodeName,ownerDocument,data)};ownerDocument.createDocumentFragment=Function("h,f","return function(){"+"var n=f.cloneNode(),c=n.createElement;"+"h.shivMethods&&("+getElements().join().replace(/[\w\-:]+/g,function(nodeName){data.createElem(nodeName);data.frag.createElement(nodeName);return'c("'+nodeName+'")'})+");return n}")(html5,data.frag)}function shivDocument(ownerDocument){if(!ownerDocument){ownerDocument=document}var data=getExpandoData(ownerDocument);if(html5.shivCSS&&!supportsHtml5Styles&&!data.hasCSS){data.hasCSS=!!addStyleSheet(ownerDocument,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}"+"mark{background:#FF0;color:#000}"+"template{display:none}")}if(!supportsUnknownElements){shivMethods(ownerDocument,data)}return ownerDocument}var html5={elements:options.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:version,shivCSS:options.shivCSS!==false,supportsUnknownElements:supportsUnknownElements,shivMethods:options.shivMethods!==false,type:"default",shivDocument:shivDocument,createElement:createElement,createDocumentFragment:createDocumentFragment,addElements:addElements};window.html5=html5;shivDocument(document);if(typeof module=="object"&&module.exports){module.exports=html5}})(typeof window!=="undefined"?window:this,document)}var prefixes=ModernizrProto._config.usePrefixes?" -webkit- -moz- -o- -ms- ".split(" "):["",""];ModernizrProto._prefixes=prefixes;var newSyntax="CSS"in window&&"supports"in window.CSS;var oldSyntax="supportsCSS"in window;Modernizr.addTest("supports",newSyntax||oldSyntax);function createElement(){if(typeof document.createElement!=="function"){return document.createElement(arguments[0])}else if(isSVG){return document.createElementNS.call(document,"http://www.w3.org/2000/svg",arguments[0])}else{return document.createElement.apply(document,arguments)}}function getBody(){var body=document.body;if(!body){body=createElement(isSVG?"svg":"body");body.fake=true}return body}function injectElementWithStyles(rule,callback,nodes,testnames){var mod="modernizr";var style;var ret;var node;var docOverflow;var div=createElement("div");var body=getBody();if(parseInt(nodes,10)){while(nodes--){node=createElement("div");node.id=testnames?testnames[nodes]:mod+(nodes+1);div.appendChild(node)}}style=createElement("style");style.type="text/css";style.id="s"+mod;(!body.fake?div:body).appendChild(style);body.appendChild(div);if(style.styleSheet){style.styleSheet.cssText=rule}else{style.appendChild(document.createTextNode(rule))}div.id=mod;if(body.fake){body.style.background="";body.style.overflow="hidden";docOverflow=docElement.style.overflow;docElement.style.overflow="hidden";docElement.appendChild(body)}ret=callback(div,rule);if(body.fake){body.parentNode.removeChild(body);docElement.style.overflow=docOverflow;docElement.offsetHeight}else{div.parentNode.removeChild(div)}return!!ret}var testStyles=ModernizrProto.testStyles=injectElementWithStyles;Modernizr.addTest("touchevents",function(){var bool;if("ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch){bool=true}else{var query=["@media (",prefixes.join("touch-enabled),("),"heartz",")","{#modernizr{top:9px;position:absolute}}"].join("");testStyles(query,function(node){bool=node.offsetTop===9})}return bool});var omPrefixes="Moz O ms Webkit";var cssomPrefixes=ModernizrProto._config.usePrefixes?omPrefixes.split(" "):[];ModernizrProto._cssomPrefixes=cssomPrefixes;var domPrefixes=ModernizrProto._config.usePrefixes?omPrefixes.toLowerCase().split(" "):[];ModernizrProto._domPrefixes=domPrefixes;function contains(str,substr){return!!~(""+str).indexOf(substr)}function cssToDOM(name){return name.replace(/([a-z])-([a-z])/g,function(str,m1,m2){return m1+m2.toUpperCase()}).replace(/^-/,"")}function fnBind(fn,that){return function(){return fn.apply(that,arguments)}}function testDOMProps(props,obj,elem){var item;for(var i in props){if(props[i]in obj){if(elem===false){return props[i]}item=obj[props[i]];if(is(item,"function")){return fnBind(item,elem||obj)}return item}}return false}var modElem={elem:createElement("modernizr")};Modernizr._q.push(function(){delete modElem.elem});var mStyle={style:modElem.elem.style};Modernizr._q.unshift(function(){delete mStyle.style});function domToCSS(name){return name.replace(/([A-Z])/g,function(str,m1){return"-"+m1.toLowerCase()}).replace(/^ms-/,"-ms-")}function nativeTestProps(props,value){var i=props.length;if("CSS"in window&&"supports"in window.CSS){while(i--){if(window.CSS.supports(domToCSS(props[i]),value)){return true}}return false}else if("CSSSupportsRule"in window){var conditionText=[];while(i--){conditionText.push("("+domToCSS(props[i])+":"+value+")")}conditionText=conditionText.join(" or ");return injectElementWithStyles("@supports ("+conditionText+") { #modernizr { position: absolute; } }",function(node){return getComputedStyle(node,null).position=="absolute"})}return undefined}function testProps(props,prefixed,value,skipValueTest){skipValueTest=is(skipValueTest,"undefined")?false:skipValueTest;if(!is(value,"undefined")){var result=nativeTestProps(props,value);if(!is(result,"undefined")){return result}}var afterInit,i,propsLength,prop,before;var elems=["modernizr","tspan"];while(!mStyle.style){afterInit=true;mStyle.modElem=createElement(elems.shift());mStyle.style=mStyle.modElem.style}function cleanElems(){if(afterInit){delete mStyle.style;delete mStyle.modElem}}propsLength=props.length;for(i=0;i<propsLength;i++){prop=props[i];before=mStyle.style[prop];if(contains(prop,"-")){prop=cssToDOM(prop)}if(mStyle.style[prop]!==undefined){if(!skipValueTest&&!is(value,"undefined")){try{mStyle.style[prop]=value}catch(e){}if(mStyle.style[prop]!=before){cleanElems();return prefixed=="pfx"?prop:true}}else{cleanElems();return prefixed=="pfx"?prop:true}}}cleanElems();return false}function testPropsAll(prop,prefixed,elem,value,skipValueTest){var ucProp=prop.charAt(0).toUpperCase()+prop.slice(1),props=(prop+" "+cssomPrefixes.join(ucProp+" ")+ucProp).split(" ");if(is(prefixed,"string")||is(prefixed,"undefined")){return testProps(props,prefixed,value,skipValueTest)}else{props=(prop+" "+domPrefixes.join(ucProp+" ")+ucProp).split(" ");return testDOMProps(props,prefixed,elem)}}ModernizrProto.testAllProps=testPropsAll;function testAllProps(prop,value,skipValueTest){return testPropsAll(prop,undefined,undefined,value,skipValueTest)}ModernizrProto.testAllProps=testAllProps;Modernizr.addTest("flexbox",testAllProps("flexBasis","1px",true));Modernizr.addTest("flexboxlegacy",testAllProps("boxDirection","reverse",true));Modernizr.addTest("csstransforms",function(){return navigator.userAgent.indexOf("Android 2.")===-1&&testAllProps("transform","scale(1)",true)});Modernizr.addTest("csstransforms3d",function(){var ret=!!testAllProps("perspective","1px",true);var usePrefix=Modernizr._config.usePrefixes;if(ret&&(!usePrefix||"webkitPerspective"in docElement.style)){var mq;var defaultStyle="#modernizr{width:0;height:0}";if(Modernizr.supports){mq="@supports (perspective: 1px)"}else{mq="@media (transform-3d)";if(usePrefix){mq+=",(-webkit-transform-3d)"}}mq+="{#modernizr{width:7px;height:18px;margin:0;padding:0;border:0}}";testStyles(defaultStyle+mq,function(elem){ret=elem.offsetWidth===7&&elem.offsetHeight===18})}return ret});testRunner();setClasses(classes);delete ModernizrProto.addTest;delete ModernizrProto.addAsyncTest;for(var i=0;i<Modernizr._q.length;i++){Modernizr._q[i]()}window.lvcaModernizr=Modernizr})(window,document);
|
includes/addons/accordion/class-lvca-accordion.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Widget Name: Livemesh Accordion
|
5 |
Description: Displays collapsible content panels to help display information when space is limited.
|
6 |
Author: LiveMesh
|
7 |
-
Author URI:
|
8 |
*/
|
9 |
|
10 |
|
@@ -29,7 +29,7 @@ class LVCA_Accordion {
|
|
29 |
|
30 |
function load_scripts() {
|
31 |
|
32 |
-
wp_enqueue_script('lvca-accordion', plugin_dir_url(__FILE__) . 'js/accordion' .
|
33 |
|
34 |
wp_enqueue_style('lvca-accordion', plugin_dir_url(__FILE__) . 'css/style.css', array(), LVCA_VERSION);
|
35 |
}
|
@@ -173,4 +173,9 @@ if (class_exists('WPBakeryShortCodesContainer')) {
|
|
173 |
if (class_exists('WPBakeryShortCode')) {
|
174 |
class WPBakeryShortCode_lvca_panel extends WPBakeryShortCode {
|
175 |
}
|
|
|
|
|
|
|
|
|
|
|
176 |
}
|
4 |
Widget Name: Livemesh Accordion
|
5 |
Description: Displays collapsible content panels to help display information when space is limited.
|
6 |
Author: LiveMesh
|
7 |
+
Author URI: https://www.livemeshthemes.com
|
8 |
*/
|
9 |
|
10 |
|
29 |
|
30 |
function load_scripts() {
|
31 |
|
32 |
+
wp_enqueue_script('lvca-accordion', plugin_dir_url(__FILE__) . 'js/accordion' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
33 |
|
34 |
wp_enqueue_style('lvca-accordion', plugin_dir_url(__FILE__) . 'css/style.css', array(), LVCA_VERSION);
|
35 |
}
|
173 |
if (class_exists('WPBakeryShortCode')) {
|
174 |
class WPBakeryShortCode_lvca_panel extends WPBakeryShortCode {
|
175 |
}
|
176 |
+
}
|
177 |
+
|
178 |
+
// Initialize Element Class
|
179 |
+
if (class_exists('LVCA_Accordion')) {
|
180 |
+
new LVCA_Accordion();
|
181 |
}
|
includes/addons/carousel/class-lvca-carousel.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Widget Name: Livemesh Carousel
|
5 |
Description: Display a list of custom HTML content as a carousel.
|
6 |
Author: LiveMesh
|
7 |
-
Author URI:
|
8 |
*/
|
9 |
|
10 |
|
@@ -29,7 +29,7 @@ class LVCA_Carousel {
|
|
29 |
|
30 |
function load_scripts() {
|
31 |
|
32 |
-
wp_enqueue_script('lvca-slick-carousel', LVCA_PLUGIN_URL . 'assets/js/slick' .
|
33 |
|
34 |
wp_enqueue_style('lvca-slick', LVCA_PLUGIN_URL . 'assets/css/slick.css', array(), LVCA_VERSION);
|
35 |
|
@@ -49,11 +49,9 @@ class LVCA_Carousel {
|
|
49 |
|
50 |
?>
|
51 |
|
52 |
-
<div id="lvca-carousel-<?php echo $uniqueid; ?>"
|
53 |
-
|
54 |
-
|
55 |
-
}
|
56 |
-
} ?>>
|
57 |
|
58 |
<?php
|
59 |
|
@@ -136,7 +134,7 @@ class LVCA_Carousel {
|
|
136 |
"content_element" => true,
|
137 |
"as_child" => array('only' => 'lvca_carousel'), // Use only|except attributes to limit parent (separate multiple values with comma)
|
138 |
"icon" => 'icon-lvca-carousel-item',
|
139 |
-
"category" => __(
|
140 |
"params" => array(
|
141 |
array(
|
142 |
'type' => 'textfield',
|
@@ -169,4 +167,9 @@ if (class_exists('WPBakeryShortCodesContainer')) {
|
|
169 |
if (class_exists('WPBakeryShortCode')) {
|
170 |
class WPBakeryShortCode_lvca_carousel_item extends WPBakeryShortCode {
|
171 |
}
|
|
|
|
|
|
|
|
|
|
|
172 |
}
|
4 |
Widget Name: Livemesh Carousel
|
5 |
Description: Display a list of custom HTML content as a carousel.
|
6 |
Author: LiveMesh
|
7 |
+
Author URI: https://www.livemeshthemes.com
|
8 |
*/
|
9 |
|
10 |
|
29 |
|
30 |
function load_scripts() {
|
31 |
|
32 |
+
wp_enqueue_script('lvca-slick-carousel', LVCA_PLUGIN_URL . 'assets/js/slick' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
33 |
|
34 |
wp_enqueue_style('lvca-slick', LVCA_PLUGIN_URL . 'assets/css/slick.css', array(), LVCA_VERSION);
|
35 |
|
49 |
|
50 |
?>
|
51 |
|
52 |
+
<div id="lvca-carousel-<?php echo $uniqueid; ?>"
|
53 |
+
class="lvca-carousel lvca-container"
|
54 |
+
data-settings='<?php echo wp_json_encode($settings); ?>'>
|
|
|
|
|
55 |
|
56 |
<?php
|
57 |
|
134 |
"content_element" => true,
|
135 |
"as_child" => array('only' => 'lvca_carousel'), // Use only|except attributes to limit parent (separate multiple values with comma)
|
136 |
"icon" => 'icon-lvca-carousel-item',
|
137 |
+
"category" => __("Livemesh VC Addons", "livemesh-vc-addons"),
|
138 |
"params" => array(
|
139 |
array(
|
140 |
'type' => 'textfield',
|
167 |
if (class_exists('WPBakeryShortCode')) {
|
168 |
class WPBakeryShortCode_lvca_carousel_item extends WPBakeryShortCode {
|
169 |
}
|
170 |
+
}
|
171 |
+
|
172 |
+
// Initialize Element Class
|
173 |
+
if (class_exists('LVCA_Carousel')) {
|
174 |
+
new LVCA_Carousel();
|
175 |
}
|
includes/addons/carousel/js/carousel.js
CHANGED
@@ -4,19 +4,21 @@ jQuery(function ($) {
|
|
4 |
var custom_css = '';
|
5 |
$('.lvca-carousel').each(function () {
|
6 |
|
7 |
-
carousel_elem = $(this);
|
|
|
|
|
8 |
|
9 |
var id_selector = '#' + carousel_elem.attr('id');
|
10 |
|
11 |
-
var desktop_gutter =
|
12 |
|
13 |
-
var tablet_gutter =
|
14 |
|
15 |
-
var tablet_width =
|
16 |
|
17 |
-
var mobile_gutter =
|
18 |
|
19 |
-
var mobile_width =
|
20 |
|
21 |
custom_css += id_selector + '.lvca-carousel .lvca-carousel-item { padding:' + desktop_gutter + 'px; }';
|
22 |
|
@@ -25,7 +27,7 @@ jQuery(function ($) {
|
|
25 |
custom_css += ' @media only screen and (max-width: ' + mobile_width + 'px) { ' + id_selector + '.lvca-carousel .lvca-carousel-item { padding:' + mobile_gutter + 'px; } } ';
|
26 |
|
27 |
});
|
28 |
-
if (custom_css
|
29 |
custom_css = '<style type="text/css">' + custom_css + '</style>';
|
30 |
$('head').append(custom_css);
|
31 |
}
|
4 |
var custom_css = '';
|
5 |
$('.lvca-carousel').each(function () {
|
6 |
|
7 |
+
var carousel_elem = $(this);
|
8 |
+
|
9 |
+
var settings = carousel_elem.data('settings');
|
10 |
|
11 |
var id_selector = '#' + carousel_elem.attr('id');
|
12 |
|
13 |
+
var desktop_gutter = settings['gutter'] || 10;
|
14 |
|
15 |
+
var tablet_gutter = settings['tablet_gutter'] || 10;
|
16 |
|
17 |
+
var tablet_width = settings['tablet_width'] || 800;
|
18 |
|
19 |
+
var mobile_gutter = settings['mobile_gutter'] || 10;
|
20 |
|
21 |
+
var mobile_width = settings['mobile_width'] || 480;
|
22 |
|
23 |
custom_css += id_selector + '.lvca-carousel .lvca-carousel-item { padding:' + desktop_gutter + 'px; }';
|
24 |
|
27 |
custom_css += ' @media only screen and (max-width: ' + mobile_width + 'px) { ' + id_selector + '.lvca-carousel .lvca-carousel-item { padding:' + mobile_gutter + 'px; } } ';
|
28 |
|
29 |
});
|
30 |
+
if (custom_css !== '') {
|
31 |
custom_css = '<style type="text/css">' + custom_css + '</style>';
|
32 |
$('head').append(custom_css);
|
33 |
}
|
includes/addons/carousel/js/carousel.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(function(
|
1 |
+
jQuery(function($){var custom_css="";$(".lvca-carousel").each(function(){var carousel_elem=$(this);var settings=carousel_elem.data("settings");var id_selector="#"+carousel_elem.attr("id");var desktop_gutter=settings["gutter"]||10;var tablet_gutter=settings["tablet_gutter"]||10;var tablet_width=settings["tablet_width"]||800;var mobile_gutter=settings["mobile_gutter"]||10;var mobile_width=settings["mobile_width"]||480;custom_css+=id_selector+".lvca-carousel .lvca-carousel-item { padding:"+desktop_gutter+"px; }";custom_css+=" @media only screen and (max-width: "+tablet_width+"px) { "+id_selector+".lvca-carousel .lvca-carousel-item { padding:"+tablet_gutter+"px; } } ";custom_css+=" @media only screen and (max-width: "+mobile_width+"px) { "+id_selector+".lvca-carousel .lvca-carousel-item { padding:"+mobile_gutter+"px; } } "});if(custom_css!==""){custom_css='<style type="text/css">'+custom_css+"</style>";$("head").append(custom_css)}});
|
includes/addons/clients/class-lvca-clients.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Widget Name: Livemesh Clients
|
5 |
Description: Display list of your clients in a multi-column grid.
|
6 |
Author: LiveMesh
|
7 |
-
Author URI:
|
8 |
*/
|
9 |
|
10 |
class LVCA_Clients {
|
@@ -192,4 +192,9 @@ if (class_exists('WPBakeryShortCodesContainer')) {
|
|
192 |
if (class_exists('WPBakeryShortCode')) {
|
193 |
class WPBakeryShortCode_lvca_single_client extends WPBakeryShortCode {
|
194 |
}
|
|
|
|
|
|
|
|
|
|
|
195 |
}
|
4 |
Widget Name: Livemesh Clients
|
5 |
Description: Display list of your clients in a multi-column grid.
|
6 |
Author: LiveMesh
|
7 |
+
Author URI: https://www.livemeshthemes.com
|
8 |
*/
|
9 |
|
10 |
class LVCA_Clients {
|
192 |
if (class_exists('WPBakeryShortCode')) {
|
193 |
class WPBakeryShortCode_lvca_single_client extends WPBakeryShortCode {
|
194 |
}
|
195 |
+
}
|
196 |
+
|
197 |
+
// Initialize Element Class
|
198 |
+
if (class_exists('LVCA_Clients')) {
|
199 |
+
new LVCA_Clients();
|
200 |
}
|
includes/addons/heading/class-lvca-heading.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Widget Name: Livemesh Heading
|
5 |
Description: Create heading for display on the top of a section.
|
6 |
Author: LiveMesh
|
7 |
-
Author URI:
|
8 |
*/
|
9 |
|
10 |
class LVCA_Heading {
|
@@ -85,30 +85,6 @@ class LVCA_Heading {
|
|
85 |
"icon" => 'icon-lvca-heading',
|
86 |
"params" => array(
|
87 |
// add params same as with any other content element
|
88 |
-
array(
|
89 |
-
"type" => "dropdown",
|
90 |
-
"param_name" => "style",
|
91 |
-
"heading" => __("Choose Style", "livemesh-vc-addons"),
|
92 |
-
"description" => __("Choose the particular style of heading you need", "livemesh-vc-addons"),
|
93 |
-
'value' => array(
|
94 |
-
__('Style 1', 'livemesh-vc-addons') => 'style1',
|
95 |
-
__('Style 2', 'livemesh-vc-addons') => 'style2',
|
96 |
-
__('Style 3', 'livemesh-vc-addons') => 'style3',
|
97 |
-
),
|
98 |
-
'std' => 'style1',
|
99 |
-
),
|
100 |
-
array(
|
101 |
-
"type" => "dropdown",
|
102 |
-
"param_name" => "align",
|
103 |
-
"heading" => __("Align", "livemesh-vc-addons"),
|
104 |
-
"description" => __("Alignment of the heading", "livemesh-vc-addons"),
|
105 |
-
'value' => array(
|
106 |
-
__('Center', 'livemesh-vc-addons') => 'center',
|
107 |
-
__('Left', 'livemesh-vc-addons') => 'left',
|
108 |
-
__('Right', 'livemesh-vc-addons') => 'right',
|
109 |
-
),
|
110 |
-
'std' => 'center',
|
111 |
-
),
|
112 |
array(
|
113 |
'type' => 'textfield',
|
114 |
'param_name' => 'heading',
|
@@ -136,6 +112,32 @@ class LVCA_Heading {
|
|
136 |
'value' => array('style1' , 'style2'),
|
137 |
),
|
138 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
),
|
140 |
));
|
141 |
|
@@ -148,4 +150,9 @@ class LVCA_Heading {
|
|
148 |
if (class_exists('WPBakeryShortCode')) {
|
149 |
class WPBakeryShortCode_lvca_heading extends WPBakeryShortCode {
|
150 |
}
|
|
|
|
|
|
|
|
|
|
|
151 |
}
|
4 |
Widget Name: Livemesh Heading
|
5 |
Description: Create heading for display on the top of a section.
|
6 |
Author: LiveMesh
|
7 |
+
Author URI: https://www.livemeshthemes.com
|
8 |
*/
|
9 |
|
10 |
class LVCA_Heading {
|
85 |
"icon" => 'icon-lvca-heading',
|
86 |
"params" => array(
|
87 |
// add params same as with any other content element
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
array(
|
89 |
'type' => 'textfield',
|
90 |
'param_name' => 'heading',
|
112 |
'value' => array('style1' , 'style2'),
|
113 |
),
|
114 |
),
|
115 |
+
array(
|
116 |
+
"type" => "dropdown",
|
117 |
+
"param_name" => "style",
|
118 |
+
"heading" => __("Choose Style", "livemesh-vc-addons"),
|
119 |
+
"description" => __("Choose the particular style of heading you need", "livemesh-vc-addons"),
|
120 |
+
'value' => array(
|
121 |
+
__('Style 1', 'livemesh-vc-addons') => 'style1',
|
122 |
+
__('Style 2', 'livemesh-vc-addons') => 'style2',
|
123 |
+
__('Style 3', 'livemesh-vc-addons') => 'style3',
|
124 |
+
),
|
125 |
+
'std' => 'style1',
|
126 |
+
'group' => __('Settings', 'livemesh-vc-addons')
|
127 |
+
),
|
128 |
+
array(
|
129 |
+
"type" => "dropdown",
|
130 |
+
"param_name" => "align",
|
131 |
+
"heading" => __("Align", "livemesh-vc-addons"),
|
132 |
+
"description" => __("Alignment of the heading", "livemesh-vc-addons"),
|
133 |
+
'value' => array(
|
134 |
+
__('Center', 'livemesh-vc-addons') => 'center',
|
135 |
+
__('Left', 'livemesh-vc-addons') => 'left',
|
136 |
+
__('Right', 'livemesh-vc-addons') => 'right',
|
137 |
+
),
|
138 |
+
'std' => 'center',
|
139 |
+
'group' => __('Settings', 'livemesh-vc-addons')
|
140 |
+
),
|
141 |
),
|
142 |
));
|
143 |
|
150 |
if (class_exists('WPBakeryShortCode')) {
|
151 |
class WPBakeryShortCode_lvca_heading extends WPBakeryShortCode {
|
152 |
}
|
153 |
+
}
|
154 |
+
|
155 |
+
// Initialize Element Class
|
156 |
+
if (class_exists('LVCA_Heading')) {
|
157 |
+
new LVCA_Heading();
|
158 |
}
|
includes/addons/odometers/class-lvca-odometers.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Widget Name: Livemesh Odometers
|
5 |
Description: Display one or more animated odometer statistics in a multi-column grid.
|
6 |
Author: LiveMesh
|
7 |
-
Author URI:
|
8 |
*/
|
9 |
|
10 |
class LVCA_Odometers {
|
@@ -30,11 +30,11 @@ class LVCA_Odometers {
|
|
30 |
|
31 |
function load_scripts() {
|
32 |
|
33 |
-
wp_enqueue_script('lvca-waypoints', LVCA_PLUGIN_URL . 'assets/js/jquery.waypoints' .
|
34 |
|
35 |
-
wp_enqueue_script('lvca-stats', LVCA_PLUGIN_URL . 'assets/js/jquery.stats' .
|
36 |
|
37 |
-
wp_enqueue_script('lvca-odometers', plugin_dir_url(__FILE__) . 'js/odometer' .
|
38 |
|
39 |
wp_enqueue_style('lvca-odometers', plugin_dir_url(__FILE__) . 'css/style.css', array(), LVCA_VERSION);
|
40 |
|
@@ -357,4 +357,9 @@ if (class_exists('WPBakeryShortCodesContainer')) {
|
|
357 |
if (class_exists('WPBakeryShortCode')) {
|
358 |
class WPBakeryShortCode_lvca_odometer_item extends WPBakeryShortCode {
|
359 |
}
|
|
|
|
|
|
|
|
|
|
|
360 |
}
|
4 |
Widget Name: Livemesh Odometers
|
5 |
Description: Display one or more animated odometer statistics in a multi-column grid.
|
6 |
Author: LiveMesh
|
7 |
+
Author URI: https://www.livemeshthemes.com
|
8 |
*/
|
9 |
|
10 |
class LVCA_Odometers {
|
30 |
|
31 |
function load_scripts() {
|
32 |
|
33 |
+
wp_enqueue_script('lvca-waypoints', LVCA_PLUGIN_URL . 'assets/js/jquery.waypoints' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
34 |
|
35 |
+
wp_enqueue_script('lvca-stats', LVCA_PLUGIN_URL . 'assets/js/jquery.stats' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
36 |
|
37 |
+
wp_enqueue_script('lvca-odometers', plugin_dir_url(__FILE__) . 'js/odometer' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
38 |
|
39 |
wp_enqueue_style('lvca-odometers', plugin_dir_url(__FILE__) . 'css/style.css', array(), LVCA_VERSION);
|
40 |
|
357 |
if (class_exists('WPBakeryShortCode')) {
|
358 |
class WPBakeryShortCode_lvca_odometer_item extends WPBakeryShortCode {
|
359 |
}
|
360 |
+
}
|
361 |
+
|
362 |
+
// Initialize Element Class
|
363 |
+
if (class_exists('LVCA_Odometers')) {
|
364 |
+
new LVCA_Odometers();
|
365 |
}
|
includes/addons/piecharts/class-lvca-piecharts.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Widget Name: Livemesh Piecharts
|
5 |
Description: Display one or more piecharts depicting a percentage value in a multi-column grid.
|
6 |
Author: LiveMesh
|
7 |
-
Author URI:
|
8 |
*/
|
9 |
|
10 |
class LVCA_Piecharts {
|
@@ -32,11 +32,11 @@ class LVCA_Piecharts {
|
|
32 |
|
33 |
function load_scripts() {
|
34 |
|
35 |
-
wp_enqueue_script('lvca-waypoints', LVCA_PLUGIN_URL . 'assets/js/jquery.waypoints' .
|
36 |
|
37 |
-
wp_enqueue_script('lvca-stats', LVCA_PLUGIN_URL . 'assets/js/jquery.stats' .
|
38 |
|
39 |
-
wp_enqueue_script('lvca-piecharts', plugin_dir_url(__FILE__) . 'js/piechart' .
|
40 |
|
41 |
wp_enqueue_style('lvca-piecharts', plugin_dir_url(__FILE__) . 'css/style.css', array(), LVCA_VERSION);
|
42 |
|
@@ -204,4 +204,9 @@ if (class_exists('WPBakeryShortCodesContainer')) {
|
|
204 |
if (class_exists('WPBakeryShortCode')) {
|
205 |
class WPBakeryShortCode_lvca_piechart_item extends WPBakeryShortCode {
|
206 |
}
|
|
|
|
|
|
|
|
|
|
|
207 |
}
|
4 |
Widget Name: Livemesh Piecharts
|
5 |
Description: Display one or more piecharts depicting a percentage value in a multi-column grid.
|
6 |
Author: LiveMesh
|
7 |
+
Author URI: https://www.livemeshthemes.com
|
8 |
*/
|
9 |
|
10 |
class LVCA_Piecharts {
|
32 |
|
33 |
function load_scripts() {
|
34 |
|
35 |
+
wp_enqueue_script('lvca-waypoints', LVCA_PLUGIN_URL . 'assets/js/jquery.waypoints' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
36 |
|
37 |
+
wp_enqueue_script('lvca-stats', LVCA_PLUGIN_URL . 'assets/js/jquery.stats' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
38 |
|
39 |
+
wp_enqueue_script('lvca-piecharts', plugin_dir_url(__FILE__) . 'js/piechart' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
40 |
|
41 |
wp_enqueue_style('lvca-piecharts', plugin_dir_url(__FILE__) . 'css/style.css', array(), LVCA_VERSION);
|
42 |
|
204 |
if (class_exists('WPBakeryShortCode')) {
|
205 |
class WPBakeryShortCode_lvca_piechart_item extends WPBakeryShortCode {
|
206 |
}
|
207 |
+
}
|
208 |
+
|
209 |
+
// Initialize Element Class
|
210 |
+
if (class_exists('LVCA_Piecharts')) {
|
211 |
+
new LVCA_Piecharts();
|
212 |
}
|
includes/addons/portfolio/class-lvca-portfolio.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
Widget Name: Livemesh
|
5 |
-
Description: Display
|
6 |
Author: LiveMesh
|
7 |
-
Author URI:
|
8 |
*/
|
9 |
|
10 |
class LVCA_Portfolio {
|
@@ -60,11 +60,11 @@ class LVCA_Portfolio {
|
|
60 |
|
61 |
function load_scripts() {
|
62 |
|
63 |
-
wp_enqueue_script('lvca-isotope', LVCA_PLUGIN_URL . 'assets/js/isotope.pkgd' .
|
64 |
|
65 |
-
wp_enqueue_script('lvca-imagesloaded', LVCA_PLUGIN_URL . 'assets/js/imagesloaded.pkgd' .
|
66 |
|
67 |
-
wp_enqueue_script('lvca-portfolio', plugin_dir_url(__FILE__) . 'js/portfolio' .
|
68 |
|
69 |
wp_enqueue_style('lvca-portfolio', plugin_dir_url(__FILE__) . 'css/style.css', array(), LVCA_VERSION);
|
70 |
|
@@ -125,14 +125,15 @@ class LVCA_Portfolio {
|
|
125 |
|
126 |
ob_start(); ?>
|
127 |
|
128 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
|
130 |
-
|
131 |
-
// Check if any taxonomy filter has been applied
|
132 |
-
$chosen_terms = $this->get_chosen_terms($query_args);
|
133 |
-
if (empty($chosen_terms))
|
134 |
-
$this->_taxonomy_filter = $settings['taxonomy_filter'];
|
135 |
-
?>
|
136 |
|
137 |
<?php $column_style = lvca_get_column_class(intval($settings['per_line'])); ?>
|
138 |
|
@@ -160,7 +161,7 @@ class LVCA_Portfolio {
|
|
160 |
data-tablet_width="<?php echo $settings['tablet_width']; ?>"
|
161 |
data-mobile_gutter="<?php echo $settings['mobile_gutter']; ?>"
|
162 |
data-mobile_width="<?php echo $settings['mobile_width']; ?>"
|
163 |
-
data-isotope
|
164 |
|
165 |
<?php while ($loop->have_posts()) : $loop->the_post(); ?>
|
166 |
|
@@ -487,4 +488,9 @@ class LVCA_Portfolio {
|
|
487 |
if (class_exists('WPBakeryShortCode')) {
|
488 |
class WPBakeryShortCode_lvca_portfolio extends WPBakeryShortCode {
|
489 |
}
|
|
|
|
|
|
|
|
|
|
|
490 |
}
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
Widget Name: Livemesh Grid
|
5 |
+
Description: Display posts or custom post types in a multi-column grid.
|
6 |
Author: LiveMesh
|
7 |
+
Author URI: https://www.livemeshthemes.com
|
8 |
*/
|
9 |
|
10 |
class LVCA_Portfolio {
|
60 |
|
61 |
function load_scripts() {
|
62 |
|
63 |
+
wp_enqueue_script('lvca-isotope', LVCA_PLUGIN_URL . 'assets/js/isotope.pkgd' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
64 |
|
65 |
+
wp_enqueue_script('lvca-imagesloaded', LVCA_PLUGIN_URL . 'assets/js/imagesloaded.pkgd' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
66 |
|
67 |
+
wp_enqueue_script('lvca-portfolio', plugin_dir_url(__FILE__) . 'js/portfolio' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
68 |
|
69 |
wp_enqueue_style('lvca-portfolio', plugin_dir_url(__FILE__) . 'css/style.css', array(), LVCA_VERSION);
|
70 |
|
125 |
|
126 |
ob_start(); ?>
|
127 |
|
128 |
+
<?php
|
129 |
+
// Check if any taxonomy filter has been applied
|
130 |
+
$chosen_terms = $this->get_chosen_terms($query_args);
|
131 |
+
if (empty($chosen_terms))
|
132 |
+
$this->_taxonomy_filter = $settings['taxonomy_filter'];
|
133 |
+
|
134 |
+
?>
|
135 |
|
136 |
+
<div class="lvca-portfolio-wrap lvca-container">
|
|
|
|
|
|
|
|
|
|
|
137 |
|
138 |
<?php $column_style = lvca_get_column_class(intval($settings['per_line'])); ?>
|
139 |
|
161 |
data-tablet_width="<?php echo $settings['tablet_width']; ?>"
|
162 |
data-mobile_gutter="<?php echo $settings['mobile_gutter']; ?>"
|
163 |
data-mobile_width="<?php echo $settings['mobile_width']; ?>"
|
164 |
+
data-isotope='{ "itemSelector": ".lvca-portfolio-item", "layoutMode": "<?php echo esc_attr($settings['layout_mode']); ?>" }'>
|
165 |
|
166 |
<?php while ($loop->have_posts()) : $loop->the_post(); ?>
|
167 |
|
488 |
if (class_exists('WPBakeryShortCode')) {
|
489 |
class WPBakeryShortCode_lvca_portfolio extends WPBakeryShortCode {
|
490 |
}
|
491 |
+
}
|
492 |
+
|
493 |
+
// Initialize Element Class
|
494 |
+
if (class_exists('LVCA_Portfolio')) {
|
495 |
+
new LVCA_Portfolio();
|
496 |
}
|
includes/addons/portfolio/js/portfolio.js
CHANGED
@@ -30,7 +30,7 @@ jQuery(function ($) {
|
|
30 |
|
31 |
/* --------- Custom CSS Generation --------------- */
|
32 |
|
33 |
-
portfolio_elem = $(this).find('.lvca-portfolio');
|
34 |
|
35 |
var id_selector = '#' + portfolio_elem.attr('id');
|
36 |
|
@@ -53,7 +53,7 @@ jQuery(function ($) {
|
|
53 |
custom_css += ' @media only screen and (max-width: ' + mobile_width + 'px) { ' + id_selector + '.lvca-portfolio { margin-left: -' + mobile_gutter + 'px; margin-right: -' + mobile_gutter + 'px; } ' + id_selector + '.lvca-portfolio .lvca-portfolio-item { padding:' + mobile_gutter + 'px; } } ';
|
54 |
});
|
55 |
|
56 |
-
if (custom_css
|
57 |
custom_css = '<style type="text/css">' + custom_css + '</style>';
|
58 |
$('head').append(custom_css);
|
59 |
}
|
30 |
|
31 |
/* --------- Custom CSS Generation --------------- */
|
32 |
|
33 |
+
var portfolio_elem = $(this).find('.lvca-portfolio');
|
34 |
|
35 |
var id_selector = '#' + portfolio_elem.attr('id');
|
36 |
|
53 |
custom_css += ' @media only screen and (max-width: ' + mobile_width + 'px) { ' + id_selector + '.lvca-portfolio { margin-left: -' + mobile_gutter + 'px; margin-right: -' + mobile_gutter + 'px; } ' + id_selector + '.lvca-portfolio .lvca-portfolio-item { padding:' + mobile_gutter + 'px; } } ';
|
54 |
});
|
55 |
|
56 |
+
if (custom_css !== '') {
|
57 |
custom_css = '<style type="text/css">' + custom_css + '</style>';
|
58 |
$('head').append(custom_css);
|
59 |
}
|
includes/addons/portfolio/js/portfolio.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(function(
|
1 |
+
jQuery(function($){if($().isotope===undefined){return}var custom_css="";$(".lvca-portfolio-wrap").each(function(){var html_content=$(this).find(".js-isotope");html_content.imagesLoaded(function(){html_content.isotope("layout")});var container=$(this).find(".lvca-portfolio");if(container.length===0){return}$(this).find(".lvca-taxonomy-filter .lvca-filter-item a").on("click",function(e){e.preventDefault();var selector=$(this).attr("data-value");container.isotope({filter:selector});$(this).closest(".lvca-taxonomy-filter").children().removeClass("lvca-active");$(this).closest(".lvca-filter-item").addClass("lvca-active");return false});var portfolio_elem=$(this).find(".lvca-portfolio");var id_selector="#"+portfolio_elem.attr("id");var desktop_gutter=typeof portfolio_elem.data("gutter")!=="undefined"?portfolio_elem.data("gutter"):10;var tablet_gutter=typeof portfolio_elem.data("tablet_gutter")!=="undefined"?portfolio_elem.data("tablet_gutter"):10;var tablet_width=portfolio_elem.data("tablet_width")||800;var mobile_gutter=typeof portfolio_elem.data("mobile_gutter")!=="undefined"?portfolio_elem.data("mobile_gutter"):10;var mobile_width=portfolio_elem.data("mobile_width")||480;custom_css+=id_selector+".lvca-portfolio { margin-left: -"+desktop_gutter+"px; margin-right: -"+desktop_gutter+"px; }";custom_css+=id_selector+".lvca-portfolio .lvca-portfolio-item { padding:"+desktop_gutter+"px; }";custom_css+=" @media only screen and (max-width: "+tablet_width+"px) { "+id_selector+".lvca-portfolio { margin-left: -"+tablet_gutter+"px; margin-right: -"+tablet_gutter+"px; } "+id_selector+".lvca-portfolio .lvca-portfolio-item { padding:"+tablet_gutter+"px; } } ";custom_css+=" @media only screen and (max-width: "+mobile_width+"px) { "+id_selector+".lvca-portfolio { margin-left: -"+mobile_gutter+"px; margin-right: -"+mobile_gutter+"px; } "+id_selector+".lvca-portfolio .lvca-portfolio-item { padding:"+mobile_gutter+"px; } } "});if(custom_css!==""){custom_css='<style type="text/css">'+custom_css+"</style>";$("head").append(custom_css)}});
|
includes/addons/posts-carousel/class-lvca-posts-carousel.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Widget Name: Livemesh Posts Carousel
|
5 |
Description: Display blog posts or custom post types as a carousel.
|
6 |
Author: LiveMesh
|
7 |
-
Author URI:
|
8 |
*/
|
9 |
|
10 |
class LVCA_Posts_Carousel {
|
@@ -24,9 +24,9 @@ class LVCA_Posts_Carousel {
|
|
24 |
|
25 |
function load_scripts() {
|
26 |
|
27 |
-
wp_enqueue_script('lvca-post-carousel', plugin_dir_url(__FILE__) . 'js/posts-carousel' .
|
28 |
|
29 |
-
wp_enqueue_script('lvca-slick-carousel', LVCA_PLUGIN_URL . 'assets/js/slick' .
|
30 |
|
31 |
wp_enqueue_style('lvca-slick', LVCA_PLUGIN_URL . 'assets/css/slick.css', array(), LVCA_VERSION);
|
32 |
|
@@ -84,11 +84,8 @@ class LVCA_Posts_Carousel {
|
|
84 |
<?php $uniqueid = uniqid(); ?>
|
85 |
|
86 |
<div id="lvca-posts-carousel-<?php echo $uniqueid; ?>"
|
87 |
-
class="lvca-posts-carousel lvca-container"
|
88 |
-
|
89 |
-
echo ' data-' . $key . '="' . esc_attr($val) . '"';
|
90 |
-
}
|
91 |
-
} ?>>
|
92 |
|
93 |
<?php $taxonomy = $settings['taxonomy_chosen']; ?>
|
94 |
|
@@ -311,4 +308,9 @@ class LVCA_Posts_Carousel {
|
|
311 |
if (class_exists('WPBakeryShortCode')) {
|
312 |
class WPBakeryShortCode_lvca_posts_carousel extends WPBakeryShortCode {
|
313 |
}
|
|
|
|
|
|
|
|
|
|
|
314 |
}
|
4 |
Widget Name: Livemesh Posts Carousel
|
5 |
Description: Display blog posts or custom post types as a carousel.
|
6 |
Author: LiveMesh
|
7 |
+
Author URI: https://www.livemeshthemes.com
|
8 |
*/
|
9 |
|
10 |
class LVCA_Posts_Carousel {
|
24 |
|
25 |
function load_scripts() {
|
26 |
|
27 |
+
wp_enqueue_script('lvca-post-carousel', plugin_dir_url(__FILE__) . 'js/posts-carousel' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
28 |
|
29 |
+
wp_enqueue_script('lvca-slick-carousel', LVCA_PLUGIN_URL . 'assets/js/slick' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
30 |
|
31 |
wp_enqueue_style('lvca-slick', LVCA_PLUGIN_URL . 'assets/css/slick.css', array(), LVCA_VERSION);
|
32 |
|
84 |
<?php $uniqueid = uniqid(); ?>
|
85 |
|
86 |
<div id="lvca-posts-carousel-<?php echo $uniqueid; ?>"
|
87 |
+
class="lvca-posts-carousel lvca-container"
|
88 |
+
data-settings='<?php echo wp_json_encode($carousel_settings); ?>'>
|
|
|
|
|
|
|
89 |
|
90 |
<?php $taxonomy = $settings['taxonomy_chosen']; ?>
|
91 |
|
308 |
if (class_exists('WPBakeryShortCode')) {
|
309 |
class WPBakeryShortCode_lvca_posts_carousel extends WPBakeryShortCode {
|
310 |
}
|
311 |
+
}
|
312 |
+
|
313 |
+
// Initialize Element Class
|
314 |
+
if (class_exists('LVCA_Posts_Carousel')) {
|
315 |
+
new LVCA_Posts_Carousel();
|
316 |
}
|
includes/addons/posts-carousel/js/posts-carousel.js
CHANGED
@@ -3,29 +3,31 @@ jQuery(function ($) {
|
|
3 |
|
4 |
var custom_css = '';
|
5 |
$('.lvca-posts-carousel').each(function () {
|
6 |
-
|
7 |
-
carousel_elem = $(this);
|
8 |
-
|
9 |
var id_selector = '#' + carousel_elem.attr('id');
|
10 |
|
11 |
-
var
|
|
|
|
|
12 |
|
13 |
-
var tablet_gutter =
|
14 |
|
15 |
-
var tablet_width =
|
16 |
|
17 |
-
var mobile_gutter =
|
|
|
|
|
18 |
|
19 |
-
var mobile_width = carousel_elem.data('mobile_width') || 480;
|
20 |
-
|
21 |
custom_css += id_selector + '.lvca-posts-carousel .lvca-posts-carousel-item { padding:' + desktop_gutter + 'px; }';
|
22 |
-
|
23 |
custom_css += ' @media only screen and (max-width: ' + tablet_width + 'px) { ' + id_selector + '.lvca-posts-carousel .lvca-posts-carousel-item { padding:' + tablet_gutter + 'px; } } ';
|
24 |
|
25 |
custom_css += ' @media only screen and (max-width: ' + mobile_width + 'px) { ' + id_selector + '.lvca-posts-carousel .lvca-posts-carousel-item { padding:' + mobile_gutter + 'px; } } ';
|
26 |
|
27 |
});
|
28 |
-
if (custom_css
|
29 |
custom_css = '<style type="text/css">' + custom_css + '</style>';
|
30 |
$('head').append(custom_css);
|
31 |
}
|
3 |
|
4 |
var custom_css = '';
|
5 |
$('.lvca-posts-carousel').each(function () {
|
6 |
+
|
7 |
+
var carousel_elem = $(this);
|
8 |
+
|
9 |
var id_selector = '#' + carousel_elem.attr('id');
|
10 |
|
11 |
+
var settings = carousel_elem.data('settings');
|
12 |
+
|
13 |
+
var desktop_gutter = settings['gutter'] || 10;
|
14 |
|
15 |
+
var tablet_gutter = settings['tablet_gutter'] || 10;
|
16 |
|
17 |
+
var tablet_width = settings['tablet_width'] || 800;
|
18 |
|
19 |
+
var mobile_gutter = settings['mobile_gutter'] || 10;
|
20 |
+
|
21 |
+
var mobile_width = settings['mobile_width'] || 480;
|
22 |
|
|
|
|
|
23 |
custom_css += id_selector + '.lvca-posts-carousel .lvca-posts-carousel-item { padding:' + desktop_gutter + 'px; }';
|
24 |
+
|
25 |
custom_css += ' @media only screen and (max-width: ' + tablet_width + 'px) { ' + id_selector + '.lvca-posts-carousel .lvca-posts-carousel-item { padding:' + tablet_gutter + 'px; } } ';
|
26 |
|
27 |
custom_css += ' @media only screen and (max-width: ' + mobile_width + 'px) { ' + id_selector + '.lvca-posts-carousel .lvca-posts-carousel-item { padding:' + mobile_gutter + 'px; } } ';
|
28 |
|
29 |
});
|
30 |
+
if (custom_css !== '') {
|
31 |
custom_css = '<style type="text/css">' + custom_css + '</style>';
|
32 |
$('head').append(custom_css);
|
33 |
}
|
includes/addons/posts-carousel/js/posts-carousel.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(function(
|
1 |
+
jQuery(function($){var custom_css="";$(".lvca-posts-carousel").each(function(){var carousel_elem=$(this);var id_selector="#"+carousel_elem.attr("id");var settings=carousel_elem.data("settings");var desktop_gutter=settings["gutter"]||10;var tablet_gutter=settings["tablet_gutter"]||10;var tablet_width=settings["tablet_width"]||800;var mobile_gutter=settings["mobile_gutter"]||10;var mobile_width=settings["mobile_width"]||480;custom_css+=id_selector+".lvca-posts-carousel .lvca-posts-carousel-item { padding:"+desktop_gutter+"px; }";custom_css+=" @media only screen and (max-width: "+tablet_width+"px) { "+id_selector+".lvca-posts-carousel .lvca-posts-carousel-item { padding:"+tablet_gutter+"px; } } ";custom_css+=" @media only screen and (max-width: "+mobile_width+"px) { "+id_selector+".lvca-posts-carousel .lvca-posts-carousel-item { padding:"+mobile_gutter+"px; } } "});if(custom_css!==""){custom_css='<style type="text/css">'+custom_css+"</style>";$("head").append(custom_css)}});
|
includes/addons/pricing-table/class-lvca-pricing-table.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Widget Name: Livemesh Pricing Table
|
5 |
Description: Display pricing plans in a multi-column grid.
|
6 |
Author: LiveMesh
|
7 |
-
Author URI:
|
8 |
*/
|
9 |
|
10 |
class LVCA_Pricing_Table {
|
@@ -74,10 +74,10 @@ class LVCA_Pricing_Table {
|
|
74 |
|
75 |
public function shortcode_func($atts, $content = null, $tag) {
|
76 |
|
77 |
-
$per_line =
|
78 |
|
79 |
extract(shortcode_atts(array(
|
80 |
-
'per_line' => '4'
|
81 |
|
82 |
), $atts));
|
83 |
|
@@ -313,4 +313,9 @@ if (class_exists('WPBakeryShortCodesContainer')) {
|
|
313 |
if (class_exists('WPBakeryShortCode')) {
|
314 |
class WPBakeryShortCode_lvca_pricing_plan extends WPBakeryShortCode {
|
315 |
}
|
|
|
|
|
|
|
|
|
|
|
316 |
}
|
4 |
Widget Name: Livemesh Pricing Table
|
5 |
Description: Display pricing plans in a multi-column grid.
|
6 |
Author: LiveMesh
|
7 |
+
Author URI: https://www.livemeshthemes.com
|
8 |
*/
|
9 |
|
10 |
class LVCA_Pricing_Table {
|
74 |
|
75 |
public function shortcode_func($atts, $content = null, $tag) {
|
76 |
|
77 |
+
$per_line = '';
|
78 |
|
79 |
extract(shortcode_atts(array(
|
80 |
+
'per_line' => '4'
|
81 |
|
82 |
), $atts));
|
83 |
|
313 |
if (class_exists('WPBakeryShortCode')) {
|
314 |
class WPBakeryShortCode_lvca_pricing_plan extends WPBakeryShortCode {
|
315 |
}
|
316 |
+
}
|
317 |
+
|
318 |
+
// Initialize Element Class
|
319 |
+
if (class_exists('LVCA_Pricing_Table')) {
|
320 |
+
new LVCA_Pricing_Table();
|
321 |
}
|
includes/addons/services/class-lvca-services.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Widget Name: Livemesh Services
|
5 |
Description: Capture services in a multi-column grid.
|
6 |
Author: LiveMesh
|
7 |
-
Author URI:
|
8 |
*/
|
9 |
|
10 |
class LVCA_Services {
|
@@ -356,4 +356,9 @@ if (class_exists('WPBakeryShortCodesContainer')) {
|
|
356 |
if (class_exists('WPBakeryShortCode')) {
|
357 |
class WPBakeryShortCode_lvca_service_item extends WPBakeryShortCode {
|
358 |
}
|
|
|
|
|
|
|
|
|
|
|
359 |
}
|
4 |
Widget Name: Livemesh Services
|
5 |
Description: Capture services in a multi-column grid.
|
6 |
Author: LiveMesh
|
7 |
+
Author URI: https://www.livemeshthemes.com
|
8 |
*/
|
9 |
|
10 |
class LVCA_Services {
|
356 |
if (class_exists('WPBakeryShortCode')) {
|
357 |
class WPBakeryShortCode_lvca_service_item extends WPBakeryShortCode {
|
358 |
}
|
359 |
+
}
|
360 |
+
|
361 |
+
// Initialize Element Class
|
362 |
+
if (class_exists('LVCA_Services')) {
|
363 |
+
new LVCA_Services();
|
364 |
}
|
includes/addons/services/css/style.css
CHANGED
@@ -11,7 +11,10 @@ html {
|
|
11 |
font-size: 96px;
|
12 |
line-height: 1;
|
13 |
margin-bottom: 20px;
|
14 |
-
|
|
|
|
|
|
|
15 |
.lvca-services.lvca-style1 .lvca-service .lvca-image-wrapper img {
|
16 |
display: block;
|
17 |
max-width: 100%;
|
11 |
font-size: 96px;
|
12 |
line-height: 1;
|
13 |
margin-bottom: 20px;
|
14 |
+
-webkit-transition: color 0.4s ease-in-out 0s;
|
15 |
+
-moz-transition: color 0.4s ease-in-out 0s;
|
16 |
+
-ms-transition: color 0.4s ease-in-out 0s;
|
17 |
+
transition: color 0.4s ease-in-out 0s; }
|
18 |
.lvca-services.lvca-style1 .lvca-service .lvca-image-wrapper img {
|
19 |
display: block;
|
20 |
max-width: 100%;
|
includes/addons/services/css/style.css.map
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
{
|
2 |
"version": 3,
|
3 |
-
"mappings": "AAGE,IAAK;EACH,UAAU,EAAE,UAAU;;AAItB,sBAEU;EACR,UAAU,EAAE,OAAO;;;ACNrB,gEAAwB;EACtB,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,MAAM;EAClB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,CAAC;EACd,aAAa,EAAE,IAAI;
|
4 |
"sources": ["../../../../../../bower_components/neat/app/assets/stylesheets/grid/_box-sizing.scss","style.scss","../../../../assets/css/_lvca-lib.scss"],
|
5 |
"names": [],
|
6 |
"file": "style.css"
|
1 |
{
|
2 |
"version": 3,
|
3 |
+
"mappings": "AAGE,IAAK;EACH,UAAU,EAAE,UAAU;;AAItB,sBAEU;EACR,UAAU,EAAE,OAAO;;;ACNrB,gEAAwB;EACtB,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,MAAM;EAClB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,CAAC;EACd,aAAa,EAAE,IAAI;ECoBvB,kBAAoB,EAwEU,yBAA+B;EAvE7D,eAAiB,EAuEa,yBAA+B;EAtE7D,cAAgB,EAsEc,yBAA+B;EArE7D,UAAY,EAqEkB,yBAA+B;ADzF3D,gEAAwB;EACtB,OAAO,EAAE,KAAK;EACd,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,MAAM;EAClB,MAAM,EAAE,WAAW;ECavB,kBAAoB,EAwEU,uBAA+B;EAvE7D,eAAiB,EAuEa,uBAA+B;EAtE7D,cAAgB,EAsEc,uBAA+B;EArE7D,UAAY,EAqEkB,uBAA+B;ADlF3D,2DAAmB;EACjB,UAAU,EAAE,MAAM;EAClB,SAAS,EAAE,KAAK;EAChB,MAAM,EAAE,MAAM;EACd,uEAAY;ICmFhB,SAAS,EAAE,IAAI;IACf,WAAW,EAAE,IAAI;IACjB,cAAc,EAAE,GAAG;IACnB,WAAW,EAAE,IAAI;IACjB,KAAK,EAAE,IAAI;IACX,cAAc,EAAE,SAAS;IACzB,KAAK,EAAE,IAAI;IACX,UAAU,EAAE,CAAC;IACb,aAAa,EAAE,IAAI;IDzFb,aAAa,EAAE,IAAI;AAIrB,sEAAwB;ECA5B,iBAAoB,EAAE,eAAM;EAC5B,cAAiB,EAAE,eAAM;EACzB,aAAgB,EAAE,eAAM;EACxB,SAAY,EAAE,eAAM;;;ADOlB,kIAAiD;EAC/C,KAAK,EAAE,IAAI;EACX,YAAY,EAAE,IAAI;AAEpB,gEAAwB;EACtB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;AAEnB,uEAA+B;EC2DjC,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;EACjB,cAAc,EAAE,GAAG;EACnB,WAAW,EAAE,IAAI;EACjB,KAAK,EAAE,IAAI;EACX,cAAc,EAAE,SAAS;EACzB,KAAK,EAAE,IAAI;EACX,UAAU,EAAE,CAAC;EACb,aAAa,EAAE,IAAI;EDjEf,aAAa,EAAE,IAAI;;;AAQrB,gEAAwB;EACtB,OAAO,EAAE,KAAK;EACd,UAAU,EAAE,IAAI;EAChB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,CAAC;EACd,aAAa,EAAE,IAAI;EACnB,KAAK,EAAE,IAAI;EACX,8EAAgB;IACd,KAAK,EAAE,OAAO;AAGlB,gEAAwB;EACtB,OAAO,EAAE,KAAK;EACd,SAAS,EAAE,IAAI;EACf,UAAU,EAAE,IAAI;EAChB,aAAa,EAAE,IAAI;AAErB,2DAAmB;EACjB,UAAU,EAAE,IAAI;EAChB,SAAS,EAAE,KAAK;EAChB,MAAM,EAAE,CAAC;EACT,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;EACjB,KAAK,EAAE,IAAI;EACX,iFAAsB;IACpB,OAAO,EAAE,CAAC;IACV,MAAM,EAAE,CAAC;IACT,MAAM,EAAE,IAAI;EAEd,oFAAyB;IACvB,aAAa,EAAE,cAAc;IAC7B,QAAQ,EAAE,QAAQ;IAClB,OAAO,EAAE,CAAC;IACV,MAAM,EAAE,CAAC;IACT,UAAU,EAAE,IAAI;IAChB,WAAW,EAAE,IAAI;IACjB,0FAAQ;MACN,OAAO,EAAE,CAAC;IAEZ,kGAAgB;MACd,YAAY,EAAE,IAAI;EAGtB,2FAAgC;ICXpC,WAAW,EAAE,yBAAyB;IACtC,KAAK,EAAE,IAAI;IACX,UAAU,EAAE,MAAM;IAClB,WAAW,EAAE,MAAM;IACnB,YAAY,EAAE,MAAM;IACpB,cAAc,EAAE,IAAI;IACpB,WAAW,EAAE,CAAC;IACd,sBAAsB,EAAE,WAAW;IACnC,uBAAuB,EAAE,SAAS;IDK5B,QAAQ,EAAE,QAAQ;IAClB,OAAO,EAAE,YAAY;IACrB,MAAM,EAAE,IAAI;IACZ,KAAK,EAAE,IAAI;IACX,UAAU,EAAE,IAAI;IAChB,KAAK,EAAE,IAAI;IACX,cAAc,EAAE,MAAM;IACtB,MAAM,EAAE,UAAU;IAClB,OAAO,EAAE,OAAO;IAChB,KAAK,EAAE,OAAO;IACd,SAAS,EAAE,IAAI;IACf,WAAW,EAAE,CAAC;IACd,yGAAgB;MACd,KAAK,EAAE,OAAO;EAGlB,uEAAY;ICZhB,SAAS,EAAE,IAAI;IACf,WAAW,EAAE,IAAI;IACjB,cAAc,EAAE,GAAG;IACnB,WAAW,EAAE,IAAI;IACjB,KAAK,EAAE,IAAI;IACX,cAAc,EAAE,SAAS;IACzB,KAAK,EAAE,IAAI;IACX,UAAU,EAAE,CAAC;IACb,aAAa,EAAE,IAAI;IDMb,aAAa,EAAE,IAAI;;;AAQzB,4BAAc;EACZ,aAAa,EAAE,IAAI;EACnB,oDAAwB;ICrG1B,kBAAoB,EAwEU,yBAA+B;IAvE7D,eAAiB,EAuEa,yBAA+B;IAtE7D,cAAgB,EAsEc,yBAA+B;IArE7D,UAAY,EAqEkB,yBAA+B;EDgC3D,+CAAmB;IACjB,SAAS,EAAE,IAAI;IACf,WAAW,EAAE,IAAI;IACjB,6DAAgB;MACd,KAAK,EAAE,OAAO;MACd,yEAAY;QACV,KAAK,EAAE,OAAO",
|
4 |
"sources": ["../../../../../../bower_components/neat/app/assets/stylesheets/grid/_box-sizing.scss","style.scss","../../../../assets/css/_lvca-lib.scss"],
|
5 |
"names": [],
|
6 |
"file": "style.css"
|
includes/addons/services/css/style.scss
CHANGED
@@ -9,8 +9,8 @@
|
|
9 |
font-size: 96px;
|
10 |
line-height: 1;
|
11 |
margin-bottom: 20px;
|
12 |
-
color
|
13 |
-
|
14 |
.lvca-image-wrapper img {
|
15 |
display: block;
|
16 |
max-width: 100%;
|
9 |
font-size: 96px;
|
10 |
line-height: 1;
|
11 |
margin-bottom: 20px;
|
12 |
+
@include lvca-transition(color);
|
13 |
+
}
|
14 |
.lvca-image-wrapper img {
|
15 |
display: block;
|
16 |
max-width: 100%;
|
includes/addons/spacer/class-lvca-spacer.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Widget Name: Livemesh Spacer
|
5 |
Description: Add spacer between rows and elements that changes based on device resolution.
|
6 |
Author: LiveMesh
|
7 |
-
Author URI:
|
8 |
*/
|
9 |
|
10 |
class LVCA_Spacer {
|
@@ -24,7 +24,7 @@ class LVCA_Spacer {
|
|
24 |
|
25 |
function load_scripts() {
|
26 |
|
27 |
-
wp_enqueue_script('lvca-spacer', plugin_dir_url(__FILE__) . 'js/spacer' .
|
28 |
}
|
29 |
|
30 |
public function shortcode_func($atts, $content = null, $tag) {
|
@@ -65,11 +65,9 @@ class LVCA_Spacer {
|
|
65 |
vc_map(array(
|
66 |
"name" => __("Livemesh Spacer", "livemesh-vc-addons"),
|
67 |
"base" => "lvca_spacer",
|
68 |
-
"as_parent" => array('only' => 'lvca_statsbar_item'), // Use only|except attributes to limit child shortcodes (separate multiple values with comma)
|
69 |
"content_element" => true,
|
70 |
"show_settings_on_create" => false,
|
71 |
"category" => __("Livemesh VC Addons", "livemesh-vc-addons"),
|
72 |
-
"is_container" => true,
|
73 |
'description' => __('Add spacer between rows and elements.', 'livemesh-vc-addons'),
|
74 |
"icon" => 'icon-lvca-spacer',
|
75 |
"params" => array(
|
@@ -145,4 +143,9 @@ class LVCA_Spacer {
|
|
145 |
if (class_exists('WPBakeryShortCode')) {
|
146 |
class WPBakeryShortCode_lvca_spacer extends WPBakeryShortCode {
|
147 |
}
|
|
|
|
|
|
|
|
|
|
|
148 |
}
|
4 |
Widget Name: Livemesh Spacer
|
5 |
Description: Add spacer between rows and elements that changes based on device resolution.
|
6 |
Author: LiveMesh
|
7 |
+
Author URI: https://www.livemeshthemes.com
|
8 |
*/
|
9 |
|
10 |
class LVCA_Spacer {
|
24 |
|
25 |
function load_scripts() {
|
26 |
|
27 |
+
wp_enqueue_script('lvca-spacer', plugin_dir_url(__FILE__) . 'js/spacer' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
28 |
}
|
29 |
|
30 |
public function shortcode_func($atts, $content = null, $tag) {
|
65 |
vc_map(array(
|
66 |
"name" => __("Livemesh Spacer", "livemesh-vc-addons"),
|
67 |
"base" => "lvca_spacer",
|
|
|
68 |
"content_element" => true,
|
69 |
"show_settings_on_create" => false,
|
70 |
"category" => __("Livemesh VC Addons", "livemesh-vc-addons"),
|
|
|
71 |
'description' => __('Add spacer between rows and elements.', 'livemesh-vc-addons'),
|
72 |
"icon" => 'icon-lvca-spacer',
|
73 |
"params" => array(
|
143 |
if (class_exists('WPBakeryShortCode')) {
|
144 |
class WPBakeryShortCode_lvca_spacer extends WPBakeryShortCode {
|
145 |
}
|
146 |
+
}
|
147 |
+
|
148 |
+
// Initialize Element Class
|
149 |
+
if (class_exists('LVCA_Spacer')) {
|
150 |
+
new LVCA_Spacer();
|
151 |
}
|
includes/addons/spacer/js/spacer.js
CHANGED
@@ -25,7 +25,7 @@ jQuery(function ($) {
|
|
25 |
custom_css += ' @media only screen and (max-width: ' + mobile_width + 'px) { ' + id_selector + ' { height:' + mobile_spacing + 'px; } } ';
|
26 |
|
27 |
});
|
28 |
-
if (custom_css
|
29 |
custom_css = '<style type="text/css">' + custom_css + '</style>';
|
30 |
$('head').append(custom_css);
|
31 |
}
|
25 |
custom_css += ' @media only screen and (max-width: ' + mobile_width + 'px) { ' + id_selector + ' { height:' + mobile_spacing + 'px; } } ';
|
26 |
|
27 |
});
|
28 |
+
if (custom_css !== '') {
|
29 |
custom_css = '<style type="text/css">' + custom_css + '</style>';
|
30 |
$('head').append(custom_css);
|
31 |
}
|
includes/addons/spacer/js/spacer.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(function(
|
1 |
+
jQuery(function($){var custom_css="";$(".lvca-spacer").each(function(){spacer_elem=$(this);var id_selector="#"+spacer_elem.attr("id");var desktop_spacing=typeof spacer_elem.data("desktop_spacing")!=="undefined"?spacer_elem.data("desktop_spacing"):50;var tablet_spacing=typeof spacer_elem.data("tablet_spacing")!=="undefined"?spacer_elem.data("tablet_spacing"):30;var tablet_width=spacer_elem.data("tablet_width")||960;var mobile_spacing=typeof spacer_elem.data("mobile_spacing")!=="undefined"?spacer_elem.data("mobile_spacing"):10;var mobile_width=spacer_elem.data("mobile_width")||480;custom_css+=id_selector+" { height:"+desktop_spacing+"px; }";custom_css+=" @media only screen and (max-width: "+tablet_width+"px) { "+id_selector+" { height:"+tablet_spacing+"px; } } ";custom_css+=" @media only screen and (max-width: "+mobile_width+"px) { "+id_selector+" { height:"+mobile_spacing+"px; } } "});if(custom_css!==""){custom_css='<style type="text/css">'+custom_css+"</style>";$("head").append(custom_css)}});
|
includes/addons/stats-bar/class-lvca-stats-bar.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Widget Name: Livemesh Stats Bars
|
5 |
Description: Display multiple stats bars that talk about skills or other percentage stats.
|
6 |
Author: LiveMesh
|
7 |
-
Author URI:
|
8 |
*/
|
9 |
|
10 |
class LVCA_Stats_Bars {
|
@@ -31,9 +31,9 @@ class LVCA_Stats_Bars {
|
|
31 |
|
32 |
function load_scripts() {
|
33 |
|
34 |
-
wp_enqueue_script('lvca-waypoints', LVCA_PLUGIN_URL . 'assets/js/jquery.waypoints' .
|
35 |
|
36 |
-
wp_enqueue_script('lvca-stats-bar', plugin_dir_url(__FILE__) . 'js/stats-bar' .
|
37 |
|
38 |
wp_enqueue_style('lvca-stats-bar', plugin_dir_url(__FILE__) . 'css/style.css', array(), LVCA_VERSION);
|
39 |
}
|
@@ -189,4 +189,9 @@ if (class_exists('WPBakeryShortCodesContainer')) {
|
|
189 |
if (class_exists('WPBakeryShortCode')) {
|
190 |
class WPBakeryShortCode_lvca_statsbar_item extends WPBakeryShortCode {
|
191 |
}
|
|
|
|
|
|
|
|
|
|
|
192 |
}
|
4 |
Widget Name: Livemesh Stats Bars
|
5 |
Description: Display multiple stats bars that talk about skills or other percentage stats.
|
6 |
Author: LiveMesh
|
7 |
+
Author URI: https://www.livemeshthemes.com
|
8 |
*/
|
9 |
|
10 |
class LVCA_Stats_Bars {
|
31 |
|
32 |
function load_scripts() {
|
33 |
|
34 |
+
wp_enqueue_script('lvca-waypoints', LVCA_PLUGIN_URL . 'assets/js/jquery.waypoints' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
35 |
|
36 |
+
wp_enqueue_script('lvca-stats-bar', plugin_dir_url(__FILE__) . 'js/stats-bar' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
37 |
|
38 |
wp_enqueue_style('lvca-stats-bar', plugin_dir_url(__FILE__) . 'css/style.css', array(), LVCA_VERSION);
|
39 |
}
|
189 |
if (class_exists('WPBakeryShortCode')) {
|
190 |
class WPBakeryShortCode_lvca_statsbar_item extends WPBakeryShortCode {
|
191 |
}
|
192 |
+
}
|
193 |
+
|
194 |
+
// Initialize Element Class
|
195 |
+
if (class_exists('LVCA_Stats_Bars')) {
|
196 |
+
new LVCA_Stats_Bars();
|
197 |
}
|
includes/addons/tabs/class-lvca-tabs.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Widget Name: Livemesh Tabs
|
5 |
Description: Display tabbed content in variety of styles.
|
6 |
Author: LiveMesh
|
7 |
-
Author URI:
|
8 |
*/
|
9 |
|
10 |
|
@@ -33,7 +33,7 @@ class LVCA_Tabs {
|
|
33 |
|
34 |
function load_scripts() {
|
35 |
|
36 |
-
wp_enqueue_script('lvca-tabs', plugin_dir_url(__FILE__) . 'js/tabs' .
|
37 |
|
38 |
wp_enqueue_style('lvca-tabs', plugin_dir_url(__FILE__) . 'css/style.css', array(), LVCA_VERSION);
|
39 |
}
|
@@ -450,4 +450,9 @@ if (class_exists('WPBakeryShortCodesContainer')) {
|
|
450 |
if (class_exists('WPBakeryShortCode')) {
|
451 |
class WPBakeryShortCode_lvca_tab extends WPBakeryShortCode {
|
452 |
}
|
|
|
|
|
|
|
|
|
|
|
453 |
}
|
4 |
Widget Name: Livemesh Tabs
|
5 |
Description: Display tabbed content in variety of styles.
|
6 |
Author: LiveMesh
|
7 |
+
Author URI: https://www.livemeshthemes.com
|
8 |
*/
|
9 |
|
10 |
|
33 |
|
34 |
function load_scripts() {
|
35 |
|
36 |
+
wp_enqueue_script('lvca-tabs', plugin_dir_url(__FILE__) . 'js/tabs' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
37 |
|
38 |
wp_enqueue_style('lvca-tabs', plugin_dir_url(__FILE__) . 'css/style.css', array(), LVCA_VERSION);
|
39 |
}
|
450 |
if (class_exists('WPBakeryShortCode')) {
|
451 |
class WPBakeryShortCode_lvca_tab extends WPBakeryShortCode {
|
452 |
}
|
453 |
+
}
|
454 |
+
|
455 |
+
// Initialize Element Class
|
456 |
+
if (class_exists('LVCA_Tabs')) {
|
457 |
+
$LVCA_Tabs = new LVCA_Tabs();
|
458 |
}
|
includes/addons/team/class-lvca-team.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Widget Name: Livemesh Team Members
|
5 |
Description: Display a list of your team members optionally in a multi-column grid.
|
6 |
Author: LiveMesh
|
7 |
-
Author URI:
|
8 |
*/
|
9 |
|
10 |
|
@@ -209,7 +209,7 @@ class LVCA_Team {
|
|
209 |
"content_element" => true,
|
210 |
"as_child" => array('only' => 'lvca_team'), // Use only|except attributes to limit parent (separate multiple values with comma)
|
211 |
"icon" => 'icon-lvca-team-member',
|
212 |
-
"category" => __(
|
213 |
"params" => array(
|
214 |
// add params same as with any other content element
|
215 |
array(
|
@@ -320,4 +320,9 @@ if (class_exists('WPBakeryShortCodesContainer')) {
|
|
320 |
if (class_exists('WPBakeryShortCode')) {
|
321 |
class WPBakeryShortCode_lvca_team_member extends WPBakeryShortCode {
|
322 |
}
|
|
|
|
|
|
|
|
|
|
|
323 |
}
|
4 |
Widget Name: Livemesh Team Members
|
5 |
Description: Display a list of your team members optionally in a multi-column grid.
|
6 |
Author: LiveMesh
|
7 |
+
Author URI: https://www.livemeshthemes.com
|
8 |
*/
|
9 |
|
10 |
|
209 |
"content_element" => true,
|
210 |
"as_child" => array('only' => 'lvca_team'), // Use only|except attributes to limit parent (separate multiple values with comma)
|
211 |
"icon" => 'icon-lvca-team-member',
|
212 |
+
"category" => __("Livemesh VC Addons", "livemesh-vc-addons"),
|
213 |
"params" => array(
|
214 |
// add params same as with any other content element
|
215 |
array(
|
320 |
if (class_exists('WPBakeryShortCode')) {
|
321 |
class WPBakeryShortCode_lvca_team_member extends WPBakeryShortCode {
|
322 |
}
|
323 |
+
}
|
324 |
+
|
325 |
+
// Initialize Element Class
|
326 |
+
if (class_exists('LVCA_Team')) {
|
327 |
+
new LVCA_Team();
|
328 |
}
|
includes/addons/testimonials-slider/class-lvca-testimonials-slider.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Widget Name: Livemesh Testimonials Slider
|
5 |
Description: Display responsive touch friendly slider of testimonials from clients/customers.
|
6 |
Author: LiveMesh
|
7 |
-
Author URI:
|
8 |
*/
|
9 |
|
10 |
|
@@ -31,11 +31,11 @@ class LVCA_Testimonials_Slider {
|
|
31 |
|
32 |
function load_scripts() {
|
33 |
|
34 |
-
wp_enqueue_script('lvca-flexslider', LVCA_PLUGIN_URL . 'assets/js/jquery.flexslider' .
|
35 |
|
36 |
wp_enqueue_style('lvca-flexslider', LVCA_PLUGIN_URL . 'assets/css/flexslider.css', array(), LVCA_VERSION);
|
37 |
|
38 |
-
wp_enqueue_script('lvca-testimonials-slider', plugin_dir_url(__FILE__) . 'js/testimonials' .
|
39 |
|
40 |
wp_enqueue_style('lvca-testimonials-slider', plugin_dir_url(__FILE__) . 'css/style.css', array(), LVCA_VERSION);
|
41 |
|
@@ -215,7 +215,7 @@ class LVCA_Testimonials_Slider {
|
|
215 |
"content_element" => true,
|
216 |
"as_child" => array('only' => 'lvca_testimonials_slider'), // Use only|except attributes to limit parent (separate multiple values with comma)
|
217 |
"icon" => 'icon-lvca-testimonials-slide',
|
218 |
-
"category" => __(
|
219 |
"params" => $testimonial_params
|
220 |
)
|
221 |
|
@@ -235,3 +235,8 @@ if (class_exists('WPBakeryShortCode')) {
|
|
235 |
class WPBakeryShortCode_lvca_testimonial_slide extends WPBakeryShortCode {
|
236 |
}
|
237 |
}
|
|
|
|
|
|
|
|
|
|
4 |
Widget Name: Livemesh Testimonials Slider
|
5 |
Description: Display responsive touch friendly slider of testimonials from clients/customers.
|
6 |
Author: LiveMesh
|
7 |
+
Author URI: https://www.livemeshthemes.com
|
8 |
*/
|
9 |
|
10 |
|
31 |
|
32 |
function load_scripts() {
|
33 |
|
34 |
+
wp_enqueue_script('lvca-flexslider', LVCA_PLUGIN_URL . 'assets/js/jquery.flexslider' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
35 |
|
36 |
wp_enqueue_style('lvca-flexslider', LVCA_PLUGIN_URL . 'assets/css/flexslider.css', array(), LVCA_VERSION);
|
37 |
|
38 |
+
wp_enqueue_script('lvca-testimonials-slider', plugin_dir_url(__FILE__) . 'js/testimonials' . LVCA_JS_SUFFIX . '.js', array('jquery'), LVCA_VERSION);
|
39 |
|
40 |
wp_enqueue_style('lvca-testimonials-slider', plugin_dir_url(__FILE__) . 'css/style.css', array(), LVCA_VERSION);
|
41 |
|
215 |
"content_element" => true,
|
216 |
"as_child" => array('only' => 'lvca_testimonials_slider'), // Use only|except attributes to limit parent (separate multiple values with comma)
|
217 |
"icon" => 'icon-lvca-testimonials-slide',
|
218 |
+
"category" => __("Livemesh VC Addons", "livemesh-vc-addons"),
|
219 |
"params" => $testimonial_params
|
220 |
)
|
221 |
|
235 |
class WPBakeryShortCode_lvca_testimonial_slide extends WPBakeryShortCode {
|
236 |
}
|
237 |
}
|
238 |
+
|
239 |
+
// Initialize Element Class
|
240 |
+
if (class_exists('LVCA_Testimonials_Slider')) {
|
241 |
+
new LVCA_Testimonials_Slider();
|
242 |
+
}
|
includes/addons/testimonials/class-lvca-testimonials.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Widget Name: Livemesh Testimonials
|
5 |
Description: Display testimonials from your clients/customers in a multi-column grid.
|
6 |
Author: LiveMesh
|
7 |
-
Author URI:
|
8 |
*/
|
9 |
|
10 |
|
@@ -45,7 +45,7 @@ class LVCA_Testimonials {
|
|
45 |
), $atts));
|
46 |
|
47 |
$this->_per_line = $per_line;
|
48 |
-
|
49 |
ob_start();
|
50 |
|
51 |
?>
|
@@ -152,7 +152,7 @@ class LVCA_Testimonials {
|
|
152 |
"content_element" => true,
|
153 |
"as_child" => array('only' => 'lvca_testimonials'), // Use only|except attributes to limit parent (separate multiple values with comma)
|
154 |
"icon" => 'icon-lvca-testimonial',
|
155 |
-
"category" => __(
|
156 |
"params" => array(
|
157 |
// add params same as with any other content element
|
158 |
array(
|
@@ -198,4 +198,9 @@ if (class_exists('WPBakeryShortCodesContainer')) {
|
|
198 |
if (class_exists('WPBakeryShortCode')) {
|
199 |
class WPBakeryShortCode_lvca_testimonial extends WPBakeryShortCode {
|
200 |
}
|
|
|
|
|
|
|
|
|
|
|
201 |
}
|
4 |
Widget Name: Livemesh Testimonials
|
5 |
Description: Display testimonials from your clients/customers in a multi-column grid.
|
6 |
Author: LiveMesh
|
7 |
+
Author URI: https://www.livemeshthemes.com
|
8 |
*/
|
9 |
|
10 |
|
45 |
), $atts));
|
46 |
|
47 |
$this->_per_line = $per_line;
|
48 |
+
|
49 |
ob_start();
|
50 |
|
51 |
?>
|
152 |
"content_element" => true,
|
153 |
"as_child" => array('only' => 'lvca_testimonials'), // Use only|except attributes to limit parent (separate multiple values with comma)
|
154 |
"icon" => 'icon-lvca-testimonial',
|
155 |
+
"category" => __("Livemesh VC Addons", "livemesh-vc-addons"),
|
156 |
"params" => array(
|
157 |
// add params same as with any other content element
|
158 |
array(
|
198 |
if (class_exists('WPBakeryShortCode')) {
|
199 |
class WPBakeryShortCode_lvca_testimonial extends WPBakeryShortCode {
|
200 |
}
|
201 |
+
}
|
202 |
+
|
203 |
+
// Initialize Element Class
|
204 |
+
if (class_exists('LVCA_Testimonials')) {
|
205 |
+
new LVCA_Testimonials();
|
206 |
}
|
includes/helper-functions.php
CHANGED
@@ -39,12 +39,33 @@ if (!function_exists('lvca_get_terms')) {
|
|
39 |
}
|
40 |
}
|
41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
if (!function_exists('lvca_entry_terms_list')) {
|
43 |
|
44 |
function lvca_entry_terms_list($taxonomy = 'category', $separator = ', ', $before = ' ', $after = ' ') {
|
45 |
global $post;
|
46 |
|
47 |
-
$output = '<span class="lvca-
|
48 |
$output .= get_the_term_list($post->ID, $taxonomy, $before, $separator, $after);
|
49 |
$output .= '</span>';
|
50 |
|
@@ -111,7 +132,10 @@ if (!function_exists('lvca_get_taxonomy_info')) {
|
|
111 |
|
112 |
if (!function_exists('lvca_entry_published')) {
|
113 |
|
114 |
-
function lvca_entry_published($format =
|
|
|
|
|
|
|
115 |
|
116 |
$published = '<span class="published"><abbr title="' . sprintf(get_the_time(esc_html__('l, F, Y, g:i a', 'livemesh-vc-addons'))) . '">' . sprintf(get_the_time($format)) . '</abbr></span>';
|
117 |
|
@@ -233,4 +257,206 @@ if (!function_exists('lvca_get_taxonomies_map')) {
|
|
233 |
}
|
234 |
return $map;
|
235 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
}
|
39 |
}
|
40 |
}
|
41 |
|
42 |
+
function lvca_get_chosen_terms($query_args) {
|
43 |
+
|
44 |
+
$chosen_terms = array();
|
45 |
+
$taxonomy_filter = '';
|
46 |
+
|
47 |
+
$query_args = wp_parse_args($query_args);
|
48 |
+
|
49 |
+
if (!empty($query_args) && !empty($query_args['tax_query'])) {
|
50 |
+
$terms_query = explode(',', $query_args['tax_query']);
|
51 |
+
foreach ($terms_query as $term_query) {
|
52 |
+
list($taxonomy, $term_slug) = explode(':', $term_query);
|
53 |
+
|
54 |
+
if (empty($taxonomy) || empty($term_slug))
|
55 |
+
continue;
|
56 |
+
$chosen_terms[] = get_term_by('slug', $term_slug, $taxonomy);
|
57 |
+
$taxonomy_filter = $taxonomy;
|
58 |
+
}
|
59 |
+
}
|
60 |
+
return array($chosen_terms, $taxonomy_filter);
|
61 |
+
}
|
62 |
+
|
63 |
if (!function_exists('lvca_entry_terms_list')) {
|
64 |
|
65 |
function lvca_entry_terms_list($taxonomy = 'category', $separator = ', ', $before = ' ', $after = ' ') {
|
66 |
global $post;
|
67 |
|
68 |
+
$output = '<span class="lvca-' . $taxonomy . '-list">';
|
69 |
$output .= get_the_term_list($post->ID, $taxonomy, $before, $separator, $after);
|
70 |
$output .= '</span>';
|
71 |
|
132 |
|
133 |
if (!function_exists('lvca_entry_published')) {
|
134 |
|
135 |
+
function lvca_entry_published($format = null) {
|
136 |
+
|
137 |
+
if (empty($format))
|
138 |
+
$format = esc_html__("M d, Y", 'livemesh-vc-addons');
|
139 |
|
140 |
$published = '<span class="published"><abbr title="' . sprintf(get_the_time(esc_html__('l, F, Y, g:i a', 'livemesh-vc-addons'))) . '">' . sprintf(get_the_time($format)) . '</abbr></span>';
|
141 |
|
257 |
}
|
258 |
return $map;
|
259 |
}
|
260 |
+
}
|
261 |
+
|
262 |
+
|
263 |
+
|
264 |
+
/**
|
265 |
+
* Lightens/darkens a given colour (hex format), returning the altered colour in hex format.7
|
266 |
+
* @param str $hex Colour as hexadecimal (with or without hash);
|
267 |
+
* @percent float $percent Decimal ( 0.2 = lighten by 20%(), -0.4 = darken by 40%() )
|
268 |
+
* @return str Lightened/Darkend colour as hexadecimal (with hash);
|
269 |
+
*/
|
270 |
+
function lvca_color_luminance($hex, $percent) {
|
271 |
+
|
272 |
+
// validate hex string
|
273 |
+
|
274 |
+
$hex = preg_replace('/[^0-9a-f]/i', '', $hex);
|
275 |
+
$new_hex = '#';
|
276 |
+
|
277 |
+
if (strlen($hex) < 6) {
|
278 |
+
$hex = $hex[0] + $hex[0] + $hex[1] + $hex[1] + $hex[2] + $hex[2];
|
279 |
+
}
|
280 |
+
|
281 |
+
// convert to decimal and change luminosity
|
282 |
+
for ($i = 0; $i < 3; $i++) {
|
283 |
+
$dec = hexdec(substr($hex, $i * 2, 2));
|
284 |
+
$dec = min(max(0, $dec + $dec * $percent), 255);
|
285 |
+
$new_hex .= str_pad(dechex($dec), 2, 0, STR_PAD_LEFT);
|
286 |
+
}
|
287 |
+
|
288 |
+
return $new_hex;
|
289 |
+
}
|
290 |
+
|
291 |
+
function lvca_get_option($option_name, $default = null) {
|
292 |
+
|
293 |
+
$settings = get_option('lvca_settings');
|
294 |
+
|
295 |
+
if (!empty($settings) && isset($settings[$option_name]))
|
296 |
+
$option_value = $settings[$option_name];
|
297 |
+
else
|
298 |
+
$option_value = $default;
|
299 |
+
|
300 |
+
return $option_value;
|
301 |
+
}
|
302 |
+
|
303 |
+
function lvca_update_option($option_name, $option_value) {
|
304 |
+
|
305 |
+
$settings = get_option('lvca_settings');
|
306 |
+
|
307 |
+
if (empty($settings))
|
308 |
+
$settings = array();
|
309 |
+
|
310 |
+
$settings[$option_name] = $option_value;
|
311 |
+
|
312 |
+
update_option('lvca_settings', $settings);
|
313 |
+
}
|
314 |
+
|
315 |
+
/**
|
316 |
+
* Update multiple options in one go
|
317 |
+
* @param array $setting_data An collection of settings key value pairs;
|
318 |
+
*/
|
319 |
+
function lvca_update_options($setting_data) {
|
320 |
+
|
321 |
+
$settings = get_option('lvca_settings');
|
322 |
+
|
323 |
+
if (empty($settings))
|
324 |
+
$settings = array();
|
325 |
+
|
326 |
+
foreach ($setting_data as $setting => $value) {
|
327 |
+
// because of get_magic_quotes_gpc()
|
328 |
+
$value = stripslashes($value);
|
329 |
+
$settings[$setting] = $value;
|
330 |
+
}
|
331 |
+
|
332 |
+
update_option('lvca_settings', $settings);
|
333 |
+
}
|
334 |
+
|
335 |
+
/**
|
336 |
+
* Get system info
|
337 |
+
*
|
338 |
+
*/
|
339 |
+
function lvca_get_sysinfo() {
|
340 |
+
global $wpdb;
|
341 |
+
|
342 |
+
// Get theme info
|
343 |
+
$theme_data = wp_get_theme();
|
344 |
+
$theme = $theme_data->Name . ' ' . $theme_data->Version;
|
345 |
+
|
346 |
+
$return = '### <strong>Begin System Info</strong> ###' . "\n\n";
|
347 |
+
|
348 |
+
// Start with the basics...
|
349 |
+
$return .= '-- Site Info' . "\n\n";
|
350 |
+
$return .= 'Site URL: ' . site_url() . "\n";
|
351 |
+
$return .= 'Home URL: ' . home_url() . "\n";
|
352 |
+
$return .= 'Multisite: ' . (is_multisite() ? 'Yes' : 'No') . "\n";
|
353 |
+
|
354 |
+
// Theme info
|
355 |
+
$plugin = get_plugin_data(LVCA_PLUGIN_FILE);
|
356 |
+
|
357 |
+
|
358 |
+
// Plugin configuration
|
359 |
+
$return .= "\n" . '-- Plugin Configuration' . "\n\n";
|
360 |
+
$return .= 'Name: ' . $plugin['Name'] . "\n";
|
361 |
+
$return .= 'Version: ' . $plugin['Version'] . "\n";
|
362 |
+
|
363 |
+
// WordPress configuration
|
364 |
+
$return .= "\n" . '-- WordPress Configuration' . "\n\n";
|
365 |
+
$return .= 'Version: ' . get_bloginfo('version') . "\n";
|
366 |
+
$return .= 'Language: ' . (defined('WPLANG') && WPLANG ? WPLANG : 'en_US') . "\n";
|
367 |
+
$return .= 'Permalink Structure: ' . (get_option('permalink_structure') ? get_option('permalink_structure') : 'Default') . "\n";
|
368 |
+
$return .= 'Active Theme: ' . $theme . "\n";
|
369 |
+
$return .= 'Show On Front: ' . get_option('show_on_front') . "\n";
|
370 |
+
|
371 |
+
// Only show page specs if frontpage is set to 'page'
|
372 |
+
if (get_option('show_on_front') == 'page') {
|
373 |
+
$front_page_id = get_option('page_on_front');
|
374 |
+
$blog_page_id = get_option('page_for_posts');
|
375 |
+
|
376 |
+
$return .= 'Page On Front: ' . ($front_page_id != 0 ? get_the_title($front_page_id) . ' (#' . $front_page_id . ')' : 'Unset') . "\n";
|
377 |
+
$return .= 'Page For Posts: ' . ($blog_page_id != 0 ? get_the_title($blog_page_id) . ' (#' . $blog_page_id . ')' : 'Unset') . "\n";
|
378 |
+
}
|
379 |
+
|
380 |
+
$return .= 'ABSPATH: ' . ABSPATH . "\n";
|
381 |
+
|
382 |
+
|
383 |
+
$return .= 'WP_DEBUG: ' . (defined('WP_DEBUG') ? WP_DEBUG ? 'Enabled' : 'Disabled' : 'Not set') . "\n";
|
384 |
+
$return .= 'Memory Limit: ' . WP_MEMORY_LIMIT . "\n";
|
385 |
+
$return .= 'Registered Post Stati: ' . implode(', ', get_post_stati()) . "\n";
|
386 |
+
|
387 |
+
// Get plugins that have an update
|
388 |
+
$updates = get_plugin_updates();
|
389 |
+
|
390 |
+
// WordPress active plugins
|
391 |
+
$return .= "\n" . '-- WordPress Active Plugins' . "\n\n";
|
392 |
+
|
393 |
+
$plugins = get_plugins();
|
394 |
+
$active_plugins = get_option('active_plugins', array());
|
395 |
+
|
396 |
+
foreach ($plugins as $plugin_path => $plugin) {
|
397 |
+
if (!in_array($plugin_path, $active_plugins))
|
398 |
+
continue;
|
399 |
+
|
400 |
+
$update = (array_key_exists($plugin_path, $updates)) ? ' (needs update - ' . $updates[$plugin_path]->update->new_version . ')' : '';
|
401 |
+
$return .= $plugin['Name'] . ': ' . $plugin['Version'] . $update . "\n";
|
402 |
+
}
|
403 |
+
|
404 |
+
// WordPress inactive plugins
|
405 |
+
$return .= "\n" . '-- WordPress Inactive Plugins' . "\n\n";
|
406 |
+
|
407 |
+
foreach ($plugins as $plugin_path => $plugin) {
|
408 |
+
if (in_array($plugin_path, $active_plugins))
|
409 |
+
continue;
|
410 |
+
|
411 |
+
$update = (array_key_exists($plugin_path, $updates)) ? ' (needs update - ' . $updates[$plugin_path]->update->new_version . ')' : '';
|
412 |
+
$return .= $plugin['Name'] . ': ' . $plugin['Version'] . $update . "\n";
|
413 |
+
}
|
414 |
+
|
415 |
+
if (is_multisite()) {
|
416 |
+
// WordPress Multisite active plugins
|
417 |
+
$return .= "\n" . '-- Network Active Plugins' . "\n\n";
|
418 |
+
|
419 |
+
$plugins = wp_get_active_network_plugins();
|
420 |
+
$active_plugins = get_site_option('active_sitewide_plugins', array());
|
421 |
+
|
422 |
+
foreach ($plugins as $plugin_path) {
|
423 |
+
$plugin_base = plugin_basename($plugin_path);
|
424 |
+
|
425 |
+
if (!array_key_exists($plugin_base, $active_plugins))
|
426 |
+
continue;
|
427 |
+
|
428 |
+
$update = (array_key_exists($plugin_path, $updates)) ? ' (needs update - ' . $updates[$plugin_path]->update->new_version . ')' : '';
|
429 |
+
$plugin = get_plugin_data($plugin_path);
|
430 |
+
$return .= $plugin['Name'] . ': ' . $plugin['Version'] . $update . "\n";
|
431 |
+
}
|
432 |
+
}
|
433 |
+
|
434 |
+
// Server configuration (really just versioning)
|
435 |
+
$return .= "\n" . '-- Webserver Configuration' . "\n\n";
|
436 |
+
$return .= 'PHP Version: ' . PHP_VERSION . "\n";
|
437 |
+
$return .= 'MySQL Version: ' . $wpdb->db_version() . "\n";
|
438 |
+
$return .= 'Webserver Info: ' . $_SERVER['SERVER_SOFTWARE'] . "\n";
|
439 |
+
|
440 |
+
// PHP configs... now we're getting to the important stuff
|
441 |
+
$return .= "\n" . '-- PHP Configuration' . "\n\n";
|
442 |
+
$return .= 'Memory Limit: ' . ini_get('memory_limit') . "\n";
|
443 |
+
$return .= 'Upload Max Size: ' . ini_get('upload_max_filesize') . "\n";
|
444 |
+
$return .= 'Post Max Size: ' . ini_get('post_max_size') . "\n";
|
445 |
+
$return .= 'Upload Max Filesize: ' . ini_get('upload_max_filesize') . "\n";
|
446 |
+
$return .= 'Time Limit: ' . ini_get('max_execution_time') . "\n";
|
447 |
+
$return .= 'Max Input Vars: ' . ini_get('max_input_vars') . "\n";
|
448 |
+
$return .= 'Display Errors: ' . (ini_get('display_errors') ? 'On (' . ini_get('display_errors') . ')' : 'N/A') . "\n";
|
449 |
+
|
450 |
+
$return = apply_filters('edd_sysinfo_after_php_config', $return);
|
451 |
+
|
452 |
+
// PHP extensions and such
|
453 |
+
$return .= "\n" . '-- PHP Extensions' . "\n\n";
|
454 |
+
$return .= 'cURL: ' . (function_exists('curl_init') ? 'Supported' : 'Not Supported') . "\n";
|
455 |
+
$return .= 'fsockopen: ' . (function_exists('fsockopen') ? 'Supported' : 'Not Supported') . "\n";
|
456 |
+
$return .= 'SOAP Client: ' . (class_exists('SoapClient') ? 'Installed' : 'Not Installed') . "\n";
|
457 |
+
$return .= 'Suhosin: ' . (extension_loaded('suhosin') ? 'Installed' : 'Not Installed') . "\n";
|
458 |
+
|
459 |
+
$return .= "\n" . '### End System Info ###';
|
460 |
+
|
461 |
+
return $return;
|
462 |
}
|
includes/params/number/class-lvca-number-param.php
CHANGED
@@ -36,3 +36,9 @@ if (!class_exists('LVCA_Number_Param')) {
|
|
36 |
|
37 |
}
|
38 |
}
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
}
|
38 |
}
|
39 |
+
|
40 |
+
|
41 |
+
// Initialize Number Paramater Class
|
42 |
+
if (class_exists('LVCA_Number_Param')) {
|
43 |
+
new LVCA_Number_Param();
|
44 |
+
}
|
languages/default.pot
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Events Calendar Slider\n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: 2015-10-26 13:24-0000\n"
|
7 |
"Last-Translator: LiveMesh\n"
|
8 |
"Language-Team: LiveMesh\n"
|
@@ -10,7 +10,7 @@ msgstr ""
|
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 1.8.
|
14 |
"X-Poedit-KeywordsList: __;_e;_x;_n;esc_attr__;esc_attr_e;esc_html__;"
|
15 |
"esc_html_e;_nx_noop\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
@@ -18,144 +18,664 @@ msgstr ""
|
|
18 |
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#:
|
22 |
-
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgstr ""
|
25 |
|
26 |
-
#:
|
27 |
-
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
#: includes/addons/odometers/class-lvca-odometers.php:154
|
30 |
#: includes/addons/piecharts/class-lvca-piecharts.php:123
|
31 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
32 |
-
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:
|
33 |
#: includes/addons/pricing-table/class-lvca-pricing-table.php:199
|
34 |
-
#: includes/addons/services/class-lvca-services.php:
|
35 |
#: includes/addons/spacer/class-lvca-spacer.php:71
|
36 |
#: includes/addons/stats-bar/class-lvca-stats-bar.php:119
|
|
|
37 |
#: includes/addons/team/class-lvca-team.php:164
|
38 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
39 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
40 |
msgid "Livemesh VC Addons"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: includes/addons/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
msgid "Display a carousel of html elements."
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: includes/addons/carousel/class-lvca-carousel.php:
|
48 |
msgid "Carousel"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: includes/addons/carousel/class-lvca-carousel.php:
|
52 |
-
#: includes/addons/clients/class-lvca-clients.php:
|
53 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
54 |
msgid "Name"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: includes/addons/carousel/class-lvca-carousel.php:
|
58 |
msgid ""
|
59 |
"The title to identify the HTML element. Will not be output to the "
|
60 |
"frontend."
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: includes/addons/carousel/class-lvca-carousel.php:
|
64 |
msgid "HTML element"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: includes/addons/carousel/class-lvca-carousel.php:
|
68 |
msgid ""
|
69 |
"The HTML content for the carousel item. Custom CSS for presentation "
|
70 |
"of the HTML elements should be entered by the user in Settings-"
|
71 |
">Custom CSS panel in VC or in the theme files."
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: includes/addons/clients/class-lvca-clients.php:
|
75 |
msgid "Livemesh Clients"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: includes/addons/clients/class-lvca-clients.php:
|
79 |
msgid "Display clients in a multi-column grid."
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: includes/addons/clients/class-lvca-clients.php:
|
83 |
msgid "Clients per row"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: includes/addons/clients/class-lvca-clients.php:
|
87 |
msgid "The number of columns to display per row of the clients"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: includes/addons/clients/class-lvca-clients.php:
|
91 |
msgid "Livemesh Client"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: includes/addons/clients/class-lvca-clients.php:
|
95 |
msgid "Name of the client/customer."
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: includes/addons/clients/class-lvca-clients.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
msgid "Client Logo."
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: includes/addons/clients/class-lvca-clients.php:
|
103 |
msgid "The logo image for the client/customer."
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
107 |
msgid "Livemesh Heading"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
111 |
msgid "Create heading for a section."
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
115 |
-
#: includes/addons/services/class-lvca-services.php:
|
116 |
#: includes/addons/team/class-lvca-team.php:174
|
117 |
msgid "Choose Style"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
121 |
msgid "Choose the particular style of heading you need"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
125 |
-
|
126 |
-
#: includes/addons/team/class-lvca-team.php:177
|
127 |
-
msgid "Style 1"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
131 |
-
|
132 |
-
#: includes/addons/team/class-lvca-team.php:178
|
133 |
-
msgid "Style 2"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
#: includes/addons/odometers/class-lvca-odometers.php:193
|
138 |
-
#: includes/addons/services/class-lvca-services.php:
|
139 |
msgid "Title"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
143 |
msgid "Title for the heading."
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
147 |
msgid "Subheading or Subtitle"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
151 |
msgid "A subtitle displayed above the title heading."
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
155 |
msgid "Short Text"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
159 |
msgid "Short text generally displayed below the heading title."
|
160 |
msgstr ""
|
161 |
|
@@ -168,10 +688,10 @@ msgid "Display odometers in a multi-column grid."
|
|
168 |
msgstr ""
|
169 |
|
170 |
#: includes/addons/odometers/class-lvca-odometers.php:168
|
171 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
172 |
-
#: includes/addons/services/class-lvca-services.php:
|
173 |
#: includes/addons/team/class-lvca-team.php:189
|
174 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
175 |
#: includes/mapper-functions.php:15 includes/mapper-functions.php:44
|
176 |
#: includes/mapper-functions.php:83
|
177 |
msgid "Columns per row"
|
@@ -226,7 +746,7 @@ msgid ""
|
|
226 |
msgstr ""
|
227 |
|
228 |
#: includes/addons/odometers/class-lvca-odometers.php:228
|
229 |
-
#: includes/addons/services/class-lvca-services.php:
|
230 |
msgid "Choose Icon Type"
|
231 |
msgstr ""
|
232 |
|
@@ -236,17 +756,23 @@ msgstr ""
|
|
236 |
#: includes/addons/odometers/class-lvca-odometers.php:294
|
237 |
#: includes/addons/odometers/class-lvca-odometers.php:311
|
238 |
#: includes/addons/odometers/class-lvca-odometers.php:327
|
239 |
-
#: includes/addons/services/class-lvca-services.php:
|
240 |
-
#: includes/addons/services/class-lvca-services.php:
|
241 |
-
#: includes/addons/services/class-lvca-services.php:
|
242 |
-
#: includes/addons/services/class-lvca-services.php:
|
243 |
-
#: includes/addons/services/class-lvca-services.php:
|
244 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
|
|
|
|
|
|
|
|
245 |
msgid "Icon"
|
246 |
msgstr ""
|
247 |
|
248 |
#: includes/addons/odometers/class-lvca-odometers.php:232
|
249 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
250 |
msgid "Icon Image"
|
251 |
msgstr ""
|
252 |
|
@@ -255,37 +781,44 @@ msgid "Odometer Image."
|
|
255 |
msgstr ""
|
256 |
|
257 |
#: includes/addons/odometers/class-lvca-odometers.php:245
|
258 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
259 |
msgid "Icon library"
|
260 |
msgstr ""
|
261 |
|
262 |
#: includes/addons/odometers/class-lvca-odometers.php:247
|
263 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
264 |
msgid "Font Awesome"
|
265 |
msgstr ""
|
266 |
|
267 |
#: includes/addons/odometers/class-lvca-odometers.php:248
|
268 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
269 |
msgid "Open Iconic"
|
270 |
msgstr ""
|
271 |
|
272 |
#: includes/addons/odometers/class-lvca-odometers.php:249
|
273 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
274 |
msgid "Typicons"
|
275 |
msgstr ""
|
276 |
|
277 |
#: includes/addons/odometers/class-lvca-odometers.php:250
|
278 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
279 |
msgid "Entypo"
|
280 |
msgstr ""
|
281 |
|
282 |
#: includes/addons/odometers/class-lvca-odometers.php:251
|
283 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
284 |
msgid "Linecons"
|
285 |
msgstr ""
|
286 |
|
287 |
#: includes/addons/odometers/class-lvca-odometers.php:255
|
288 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
289 |
msgid "Select icon library."
|
290 |
msgstr ""
|
291 |
|
@@ -293,10 +826,14 @@ msgstr ""
|
|
293 |
#: includes/addons/odometers/class-lvca-odometers.php:290
|
294 |
#: includes/addons/odometers/class-lvca-odometers.php:307
|
295 |
#: includes/addons/odometers/class-lvca-odometers.php:340
|
296 |
-
#: includes/addons/services/class-lvca-services.php:
|
297 |
-
#: includes/addons/services/class-lvca-services.php:
|
298 |
-
#: includes/addons/services/class-lvca-services.php:
|
299 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
|
|
|
|
|
|
300 |
msgid "Select icon from library."
|
301 |
msgstr ""
|
302 |
|
@@ -347,140 +884,180 @@ msgstr ""
|
|
347 |
msgid "The percentage value for the piechart."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
351 |
msgid "Heading for the portfolio/blog"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
355 |
-
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:
|
356 |
msgid "Posts query"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
360 |
-
|
361 |
-
|
|
|
|
|
|
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
365 |
-
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:
|
366 |
-
msgid "
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
370 |
-
|
371 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:316
|
372 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:326
|
373 |
-
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:195
|
374 |
-
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:202
|
375 |
-
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:209
|
376 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:172
|
377 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:180
|
378 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:188
|
379 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:196
|
380 |
-
#: includes/mapper-functions.php:135 includes/mapper-functions.php:143
|
381 |
-
#: includes/mapper-functions.php:152 includes/mapper-functions.php:177
|
382 |
-
#: livemesh-vc-addons.php:261
|
383 |
-
msgid "Yes"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
387 |
-
|
388 |
-
|
|
|
|
|
|
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
392 |
-
|
393 |
-
msgid "Link Images to Posts?"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
397 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
401 |
-
|
|
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
405 |
-
|
406 |
-
"
|
407 |
-
|
408 |
-
|
|
|
|
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
412 |
msgid "Choose a layout for the portfolio/blog"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
416 |
msgid "Fit Rows"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
420 |
msgid "Masonry"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
424 |
#: includes/mapper-functions.php:35 includes/mapper-functions.php:64
|
425 |
#: includes/mapper-functions.php:103
|
426 |
msgid "Gutter"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
430 |
#: includes/mapper-functions.php:36 includes/mapper-functions.php:65
|
431 |
#: includes/mapper-functions.php:104
|
432 |
msgid "Space between columns."
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
436 |
msgid "Gutter in Tablets"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
440 |
msgid "Space between columns in tablets."
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
444 |
#: includes/addons/spacer/class-lvca-spacer.php:90
|
445 |
msgid "Tablet Resolution"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
449 |
#: includes/mapper-functions.php:74
|
450 |
msgid "The resolution to treat as a tablet resolution."
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
454 |
msgid "Gutter in Mobiles"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
458 |
msgid "Space between columns in mobiles."
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
462 |
#: includes/addons/spacer/class-lvca-spacer.php:114
|
|
|
463 |
msgid "Mobile Resolution"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
467 |
#: includes/mapper-functions.php:113
|
468 |
msgid "The resolution to treat as a mobile resolution."
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
472 |
-
msgid "Livemesh
|
|
|
|
|
|
|
|
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: includes/addons/
|
476 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:
|
480 |
msgid "Livemesh Posts Carousel"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:
|
484 |
msgid "Display posts or post types as a carousel."
|
485 |
msgstr ""
|
486 |
|
@@ -582,42 +1159,56 @@ msgstr ""
|
|
582 |
msgid "Open Button URL in a new window"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: includes/addons/services/class-lvca-services.php:
|
586 |
msgid "Livemesh Services"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: includes/addons/services/class-lvca-services.php:
|
590 |
msgid "Display services in a column grid."
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: includes/addons/services/class-lvca-services.php:
|
594 |
msgid "Choose the particular style of services you need"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: includes/addons/services/class-lvca-services.php:
|
598 |
msgid "The number of columns to display per row of the services"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: includes/addons/services/class-lvca-services.php:
|
602 |
msgid "Livemesh Service"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: includes/addons/services/class-lvca-services.php:
|
606 |
msgid "Title of the service."
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: includes/addons/services/class-lvca-services.php:
|
610 |
msgid "Service Image."
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: includes/addons/services/class-lvca-services.php:
|
614 |
-
msgid "
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: includes/addons/services/class-lvca-services.php:
|
618 |
msgid "Provide a short description for the service"
|
619 |
msgstr ""
|
620 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
621 |
#: includes/addons/spacer/class-lvca-spacer.php:66
|
622 |
msgid "Livemesh Spacer"
|
623 |
msgstr ""
|
@@ -688,6 +1279,100 @@ msgstr ""
|
|
688 |
msgid "The percentage value for the stats."
|
689 |
msgstr ""
|
690 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
691 |
#: includes/addons/team/class-lvca-team.php:159
|
692 |
msgid "Livemesh Team"
|
693 |
msgstr ""
|
@@ -815,10 +1500,6 @@ msgstr ""
|
|
815 |
msgid "URL of the Instagram feed for the team member."
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: includes/addons/team/social-profile.php:12
|
819 |
-
msgid "Contact Us"
|
820 |
-
msgstr ""
|
821 |
-
|
822 |
#: includes/addons/team/social-profile.php:14
|
823 |
msgid "Follow on Facebook"
|
824 |
msgstr ""
|
@@ -847,117 +1528,141 @@ msgstr ""
|
|
847 |
msgid "View Dribbble Portfolio"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
851 |
msgid "Livemesh Testimonials Slider"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
855 |
msgid "Capture client testimonials in a slider."
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
859 |
msgid "Slideshow speed"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
863 |
msgid "Animation Speed"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
867 |
msgid "Pause slider on action."
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
871 |
msgid ""
|
872 |
"Should the slideshow pause once user initiates an action using "
|
873 |
"navigation/direction controls."
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
877 |
#: includes/mapper-functions.php:175
|
878 |
msgid "Pause on Hover"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
882 |
#: includes/mapper-functions.php:176
|
883 |
msgid "Should the slider pause on mouse hover over the slider."
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
887 |
msgid "Direction Navigation"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
891 |
msgid "Should the slider have direction navigation."
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
895 |
msgid "Navigation Controls"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
899 |
msgid "Should the slider have navigation controls."
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
903 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
904 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
905 |
msgid "Testimonials"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
909 |
msgid "Livemesh Testimonial Slide"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
913 |
msgid "Livemesh Testimonials"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
917 |
msgid "Display testimonials in a multi-column grid."
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
921 |
msgid ""
|
922 |
"The number of testimonials members to display per row of the "
|
923 |
"testimonials"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
927 |
msgid "Livemesh Testimonial"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
931 |
msgid "The author of the testimonial"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
935 |
msgid "Author Details"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
939 |
msgid ""
|
940 |
"The details of the author like company name, position held, company "
|
941 |
-
"URL etc.
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
945 |
msgid "Author Image"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
949 |
msgid "Text"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
953 |
msgid "What your client/customer has to say"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: includes/helper-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
957 |
msgid "All"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: includes/helper-functions.php:
|
961 |
msgid "View all items filed under "
|
962 |
msgstr ""
|
963 |
|
@@ -1013,7 +1718,7 @@ msgstr ""
|
|
1013 |
msgid "Cheatin’ huh?"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: livemesh-vc-addons.php:
|
1017 |
msgid ""
|
1018 |
"Indicate if this row has a dark background color. Dark color scheme "
|
1019 |
"will be applied for all elements in this row."
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Events Calendar Slider\n"
|
5 |
+
"POT-Creation-Date: 2017-05-09 16:39+0530\n"
|
6 |
"PO-Revision-Date: 2015-10-26 13:24-0000\n"
|
7 |
"Last-Translator: LiveMesh\n"
|
8 |
"Language-Team: LiveMesh\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Generator: Poedit 1.8.10\n"
|
14 |
"X-Poedit-KeywordsList: __;_e;_x;_n;esc_attr__;esc_attr_e;esc_html__;"
|
15 |
"esc_html_e;_nx_noop\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
18 |
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: admin/admin-ajax.php:56
|
22 |
+
msgid "Sorry, an error occurred. Please refresh the page."
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: admin/admin-ajax.php:82
|
26 |
+
msgid "Sorry, an unknown error occurred..."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: admin/admin-ajax.php:123
|
30 |
+
msgid "Saving plugin settings"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: admin/admin-ajax.php:124
|
34 |
+
msgid "Plugin settings Saved"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: admin/admin-ajax.php:125
|
38 |
+
msgid "Sorry, an error occurs while saving settings..."
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: admin/admin-ajax.php:128
|
42 |
+
msgid "Resetting plugin settings"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: admin/admin-ajax.php:129
|
46 |
+
msgid "Plugin settings resetted"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: admin/admin-ajax.php:130
|
50 |
+
msgid "Sorry, an error occurred while resetting settings"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: admin/admin-init.php:67 admin/views/documentation.php:196
|
54 |
+
msgid "VC Addons"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: admin/admin-init.php:78
|
58 |
+
msgid "Settings"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: admin/admin-init.php:88
|
62 |
+
msgid "Documentation"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: admin/admin-init.php:98
|
66 |
+
msgid "Upgrade to Pro"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: admin/views/admin-banner1.php:13 admin/views/admin-banner2.php:13
|
70 |
+
msgid "Visual Composer Addons"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: admin/views/admin-banner1.php:13
|
74 |
+
msgid "Plugin Documentation"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: admin/views/admin-banner2.php:13
|
78 |
+
msgid "Plugin Settings"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: admin/views/admin-banner2.php:16
|
82 |
+
msgid "Save Settings"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: admin/views/admin-banner2.php:18
|
86 |
+
msgid "Reset"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: admin/views/admin-banner3.php:13
|
90 |
+
msgid "Addons for Visual Composer"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: admin/views/admin-banner3.php:13
|
94 |
+
msgid "Premium Upgrade"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: admin/views/documentation.php:32
|
98 |
+
#, php-format
|
99 |
+
msgid "Getting started with %1$s v%2$s"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: admin/views/documentation.php:34
|
103 |
+
#, php-format
|
104 |
+
msgid ""
|
105 |
+
"Thanks for installing %1$s! We truly appreciate the support and the "
|
106 |
+
"opportunity to share our work with you. Please visit the tabs below "
|
107 |
+
"to get started on using our plugin to build your site!"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: admin/views/documentation.php:42
|
111 |
+
msgid "Help File"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: admin/views/documentation.php:45
|
115 |
+
msgid "Plugins"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: admin/views/documentation.php:49
|
119 |
+
msgid "FAQ & Support"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: admin/views/documentation.php:53
|
123 |
+
msgid "Latest Updates"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: admin/views/documentation.php:117 admin/views/documentation.php:200
|
127 |
+
msgid "VC Addons→Settings"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: admin/views/documentation.php:131 admin/views/documentation.php:178
|
131 |
+
msgid "Tools→Import"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: admin/views/documentation.php:1123
|
135 |
+
msgid "Visual Composer"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: admin/views/documentation.php:1126
|
139 |
+
msgid "Install Visual Composer"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: admin/views/documentation.php:1127
|
143 |
+
#: admin/views/documentation.php:1151
|
144 |
+
msgid "Install Now"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: admin/views/documentation.php:1131
|
148 |
+
#: admin/views/documentation.php:1155
|
149 |
+
msgid "Installed"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: admin/views/documentation.php:1147
|
153 |
+
msgid "Portfolio Post Type"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: admin/views/documentation.php:1150
|
157 |
+
msgid "Install Portfolio Post Type"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: admin/views/documentation.php:1273
|
161 |
+
msgid "Why upgrade to Premium version?"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: admin/views/documentation.php:1274
|
165 |
+
msgid ""
|
166 |
+
"Premium version offers multiple benefits - more addon elements, "
|
167 |
+
"advanced features for addons including those part of the free "
|
168 |
+
"plugin and priority support through a dedicated support forum."
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: admin/views/documentation.php:1278
|
172 |
+
msgid "Know More"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: admin/views/documentation.php:1278
|
176 |
+
msgid "Know More Details"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: admin/views/premium-upgrade.php:475
|
180 |
+
msgid "Why upgrade to Premium Version of the plugin?"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: admin/views/premium-upgrade.php:603
|
184 |
+
#: includes/addons/team/social-profile.php:12
|
185 |
+
msgid "Contact Us"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: admin/views/premium-upgrade.php:603
|
189 |
+
msgid "Write to Us"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: admin/views/settings.php:68
|
193 |
+
msgid "General"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: admin/views/settings.php:71
|
197 |
+
msgid "Elements"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: admin/views/settings.php:74 admin/views/settings.php:374
|
201 |
+
#: admin/views/settings.php:380
|
202 |
+
msgid "Custom CSS"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: admin/views/settings.php:77
|
206 |
+
msgid "Debugging"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: admin/views/settings.php:80 admin/views/settings.php:447
|
210 |
+
msgid "Premium Version"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: admin/views/settings.php:90
|
214 |
+
msgid "Theme Colors"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: admin/views/settings.php:95
|
218 |
+
msgid "Theme Color Scheme"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: admin/views/settings.php:96
|
222 |
+
msgid ""
|
223 |
+
"Most themes use a single color as a major color across the site. "
|
224 |
+
"This color is often used for links, titles, buttons, icons, "
|
225 |
+
"highlights etc. <br> To maintain the consistent look with the "
|
226 |
+
"theme, specify the default color used by the theme activated on "
|
227 |
+
"your site. This color will be applied to the addon elements by "
|
228 |
+
"default. <br>The hover color refers to the color set for links on "
|
229 |
+
"mouse hover."
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: admin/views/settings.php:103
|
233 |
+
msgid "Theme Color"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: admin/views/settings.php:104
|
237 |
+
msgid "Select the default theme color."
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: admin/views/settings.php:115
|
241 |
+
msgid "Theme Hover Color"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: admin/views/settings.php:116
|
245 |
+
msgid "Select the default hover color for your theme."
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: admin/views/settings.php:140
|
249 |
+
msgid "Optimize Plugin"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: admin/views/settings.php:148
|
253 |
+
msgid "Deactivate elements for better performance"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: admin/views/settings.php:150
|
257 |
+
msgid ""
|
258 |
+
"You can deactivate those elements that you do not intend to use to "
|
259 |
+
"avoid loading scripts and files related to those elements."
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: admin/views/settings.php:158
|
263 |
+
msgid "Deactivate Accordion"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: admin/views/settings.php:159
|
267 |
+
msgid "Deactivate the accordion element."
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: admin/views/settings.php:171
|
271 |
+
msgid "Deactivate Carousel"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: admin/views/settings.php:172
|
275 |
+
msgid "Deactivate the carousel element."
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: admin/views/settings.php:183
|
279 |
+
msgid "Deactivate Clients"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: admin/views/settings.php:184
|
283 |
+
msgid "Deactivate the clients element."
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: admin/views/settings.php:195
|
287 |
+
msgid "Deactivate Heading"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: admin/views/settings.php:196
|
291 |
+
msgid "Deactivate the heading element."
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: admin/views/settings.php:207
|
295 |
+
msgid "Deactivate Odometers"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: admin/views/settings.php:208
|
299 |
+
msgid "Deactivate the odometers element."
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: admin/views/settings.php:220
|
303 |
+
msgid "Deactivate Piecharts"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: admin/views/settings.php:221
|
307 |
+
msgid "Deactivate the piecharts element."
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: admin/views/settings.php:233
|
311 |
+
msgid "Deactivate Portfolio"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: admin/views/settings.php:234
|
315 |
+
msgid "Deactivate the portfolio element."
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: admin/views/settings.php:246
|
319 |
+
msgid "Deactivate Posts Carousel"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: admin/views/settings.php:247
|
323 |
+
msgid "Deactivate the posts carousel element."
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: admin/views/settings.php:259
|
327 |
+
msgid "Deactivate Pricing Table"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: admin/views/settings.php:260
|
331 |
+
msgid "Deactivate the pricing table element."
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: admin/views/settings.php:272
|
335 |
+
msgid "Deactivate Spacer"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: admin/views/settings.php:273
|
339 |
+
msgid "Deactivate the spacer element."
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: admin/views/settings.php:284
|
343 |
+
msgid "Deactivate Services"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: admin/views/settings.php:285
|
347 |
+
msgid "Deactivate the services element."
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: admin/views/settings.php:296
|
351 |
+
msgid "Deactivate Stats Bars"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: admin/views/settings.php:297
|
355 |
+
msgid "Deactivate the stats bars element."
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: admin/views/settings.php:309
|
359 |
+
msgid "Deactivate Tabs"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: admin/views/settings.php:310
|
363 |
+
msgid "Deactivate the tabs element."
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: admin/views/settings.php:321
|
367 |
+
msgid "Deactivate Team"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: admin/views/settings.php:322
|
371 |
+
msgid "Deactivate the team element."
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: admin/views/settings.php:333
|
375 |
+
msgid "Deactivate Testimonials"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: admin/views/settings.php:334
|
379 |
+
msgid "Deactivate the testimonials element."
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: admin/views/settings.php:346
|
383 |
+
msgid "Deactivate Testimonials Slider"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: admin/views/settings.php:347
|
387 |
+
msgid "Deactivate the testimonials slider element."
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
#: admin/views/settings.php:382
|
391 |
+
msgid "Please enter custom CSS for custom styling of elements"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: admin/views/settings.php:401
|
395 |
+
msgid "Debug Mode"
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: admin/views/settings.php:406
|
399 |
+
msgid "Enable Script Debug Mode"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: admin/views/settings.php:408
|
403 |
+
msgid ""
|
404 |
+
"Use unminified Javascript files instead of minified ones to help "
|
405 |
+
"developers debug an issue"
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
#: admin/views/settings.php:421
|
409 |
+
msgid "System Info"
|
410 |
+
msgstr ""
|
411 |
+
|
412 |
+
#: admin/views/settings.php:427
|
413 |
+
msgid "System Information"
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: admin/views/settings.php:428
|
417 |
+
msgid "Server setup information useful for debugging purposes."
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: admin/views/settings.php:455
|
421 |
+
msgid "Why upgrade to Premium Version of the plugin?!"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: admin/views/settings.php:506
|
425 |
+
msgid "Purchase Now"
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#: admin/views/settings.php:568
|
429 |
+
msgid "Go Premium"
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
#: includes/addons/accordion/class-lvca-accordion.php:93
|
433 |
+
msgid "Livemesh Accordion"
|
434 |
+
msgstr ""
|
435 |
+
|
436 |
+
#: includes/addons/accordion/class-lvca-accordion.php:98
|
437 |
+
#: includes/addons/carousel/class-lvca-carousel.php:117
|
438 |
+
#: includes/addons/clients/class-lvca-clients.php:120
|
439 |
+
#: includes/addons/heading/class-lvca-heading.php:83
|
440 |
#: includes/addons/odometers/class-lvca-odometers.php:154
|
441 |
#: includes/addons/piecharts/class-lvca-piecharts.php:123
|
442 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:475
|
443 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:299
|
444 |
#: includes/addons/pricing-table/class-lvca-pricing-table.php:199
|
445 |
+
#: includes/addons/services/class-lvca-services.php:153
|
446 |
#: includes/addons/spacer/class-lvca-spacer.php:71
|
447 |
#: includes/addons/stats-bar/class-lvca-stats-bar.php:119
|
448 |
+
#: includes/addons/tabs/class-lvca-tabs.php:233
|
449 |
#: includes/addons/team/class-lvca-team.php:164
|
450 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:147
|
451 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:123
|
452 |
msgid "Livemesh VC Addons"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: includes/addons/accordion/class-lvca-accordion.php:100
|
456 |
+
msgid "Display collapsible content panels."
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: includes/addons/accordion/class-lvca-accordion.php:109
|
460 |
+
msgid "Choose Accordion Style"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: includes/addons/accordion/class-lvca-accordion.php:110
|
464 |
+
msgid "Choose the particular style of accordion you need"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: includes/addons/accordion/class-lvca-accordion.php:112
|
468 |
+
#: includes/addons/heading/class-lvca-heading.php:94
|
469 |
+
#: includes/addons/services/class-lvca-services.php:166
|
470 |
+
#: includes/addons/tabs/class-lvca-tabs.php:246
|
471 |
+
#: includes/addons/team/class-lvca-team.php:177
|
472 |
+
msgid "Style 1"
|
473 |
+
msgstr ""
|
474 |
+
|
475 |
+
#: includes/addons/accordion/class-lvca-accordion.php:113
|
476 |
+
#: includes/addons/heading/class-lvca-heading.php:95
|
477 |
+
#: includes/addons/services/class-lvca-services.php:167
|
478 |
+
#: includes/addons/tabs/class-lvca-tabs.php:247
|
479 |
+
#: includes/addons/team/class-lvca-team.php:178
|
480 |
+
msgid "Style 2"
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: includes/addons/accordion/class-lvca-accordion.php:114
|
484 |
+
#: includes/addons/heading/class-lvca-heading.php:96
|
485 |
+
#: includes/addons/services/class-lvca-services.php:168
|
486 |
+
#: includes/addons/tabs/class-lvca-tabs.php:248
|
487 |
+
msgid "Style 3"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: includes/addons/accordion/class-lvca-accordion.php:122
|
491 |
+
msgid "Allow to function like toggle?"
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: includes/addons/accordion/class-lvca-accordion.php:123
|
495 |
+
msgid "Check if multiple elements can be open at the same time."
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: includes/addons/accordion/class-lvca-accordion.php:124
|
499 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:329
|
500 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:346
|
501 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:354
|
502 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:362
|
503 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:371
|
504 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:379
|
505 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:390
|
506 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:234
|
507 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:251
|
508 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:259
|
509 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:267
|
510 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:276
|
511 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:284
|
512 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:173
|
513 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:181
|
514 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:189
|
515 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:197
|
516 |
+
#: includes/mapper-functions.php:135 includes/mapper-functions.php:143
|
517 |
+
#: includes/mapper-functions.php:152 includes/mapper-functions.php:177
|
518 |
+
#: livemesh-vc-addons.php:335
|
519 |
+
msgid "Yes"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: includes/addons/accordion/class-lvca-accordion.php:137
|
523 |
+
msgid "Livemesh Panel"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: includes/addons/accordion/class-lvca-accordion.php:148
|
527 |
+
msgid "Panel Title"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: includes/addons/accordion/class-lvca-accordion.php:149
|
531 |
+
msgid "Title for the panel."
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: includes/addons/accordion/class-lvca-accordion.php:154
|
535 |
+
msgid "Panel Content"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: includes/addons/accordion/class-lvca-accordion.php:155
|
539 |
+
msgid "The collapsible content of the panel in the accordion."
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: includes/addons/carousel/class-lvca-carousel.php:112
|
543 |
+
#: includes/addons/carousel/class-lvca-carousel.php:134
|
544 |
+
msgid "Livemesh Carousel"
|
545 |
+
msgstr ""
|
546 |
+
|
547 |
+
#: includes/addons/carousel/class-lvca-carousel.php:119
|
548 |
msgid "Display a carousel of html elements."
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: includes/addons/carousel/class-lvca-carousel.php:139
|
552 |
msgid "Carousel"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: includes/addons/carousel/class-lvca-carousel.php:144
|
556 |
+
#: includes/addons/clients/class-lvca-clients.php:159
|
557 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:162
|
558 |
msgid "Name"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: includes/addons/carousel/class-lvca-carousel.php:145
|
562 |
msgid ""
|
563 |
"The title to identify the HTML element. Will not be output to the "
|
564 |
"frontend."
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: includes/addons/carousel/class-lvca-carousel.php:151
|
568 |
msgid "HTML element"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: includes/addons/carousel/class-lvca-carousel.php:152
|
572 |
msgid ""
|
573 |
"The HTML content for the carousel item. Custom CSS for presentation "
|
574 |
"of the HTML elements should be entered by the user in Settings-"
|
575 |
">Custom CSS panel in VC or in the theme files."
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: includes/addons/clients/class-lvca-clients.php:115
|
579 |
msgid "Livemesh Clients"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: includes/addons/clients/class-lvca-clients.php:122
|
583 |
msgid "Display clients in a multi-column grid."
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: includes/addons/clients/class-lvca-clients.php:134
|
587 |
msgid "Clients per row"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: includes/addons/clients/class-lvca-clients.php:135
|
591 |
msgid "The number of columns to display per row of the clients"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: includes/addons/clients/class-lvca-clients.php:148
|
595 |
msgid "Livemesh Client"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: includes/addons/clients/class-lvca-clients.php:160
|
599 |
msgid "Name of the client/customer."
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: includes/addons/clients/class-lvca-clients.php:166
|
603 |
+
msgid "Client URL"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
#: includes/addons/clients/class-lvca-clients.php:167
|
607 |
+
msgid "The website of the client/customer."
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: includes/addons/clients/class-lvca-clients.php:173
|
611 |
msgid "Client Logo."
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: includes/addons/clients/class-lvca-clients.php:174
|
615 |
msgid "The logo image for the client/customer."
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: includes/addons/heading/class-lvca-heading.php:79
|
619 |
msgid "Livemesh Heading"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: includes/addons/heading/class-lvca-heading.php:84
|
623 |
msgid "Create heading for a section."
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: includes/addons/heading/class-lvca-heading.php:91
|
627 |
+
#: includes/addons/services/class-lvca-services.php:163
|
628 |
#: includes/addons/team/class-lvca-team.php:174
|
629 |
msgid "Choose Style"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: includes/addons/heading/class-lvca-heading.php:92
|
633 |
msgid "Choose the particular style of heading you need"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: includes/addons/heading/class-lvca-heading.php:103
|
637 |
+
msgid "Align"
|
|
|
|
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: includes/addons/heading/class-lvca-heading.php:104
|
641 |
+
msgid "Alignment of the heading"
|
|
|
|
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: includes/addons/heading/class-lvca-heading.php:106
|
645 |
+
msgid "Center"
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: includes/addons/heading/class-lvca-heading.php:107
|
649 |
+
msgid "Left"
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: includes/addons/heading/class-lvca-heading.php:108
|
653 |
+
msgid "Right"
|
654 |
+
msgstr ""
|
655 |
+
|
656 |
+
#: includes/addons/heading/class-lvca-heading.php:116
|
657 |
#: includes/addons/odometers/class-lvca-odometers.php:193
|
658 |
+
#: includes/addons/services/class-lvca-services.php:204
|
659 |
msgid "Title"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: includes/addons/heading/class-lvca-heading.php:117
|
663 |
msgid "Title for the heading."
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: includes/addons/heading/class-lvca-heading.php:122
|
667 |
msgid "Subheading or Subtitle"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: includes/addons/heading/class-lvca-heading.php:123
|
671 |
msgid "A subtitle displayed above the title heading."
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: includes/addons/heading/class-lvca-heading.php:132
|
675 |
msgid "Short Text"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: includes/addons/heading/class-lvca-heading.php:133
|
679 |
msgid "Short text generally displayed below the heading title."
|
680 |
msgstr ""
|
681 |
|
688 |
msgstr ""
|
689 |
|
690 |
#: includes/addons/odometers/class-lvca-odometers.php:168
|
691 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:409
|
692 |
+
#: includes/addons/services/class-lvca-services.php:179
|
693 |
#: includes/addons/team/class-lvca-team.php:189
|
694 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:136
|
695 |
#: includes/mapper-functions.php:15 includes/mapper-functions.php:44
|
696 |
#: includes/mapper-functions.php:83
|
697 |
msgid "Columns per row"
|
746 |
msgstr ""
|
747 |
|
748 |
#: includes/addons/odometers/class-lvca-odometers.php:228
|
749 |
+
#: includes/addons/services/class-lvca-services.php:211
|
750 |
msgid "Choose Icon Type"
|
751 |
msgstr ""
|
752 |
|
756 |
#: includes/addons/odometers/class-lvca-odometers.php:294
|
757 |
#: includes/addons/odometers/class-lvca-odometers.php:311
|
758 |
#: includes/addons/odometers/class-lvca-odometers.php:327
|
759 |
+
#: includes/addons/services/class-lvca-services.php:214
|
760 |
+
#: includes/addons/services/class-lvca-services.php:243
|
761 |
+
#: includes/addons/services/class-lvca-services.php:260
|
762 |
+
#: includes/addons/services/class-lvca-services.php:277
|
763 |
+
#: includes/addons/services/class-lvca-services.php:294
|
764 |
+
#: includes/addons/services/class-lvca-services.php:310
|
765 |
+
#: includes/addons/tabs/class-lvca-tabs.php:316
|
766 |
+
#: includes/addons/tabs/class-lvca-tabs.php:362
|
767 |
+
#: includes/addons/tabs/class-lvca-tabs.php:379
|
768 |
+
#: includes/addons/tabs/class-lvca-tabs.php:396
|
769 |
+
#: includes/addons/tabs/class-lvca-tabs.php:412
|
770 |
msgid "Icon"
|
771 |
msgstr ""
|
772 |
|
773 |
#: includes/addons/odometers/class-lvca-odometers.php:232
|
774 |
+
#: includes/addons/services/class-lvca-services.php:215
|
775 |
+
#: includes/addons/tabs/class-lvca-tabs.php:317
|
776 |
msgid "Icon Image"
|
777 |
msgstr ""
|
778 |
|
781 |
msgstr ""
|
782 |
|
783 |
#: includes/addons/odometers/class-lvca-odometers.php:245
|
784 |
+
#: includes/addons/services/class-lvca-services.php:228
|
785 |
+
#: includes/addons/tabs/class-lvca-tabs.php:330
|
786 |
msgid "Icon library"
|
787 |
msgstr ""
|
788 |
|
789 |
#: includes/addons/odometers/class-lvca-odometers.php:247
|
790 |
+
#: includes/addons/services/class-lvca-services.php:230
|
791 |
+
#: includes/addons/tabs/class-lvca-tabs.php:332
|
792 |
msgid "Font Awesome"
|
793 |
msgstr ""
|
794 |
|
795 |
#: includes/addons/odometers/class-lvca-odometers.php:248
|
796 |
+
#: includes/addons/services/class-lvca-services.php:231
|
797 |
+
#: includes/addons/tabs/class-lvca-tabs.php:333
|
798 |
msgid "Open Iconic"
|
799 |
msgstr ""
|
800 |
|
801 |
#: includes/addons/odometers/class-lvca-odometers.php:249
|
802 |
+
#: includes/addons/services/class-lvca-services.php:232
|
803 |
+
#: includes/addons/tabs/class-lvca-tabs.php:334
|
804 |
msgid "Typicons"
|
805 |
msgstr ""
|
806 |
|
807 |
#: includes/addons/odometers/class-lvca-odometers.php:250
|
808 |
+
#: includes/addons/services/class-lvca-services.php:233
|
809 |
+
#: includes/addons/tabs/class-lvca-tabs.php:335
|
810 |
msgid "Entypo"
|
811 |
msgstr ""
|
812 |
|
813 |
#: includes/addons/odometers/class-lvca-odometers.php:251
|
814 |
+
#: includes/addons/services/class-lvca-services.php:234
|
815 |
+
#: includes/addons/tabs/class-lvca-tabs.php:336
|
816 |
msgid "Linecons"
|
817 |
msgstr ""
|
818 |
|
819 |
#: includes/addons/odometers/class-lvca-odometers.php:255
|
820 |
+
#: includes/addons/services/class-lvca-services.php:238
|
821 |
+
#: includes/addons/tabs/class-lvca-tabs.php:340
|
822 |
msgid "Select icon library."
|
823 |
msgstr ""
|
824 |
|
826 |
#: includes/addons/odometers/class-lvca-odometers.php:290
|
827 |
#: includes/addons/odometers/class-lvca-odometers.php:307
|
828 |
#: includes/addons/odometers/class-lvca-odometers.php:340
|
829 |
+
#: includes/addons/services/class-lvca-services.php:256
|
830 |
+
#: includes/addons/services/class-lvca-services.php:273
|
831 |
+
#: includes/addons/services/class-lvca-services.php:290
|
832 |
+
#: includes/addons/services/class-lvca-services.php:323
|
833 |
+
#: includes/addons/tabs/class-lvca-tabs.php:358
|
834 |
+
#: includes/addons/tabs/class-lvca-tabs.php:375
|
835 |
+
#: includes/addons/tabs/class-lvca-tabs.php:392
|
836 |
+
#: includes/addons/tabs/class-lvca-tabs.php:425
|
837 |
msgid "Select icon from library."
|
838 |
msgstr ""
|
839 |
|
884 |
msgid "The percentage value for the piechart."
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:302
|
888 |
msgid "Heading for the portfolio/blog"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:308
|
892 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:213
|
893 |
msgid "Posts query"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:321
|
897 |
+
msgid ""
|
898 |
+
"Create WordPress loop, to populate content from your site. After "
|
899 |
+
"you build the query, make sure you choose the right taxonomy below "
|
900 |
+
"to display for your posts and filter on, based on the post type "
|
901 |
+
"selected during build query."
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:328
|
905 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:233
|
906 |
+
msgid "Link Images to Posts?"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:335
|
910 |
+
msgid "Choose the taxonomy to display and filter on."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:336
|
914 |
+
msgid ""
|
915 |
+
"Choose the taxonomy information to display for posts/portfolio and "
|
916 |
+
"the taxonomy that is used to filter the portfolio/post. Takes "
|
917 |
+
"effect only if no query category/tag/taxonomy filters are specified "
|
918 |
+
"when building query."
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:345
|
922 |
+
msgid "Display posts title below the post/portfolio item?"
|
|
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:347
|
926 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:355
|
927 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:363
|
928 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:372
|
929 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:380
|
930 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:244
|
931 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:252
|
932 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:260
|
933 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:268
|
934 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:277
|
935 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:285
|
936 |
+
msgid "Post Info"
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:353
|
940 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:258
|
941 |
+
msgid "Display post author info below the post item?"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:361
|
945 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:266
|
946 |
+
msgid "Display post date info below the post item?"
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:370
|
950 |
+
msgid "Display taxonomy info below the post/portfolio item?"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:378
|
954 |
+
msgid "Display post excerpt/summary below the post/portfolio item?"
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:389
|
958 |
+
msgid "Filterable?"
|
959 |
+
msgstr ""
|
960 |
+
|
961 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:397
|
962 |
msgid "Choose a layout for the portfolio/blog"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:399
|
966 |
msgid "Fit Rows"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:400
|
970 |
msgid "Masonry"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:419
|
974 |
#: includes/mapper-functions.php:35 includes/mapper-functions.php:64
|
975 |
#: includes/mapper-functions.php:103
|
976 |
msgid "Gutter"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:420
|
980 |
#: includes/mapper-functions.php:36 includes/mapper-functions.php:65
|
981 |
#: includes/mapper-functions.php:104
|
982 |
msgid "Space between columns."
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:431
|
986 |
msgid "Gutter in Tablets"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:432
|
990 |
msgid "Space between columns in tablets."
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:440
|
994 |
#: includes/addons/spacer/class-lvca-spacer.php:90
|
995 |
msgid "Tablet Resolution"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:441
|
999 |
#: includes/mapper-functions.php:74
|
1000 |
msgid "The resolution to treat as a tablet resolution."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:450
|
1004 |
msgid "Gutter in Mobiles"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:451
|
1008 |
msgid "Space between columns in mobiles."
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:459
|
1012 |
#: includes/addons/spacer/class-lvca-spacer.php:114
|
1013 |
+
#: includes/addons/tabs/class-lvca-tabs.php:274
|
1014 |
msgid "Mobile Resolution"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:460
|
1018 |
#: includes/mapper-functions.php:113
|
1019 |
msgid "The resolution to treat as a mobile resolution."
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:471
|
1023 |
+
msgid "Livemesh Grid"
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:476
|
1027 |
+
msgid "Display work or posts with a filterable grid."
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:226
|
1031 |
+
msgid "Create WordPress loop, to populate content from your site."
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:240
|
1035 |
+
msgid "Choose the taxonomy to display info."
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:241
|
1039 |
+
msgid ""
|
1040 |
+
"Choose the taxonomy to use for display of taxonomy information for "
|
1041 |
+
"posts/custom post types."
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:250
|
1045 |
+
msgid "Display posts title below the post item?"
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:275
|
1049 |
+
msgid "Display taxonomy info below the post item?"
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:283
|
1053 |
+
msgid "Display post excerpt/summary below the post item?"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:295
|
1057 |
msgid "Livemesh Posts Carousel"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:300
|
1061 |
msgid "Display posts or post types as a carousel."
|
1062 |
msgstr ""
|
1063 |
|
1159 |
msgid "Open Button URL in a new window"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: includes/addons/services/class-lvca-services.php:148
|
1163 |
msgid "Livemesh Services"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: includes/addons/services/class-lvca-services.php:155
|
1167 |
msgid "Display services in a column grid."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: includes/addons/services/class-lvca-services.php:164
|
1171 |
msgid "Choose the particular style of services you need"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: includes/addons/services/class-lvca-services.php:180
|
1175 |
msgid "The number of columns to display per row of the services"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: includes/addons/services/class-lvca-services.php:193
|
1179 |
msgid "Livemesh Service"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: includes/addons/services/class-lvca-services.php:205
|
1183 |
msgid "Title of the service."
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: includes/addons/services/class-lvca-services.php:222
|
1187 |
msgid "Service Image."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: includes/addons/services/class-lvca-services.php:329
|
1191 |
+
msgid "Service description"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: includes/addons/services/class-lvca-services.php:330
|
1195 |
msgid "Provide a short description for the service"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: includes/addons/services/class-lvca-services.php:336
|
1199 |
+
msgid ""
|
1200 |
+
"Short description (field will be removed in future - move text to "
|
1201 |
+
"Service description)"
|
1202 |
+
msgstr ""
|
1203 |
+
|
1204 |
+
#: includes/addons/services/class-lvca-services.php:337
|
1205 |
+
msgid "Provide a short description for the service "
|
1206 |
+
msgstr ""
|
1207 |
+
|
1208 |
+
#: includes/addons/services/class-lvca-services.php:338
|
1209 |
+
msgid "Deprecated"
|
1210 |
+
msgstr ""
|
1211 |
+
|
1212 |
#: includes/addons/spacer/class-lvca-spacer.php:66
|
1213 |
msgid "Livemesh Spacer"
|
1214 |
msgstr ""
|
1279 |
msgid "The percentage value for the stats."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: includes/addons/tabs/class-lvca-tabs.php:228
|
1283 |
+
msgid "Livemesh Tabs"
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: includes/addons/tabs/class-lvca-tabs.php:235
|
1287 |
+
msgid "Display tabbed content in variety of styles."
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: includes/addons/tabs/class-lvca-tabs.php:243
|
1291 |
+
msgid "Choose Tab Style"
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: includes/addons/tabs/class-lvca-tabs.php:244
|
1295 |
+
msgid "Choose the particular style of tabs you need"
|
1296 |
+
msgstr ""
|
1297 |
+
|
1298 |
+
#: includes/addons/tabs/class-lvca-tabs.php:249
|
1299 |
+
msgid "Style 4"
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: includes/addons/tabs/class-lvca-tabs.php:250
|
1303 |
+
msgid "Style 5"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: includes/addons/tabs/class-lvca-tabs.php:251
|
1307 |
+
msgid "Style 6"
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
+
#: includes/addons/tabs/class-lvca-tabs.php:252
|
1311 |
+
msgid "Vertical Style 1"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: includes/addons/tabs/class-lvca-tabs.php:253
|
1315 |
+
msgid "Vertical Style 2"
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: includes/addons/tabs/class-lvca-tabs.php:254
|
1319 |
+
msgid "Vertical Style 3"
|
1320 |
+
msgstr ""
|
1321 |
+
|
1322 |
+
#: includes/addons/tabs/class-lvca-tabs.php:255
|
1323 |
+
msgid "Vertical Style 4"
|
1324 |
+
msgstr ""
|
1325 |
+
|
1326 |
+
#: includes/addons/tabs/class-lvca-tabs.php:264
|
1327 |
+
msgid "Tab Highlight color"
|
1328 |
+
msgstr ""
|
1329 |
+
|
1330 |
+
#: includes/addons/tabs/class-lvca-tabs.php:275
|
1331 |
+
msgid ""
|
1332 |
+
"The resolution to treat as a mobile resolution for invoking "
|
1333 |
+
"responsive tabs."
|
1334 |
+
msgstr ""
|
1335 |
+
|
1336 |
+
#: includes/addons/tabs/class-lvca-tabs.php:293
|
1337 |
+
msgid "Livemesh Tab"
|
1338 |
+
msgstr ""
|
1339 |
+
|
1340 |
+
#: includes/addons/tabs/class-lvca-tabs.php:304
|
1341 |
+
msgid "Tab Title"
|
1342 |
+
msgstr ""
|
1343 |
+
|
1344 |
+
#: includes/addons/tabs/class-lvca-tabs.php:305
|
1345 |
+
msgid "The title for the tab shown as name for tab navigation."
|
1346 |
+
msgstr ""
|
1347 |
+
|
1348 |
+
#: includes/addons/tabs/class-lvca-tabs.php:311
|
1349 |
+
msgid "Choose Tab Icon Type or None"
|
1350 |
+
msgstr ""
|
1351 |
+
|
1352 |
+
#: includes/addons/tabs/class-lvca-tabs.php:312
|
1353 |
+
msgid "Some styles may ignore icons chosen."
|
1354 |
+
msgstr ""
|
1355 |
+
|
1356 |
+
#: includes/addons/tabs/class-lvca-tabs.php:315
|
1357 |
+
msgid "None"
|
1358 |
+
msgstr ""
|
1359 |
+
|
1360 |
+
#: includes/addons/tabs/class-lvca-tabs.php:324
|
1361 |
+
msgid "Tab Image."
|
1362 |
+
msgstr ""
|
1363 |
+
|
1364 |
+
#: includes/addons/tabs/class-lvca-tabs.php:345
|
1365 |
+
msgid "Tab Icon"
|
1366 |
+
msgstr ""
|
1367 |
+
|
1368 |
+
#: includes/addons/tabs/class-lvca-tabs.php:431
|
1369 |
+
msgid "Tab Content"
|
1370 |
+
msgstr ""
|
1371 |
+
|
1372 |
+
#: includes/addons/tabs/class-lvca-tabs.php:432
|
1373 |
+
msgid "The content of the tab."
|
1374 |
+
msgstr ""
|
1375 |
+
|
1376 |
#: includes/addons/team/class-lvca-team.php:159
|
1377 |
msgid "Livemesh Team"
|
1378 |
msgstr ""
|
1500 |
msgid "URL of the Instagram feed for the team member."
|
1501 |
msgstr ""
|
1502 |
|
|
|
|
|
|
|
|
|
1503 |
#: includes/addons/team/social-profile.php:14
|
1504 |
msgid "Follow on Facebook"
|
1505 |
msgstr ""
|
1528 |
msgid "View Dribbble Portfolio"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:142
|
1532 |
msgid "Livemesh Testimonials Slider"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:149
|
1536 |
msgid "Capture client testimonials in a slider."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:157
|
1540 |
msgid "Slideshow speed"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:164
|
1544 |
msgid "Animation Speed"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:171
|
1548 |
msgid "Pause slider on action."
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:172
|
1552 |
msgid ""
|
1553 |
"Should the slideshow pause once user initiates an action using "
|
1554 |
"navigation/direction controls."
|
1555 |
msgstr ""
|
1556 |
|
1557 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:179
|
1558 |
#: includes/mapper-functions.php:175
|
1559 |
msgid "Pause on Hover"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:180
|
1563 |
#: includes/mapper-functions.php:176
|
1564 |
msgid "Should the slider pause on mouse hover over the slider."
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:187
|
1568 |
msgid "Direction Navigation"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:188
|
1572 |
msgid "Should the slider have direction navigation."
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:195
|
1576 |
msgid "Navigation Controls"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:196
|
1580 |
msgid "Should the slider have navigation controls."
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:210
|
1584 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:218
|
1585 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:155
|
1586 |
msgid "Testimonials"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:213
|
1590 |
msgid "Livemesh Testimonial Slide"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:118
|
1594 |
msgid "Livemesh Testimonials"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:125
|
1598 |
msgid "Display testimonials in a multi-column grid."
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:137
|
1602 |
msgid ""
|
1603 |
"The number of testimonials members to display per row of the "
|
1604 |
"testimonials"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:150
|
1608 |
msgid "Livemesh Testimonial"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:163
|
1612 |
msgid "The author of the testimonial"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:168
|
1616 |
msgid "Author Details"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:169
|
1620 |
msgid ""
|
1621 |
"The details of the author like company name, position held, company "
|
1622 |
+
"URL etc."
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:175
|
1626 |
msgid "Author Image"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:180
|
1630 |
msgid "Text"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:181
|
1634 |
msgid "What your client/customer has to say"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: includes/helper-functions.php:138
|
1638 |
+
msgid "M d, Y"
|
1639 |
+
msgstr ""
|
1640 |
+
|
1641 |
+
#: includes/helper-functions.php:140 includes/helper-functions.php:144
|
1642 |
+
msgid "l, F, Y, g:i a"
|
1643 |
+
msgstr ""
|
1644 |
+
|
1645 |
+
#: includes/helper-functions.php:144
|
1646 |
+
msgid "Y"
|
1647 |
+
msgstr ""
|
1648 |
+
|
1649 |
+
#: includes/helper-functions.php:144
|
1650 |
+
msgid "m"
|
1651 |
+
msgstr ""
|
1652 |
+
|
1653 |
+
#: includes/helper-functions.php:144
|
1654 |
+
msgid "d"
|
1655 |
+
msgstr ""
|
1656 |
+
|
1657 |
+
#: includes/helper-functions.php:153
|
1658 |
+
msgid "By "
|
1659 |
+
msgstr ""
|
1660 |
+
|
1661 |
+
#: includes/helper-functions.php:175
|
1662 |
msgid "All"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: includes/helper-functions.php:180
|
1666 |
msgid "View all items filed under "
|
1667 |
msgstr ""
|
1668 |
|
1718 |
msgid "Cheatin’ huh?"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
+
#: livemesh-vc-addons.php:336
|
1722 |
msgid ""
|
1723 |
"Indicate if this row has a dark background color. Dark color scheme "
|
1724 |
"will be applied for all elements in this row."
|
languages/en_US.mo
CHANGED
Binary file
|
languages/en_US.po
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Events Calendar Slider\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: LiveMesh\n"
|
7 |
"Language-Team: LiveMesh\n"
|
8 |
"Language: en_US\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.8.
|
13 |
"X-Poedit-KeywordsList: __;_e;_x;_n;esc_attr__;esc_attr_e;esc_html__;"
|
14 |
"esc_html_e;_nx_noop\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
@@ -17,143 +17,660 @@ msgstr ""
|
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#:
|
21 |
-
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
msgstr ""
|
24 |
|
25 |
-
#:
|
26 |
-
|
27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
#: includes/addons/odometers/class-lvca-odometers.php:154
|
29 |
#: includes/addons/piecharts/class-lvca-piecharts.php:123
|
30 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
31 |
-
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:
|
32 |
#: includes/addons/pricing-table/class-lvca-pricing-table.php:199
|
33 |
-
#: includes/addons/services/class-lvca-services.php:
|
34 |
#: includes/addons/spacer/class-lvca-spacer.php:71
|
35 |
#: includes/addons/stats-bar/class-lvca-stats-bar.php:119
|
|
|
36 |
#: includes/addons/team/class-lvca-team.php:164
|
37 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
38 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
39 |
msgid "Livemesh VC Addons"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: includes/addons/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
msgid "Display a carousel of html elements."
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: includes/addons/carousel/class-lvca-carousel.php:
|
47 |
msgid "Carousel"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: includes/addons/carousel/class-lvca-carousel.php:
|
51 |
-
#: includes/addons/clients/class-lvca-clients.php:
|
52 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
53 |
msgid "Name"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: includes/addons/carousel/class-lvca-carousel.php:
|
57 |
msgid ""
|
58 |
"The title to identify the HTML element. Will not be output to the frontend."
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: includes/addons/carousel/class-lvca-carousel.php:
|
62 |
msgid "HTML element"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: includes/addons/carousel/class-lvca-carousel.php:
|
66 |
msgid ""
|
67 |
"The HTML content for the carousel item. Custom CSS for presentation of the "
|
68 |
"HTML elements should be entered by the user in Settings->Custom CSS panel in "
|
69 |
"VC or in the theme files."
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: includes/addons/clients/class-lvca-clients.php:
|
73 |
msgid "Livemesh Clients"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: includes/addons/clients/class-lvca-clients.php:
|
77 |
msgid "Display clients in a multi-column grid."
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: includes/addons/clients/class-lvca-clients.php:
|
81 |
msgid "Clients per row"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: includes/addons/clients/class-lvca-clients.php:
|
85 |
msgid "The number of columns to display per row of the clients"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: includes/addons/clients/class-lvca-clients.php:
|
89 |
msgid "Livemesh Client"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: includes/addons/clients/class-lvca-clients.php:
|
93 |
msgid "Name of the client/customer."
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: includes/addons/clients/class-lvca-clients.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
msgid "Client Logo."
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: includes/addons/clients/class-lvca-clients.php:
|
101 |
msgid "The logo image for the client/customer."
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
105 |
msgid "Livemesh Heading"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
109 |
msgid "Create heading for a section."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
113 |
-
#: includes/addons/services/class-lvca-services.php:
|
114 |
#: includes/addons/team/class-lvca-team.php:174
|
115 |
msgid "Choose Style"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
119 |
msgid "Choose the particular style of heading you need"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
123 |
-
|
124 |
-
#: includes/addons/team/class-lvca-team.php:177
|
125 |
-
msgid "Style 1"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
129 |
-
|
130 |
-
#: includes/addons/team/class-lvca-team.php:178
|
131 |
-
msgid "Style 2"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
#: includes/addons/odometers/class-lvca-odometers.php:193
|
136 |
-
#: includes/addons/services/class-lvca-services.php:
|
137 |
msgid "Title"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
141 |
msgid "Title for the heading."
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
145 |
msgid "Subheading or Subtitle"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
149 |
msgid "A subtitle displayed above the title heading."
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
153 |
msgid "Short Text"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: includes/addons/heading/class-lvca-heading.php:
|
157 |
msgid "Short text generally displayed below the heading title."
|
158 |
msgstr ""
|
159 |
|
@@ -166,10 +683,10 @@ msgid "Display odometers in a multi-column grid."
|
|
166 |
msgstr ""
|
167 |
|
168 |
#: includes/addons/odometers/class-lvca-odometers.php:168
|
169 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
170 |
-
#: includes/addons/services/class-lvca-services.php:
|
171 |
#: includes/addons/team/class-lvca-team.php:189
|
172 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
173 |
#: includes/mapper-functions.php:15 includes/mapper-functions.php:44
|
174 |
#: includes/mapper-functions.php:83
|
175 |
msgid "Columns per row"
|
@@ -224,7 +741,7 @@ msgid ""
|
|
224 |
msgstr ""
|
225 |
|
226 |
#: includes/addons/odometers/class-lvca-odometers.php:228
|
227 |
-
#: includes/addons/services/class-lvca-services.php:
|
228 |
msgid "Choose Icon Type"
|
229 |
msgstr ""
|
230 |
|
@@ -234,17 +751,23 @@ msgstr ""
|
|
234 |
#: includes/addons/odometers/class-lvca-odometers.php:294
|
235 |
#: includes/addons/odometers/class-lvca-odometers.php:311
|
236 |
#: includes/addons/odometers/class-lvca-odometers.php:327
|
237 |
-
#: includes/addons/services/class-lvca-services.php:
|
238 |
-
#: includes/addons/services/class-lvca-services.php:
|
239 |
-
#: includes/addons/services/class-lvca-services.php:
|
240 |
-
#: includes/addons/services/class-lvca-services.php:
|
241 |
-
#: includes/addons/services/class-lvca-services.php:
|
242 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
|
|
|
|
|
|
|
|
243 |
msgid "Icon"
|
244 |
msgstr ""
|
245 |
|
246 |
#: includes/addons/odometers/class-lvca-odometers.php:232
|
247 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
248 |
msgid "Icon Image"
|
249 |
msgstr ""
|
250 |
|
@@ -253,37 +776,44 @@ msgid "Odometer Image."
|
|
253 |
msgstr ""
|
254 |
|
255 |
#: includes/addons/odometers/class-lvca-odometers.php:245
|
256 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
257 |
msgid "Icon library"
|
258 |
msgstr ""
|
259 |
|
260 |
#: includes/addons/odometers/class-lvca-odometers.php:247
|
261 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
262 |
msgid "Font Awesome"
|
263 |
msgstr ""
|
264 |
|
265 |
#: includes/addons/odometers/class-lvca-odometers.php:248
|
266 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
267 |
msgid "Open Iconic"
|
268 |
msgstr ""
|
269 |
|
270 |
#: includes/addons/odometers/class-lvca-odometers.php:249
|
271 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
272 |
msgid "Typicons"
|
273 |
msgstr ""
|
274 |
|
275 |
#: includes/addons/odometers/class-lvca-odometers.php:250
|
276 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
277 |
msgid "Entypo"
|
278 |
msgstr ""
|
279 |
|
280 |
#: includes/addons/odometers/class-lvca-odometers.php:251
|
281 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
282 |
msgid "Linecons"
|
283 |
msgstr ""
|
284 |
|
285 |
#: includes/addons/odometers/class-lvca-odometers.php:255
|
286 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
287 |
msgid "Select icon library."
|
288 |
msgstr ""
|
289 |
|
@@ -291,10 +821,14 @@ msgstr ""
|
|
291 |
#: includes/addons/odometers/class-lvca-odometers.php:290
|
292 |
#: includes/addons/odometers/class-lvca-odometers.php:307
|
293 |
#: includes/addons/odometers/class-lvca-odometers.php:340
|
294 |
-
#: includes/addons/services/class-lvca-services.php:
|
295 |
-
#: includes/addons/services/class-lvca-services.php:
|
296 |
-
#: includes/addons/services/class-lvca-services.php:
|
297 |
-
#: includes/addons/services/class-lvca-services.php:
|
|
|
|
|
|
|
|
|
298 |
msgid "Select icon from library."
|
299 |
msgstr ""
|
300 |
|
@@ -345,140 +879,178 @@ msgstr ""
|
|
345 |
msgid "The percentage value for the piechart."
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
349 |
msgid "Heading for the portfolio/blog"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
353 |
-
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:
|
354 |
msgid "Posts query"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
358 |
-
|
359 |
-
|
|
|
|
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
363 |
-
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:
|
364 |
-
msgid "
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
368 |
-
|
369 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:316
|
370 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:326
|
371 |
-
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:195
|
372 |
-
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:202
|
373 |
-
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:209
|
374 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:172
|
375 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:180
|
376 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:188
|
377 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:196
|
378 |
-
#: includes/mapper-functions.php:135 includes/mapper-functions.php:143
|
379 |
-
#: includes/mapper-functions.php:152 includes/mapper-functions.php:177
|
380 |
-
#: livemesh-vc-addons.php:261
|
381 |
-
msgid "Yes"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
385 |
-
|
386 |
-
|
|
|
|
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
390 |
-
|
391 |
-
msgid "Link Images to Posts?"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
395 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
399 |
-
|
|
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
403 |
-
|
404 |
-
"
|
405 |
-
|
406 |
-
|
|
|
|
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
410 |
msgid "Choose a layout for the portfolio/blog"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
414 |
msgid "Fit Rows"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
418 |
msgid "Masonry"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
422 |
#: includes/mapper-functions.php:35 includes/mapper-functions.php:64
|
423 |
#: includes/mapper-functions.php:103
|
424 |
msgid "Gutter"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
428 |
#: includes/mapper-functions.php:36 includes/mapper-functions.php:65
|
429 |
#: includes/mapper-functions.php:104
|
430 |
msgid "Space between columns."
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
434 |
msgid "Gutter in Tablets"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
438 |
msgid "Space between columns in tablets."
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
442 |
#: includes/addons/spacer/class-lvca-spacer.php:90
|
443 |
msgid "Tablet Resolution"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
447 |
#: includes/mapper-functions.php:74
|
448 |
msgid "The resolution to treat as a tablet resolution."
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
452 |
msgid "Gutter in Mobiles"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
456 |
msgid "Space between columns in mobiles."
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
460 |
#: includes/addons/spacer/class-lvca-spacer.php:114
|
|
|
461 |
msgid "Mobile Resolution"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
465 |
#: includes/mapper-functions.php:113
|
466 |
msgid "The resolution to treat as a mobile resolution."
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: includes/addons/portfolio/class-lvca-portfolio.php:
|
470 |
-
msgid "Livemesh
|
|
|
|
|
|
|
|
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: includes/addons/
|
474 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:
|
478 |
msgid "Livemesh Posts Carousel"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:
|
482 |
msgid "Display posts or post types as a carousel."
|
483 |
msgstr ""
|
484 |
|
@@ -577,42 +1149,56 @@ msgstr ""
|
|
577 |
msgid "Open Button URL in a new window"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: includes/addons/services/class-lvca-services.php:
|
581 |
msgid "Livemesh Services"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: includes/addons/services/class-lvca-services.php:
|
585 |
msgid "Display services in a column grid."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: includes/addons/services/class-lvca-services.php:
|
589 |
msgid "Choose the particular style of services you need"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: includes/addons/services/class-lvca-services.php:
|
593 |
msgid "The number of columns to display per row of the services"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: includes/addons/services/class-lvca-services.php:
|
597 |
msgid "Livemesh Service"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: includes/addons/services/class-lvca-services.php:
|
601 |
msgid "Title of the service."
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: includes/addons/services/class-lvca-services.php:
|
605 |
msgid "Service Image."
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: includes/addons/services/class-lvca-services.php:
|
609 |
-
msgid "
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: includes/addons/services/class-lvca-services.php:
|
613 |
msgid "Provide a short description for the service"
|
614 |
msgstr ""
|
615 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
616 |
#: includes/addons/spacer/class-lvca-spacer.php:66
|
617 |
msgid "Livemesh Spacer"
|
618 |
msgstr ""
|
@@ -682,6 +1268,99 @@ msgstr ""
|
|
682 |
msgid "The percentage value for the stats."
|
683 |
msgstr ""
|
684 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
685 |
#: includes/addons/team/class-lvca-team.php:159
|
686 |
msgid "Livemesh Team"
|
687 |
msgstr ""
|
@@ -809,10 +1488,6 @@ msgstr ""
|
|
809 |
msgid "URL of the Instagram feed for the team member."
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: includes/addons/team/social-profile.php:12
|
813 |
-
msgid "Contact Us"
|
814 |
-
msgstr ""
|
815 |
-
|
816 |
#: includes/addons/team/social-profile.php:14
|
817 |
msgid "Follow on Facebook"
|
818 |
msgstr ""
|
@@ -841,116 +1516,139 @@ msgstr ""
|
|
841 |
msgid "View Dribbble Portfolio"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
845 |
msgid "Livemesh Testimonials Slider"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
849 |
msgid "Capture client testimonials in a slider."
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
853 |
msgid "Slideshow speed"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
857 |
msgid "Animation Speed"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
861 |
msgid "Pause slider on action."
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
865 |
msgid ""
|
866 |
"Should the slideshow pause once user initiates an action using navigation/"
|
867 |
"direction controls."
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
871 |
#: includes/mapper-functions.php:175
|
872 |
msgid "Pause on Hover"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
876 |
#: includes/mapper-functions.php:176
|
877 |
msgid "Should the slider pause on mouse hover over the slider."
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
881 |
msgid "Direction Navigation"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
885 |
msgid "Should the slider have direction navigation."
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
889 |
msgid "Navigation Controls"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
893 |
msgid "Should the slider have navigation controls."
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
897 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
898 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
899 |
msgid "Testimonials"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:
|
903 |
msgid "Livemesh Testimonial Slide"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
907 |
msgid "Livemesh Testimonials"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
911 |
msgid "Display testimonials in a multi-column grid."
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
915 |
msgid ""
|
916 |
"The number of testimonials members to display per row of the testimonials"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
920 |
msgid "Livemesh Testimonial"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
924 |
msgid "The author of the testimonial"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
928 |
msgid "Author Details"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
932 |
msgid ""
|
933 |
-
"The details of the author like company name, position held, company URL etc.
|
934 |
-
"HTML accepted."
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
938 |
msgid "Author Image"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
942 |
msgid "Text"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: includes/addons/testimonials/class-lvca-testimonials.php:
|
946 |
msgid "What your client/customer has to say"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: includes/helper-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
950 |
msgid "All"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: includes/helper-functions.php:
|
954 |
msgid "View all items filed under "
|
955 |
msgstr ""
|
956 |
|
@@ -1006,7 +1704,7 @@ msgstr ""
|
|
1006 |
msgid "Cheatin’ huh?"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: livemesh-vc-addons.php:
|
1010 |
msgid ""
|
1011 |
"Indicate if this row has a dark background color. Dark color scheme will be "
|
1012 |
"applied for all elements in this row."
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Events Calendar Slider\n"
|
4 |
+
"POT-Creation-Date: 2017-05-09 16:39+0530\n"
|
5 |
+
"PO-Revision-Date: 2017-05-09 16:39+0530\n"
|
6 |
"Last-Translator: LiveMesh\n"
|
7 |
"Language-Team: LiveMesh\n"
|
8 |
"Language: en_US\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.10\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_x;_n;esc_attr__;esc_attr_e;esc_html__;"
|
14 |
"esc_html_e;_nx_noop\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: admin/admin-ajax.php:56
|
21 |
+
msgid "Sorry, an error occurred. Please refresh the page."
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: admin/admin-ajax.php:82
|
25 |
+
msgid "Sorry, an unknown error occurred..."
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: admin/admin-ajax.php:123
|
29 |
+
msgid "Saving plugin settings"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: admin/admin-ajax.php:124
|
33 |
+
msgid "Plugin settings Saved"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: admin/admin-ajax.php:125
|
37 |
+
msgid "Sorry, an error occurs while saving settings..."
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: admin/admin-ajax.php:128
|
41 |
+
msgid "Resetting plugin settings"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: admin/admin-ajax.php:129
|
45 |
+
msgid "Plugin settings resetted"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: admin/admin-ajax.php:130
|
49 |
+
msgid "Sorry, an error occurred while resetting settings"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: admin/admin-init.php:67 admin/views/documentation.php:196
|
53 |
+
msgid "VC Addons"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: admin/admin-init.php:78
|
57 |
+
msgid "Settings"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: admin/admin-init.php:88
|
61 |
+
msgid "Documentation"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: admin/admin-init.php:98
|
65 |
+
msgid "Upgrade to Pro"
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: admin/views/admin-banner1.php:13 admin/views/admin-banner2.php:13
|
69 |
+
msgid "Visual Composer Addons"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: admin/views/admin-banner1.php:13
|
73 |
+
msgid "Plugin Documentation"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: admin/views/admin-banner2.php:13
|
77 |
+
msgid "Plugin Settings"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: admin/views/admin-banner2.php:16
|
81 |
+
msgid "Save Settings"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: admin/views/admin-banner2.php:18
|
85 |
+
msgid "Reset"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: admin/views/admin-banner3.php:13
|
89 |
+
msgid "Addons for Visual Composer"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: admin/views/admin-banner3.php:13
|
93 |
+
msgid "Premium Upgrade"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: admin/views/documentation.php:32
|
97 |
+
#, php-format
|
98 |
+
msgid "Getting started with %1$s v%2$s"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: admin/views/documentation.php:34
|
102 |
+
#, php-format
|
103 |
+
msgid ""
|
104 |
+
"Thanks for installing %1$s! We truly appreciate the support and the "
|
105 |
+
"opportunity to share our work with you. Please visit the tabs below to get "
|
106 |
+
"started on using our plugin to build your site!"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: admin/views/documentation.php:42
|
110 |
+
msgid "Help File"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: admin/views/documentation.php:45
|
114 |
+
msgid "Plugins"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: admin/views/documentation.php:49
|
118 |
+
msgid "FAQ & Support"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: admin/views/documentation.php:53
|
122 |
+
msgid "Latest Updates"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: admin/views/documentation.php:117 admin/views/documentation.php:200
|
126 |
+
msgid "VC Addons→Settings"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: admin/views/documentation.php:131 admin/views/documentation.php:178
|
130 |
+
msgid "Tools→Import"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: admin/views/documentation.php:1123
|
134 |
+
msgid "Visual Composer"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: admin/views/documentation.php:1126
|
138 |
+
msgid "Install Visual Composer"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: admin/views/documentation.php:1127 admin/views/documentation.php:1151
|
142 |
+
msgid "Install Now"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: admin/views/documentation.php:1131 admin/views/documentation.php:1155
|
146 |
+
msgid "Installed"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: admin/views/documentation.php:1147
|
150 |
+
msgid "Portfolio Post Type"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: admin/views/documentation.php:1150
|
154 |
+
msgid "Install Portfolio Post Type"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: admin/views/documentation.php:1273
|
158 |
+
msgid "Why upgrade to Premium version?"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: admin/views/documentation.php:1274
|
162 |
+
msgid ""
|
163 |
+
"Premium version offers multiple benefits - more addon elements, advanced "
|
164 |
+
"features for addons including those part of the free plugin and priority "
|
165 |
+
"support through a dedicated support forum."
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: admin/views/documentation.php:1278
|
169 |
+
msgid "Know More"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: admin/views/documentation.php:1278
|
173 |
+
msgid "Know More Details"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: admin/views/premium-upgrade.php:475
|
177 |
+
msgid "Why upgrade to Premium Version of the plugin?"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: admin/views/premium-upgrade.php:603
|
181 |
+
#: includes/addons/team/social-profile.php:12
|
182 |
+
msgid "Contact Us"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: admin/views/premium-upgrade.php:603
|
186 |
+
msgid "Write to Us"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: admin/views/settings.php:68
|
190 |
+
msgid "General"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: admin/views/settings.php:71
|
194 |
+
msgid "Elements"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: admin/views/settings.php:74 admin/views/settings.php:374
|
198 |
+
#: admin/views/settings.php:380
|
199 |
+
msgid "Custom CSS"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: admin/views/settings.php:77
|
203 |
+
msgid "Debugging"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: admin/views/settings.php:80 admin/views/settings.php:447
|
207 |
+
msgid "Premium Version"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: admin/views/settings.php:90
|
211 |
+
msgid "Theme Colors"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: admin/views/settings.php:95
|
215 |
+
msgid "Theme Color Scheme"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: admin/views/settings.php:96
|
219 |
+
msgid ""
|
220 |
+
"Most themes use a single color as a major color across the site. This color "
|
221 |
+
"is often used for links, titles, buttons, icons, highlights etc. <br> To "
|
222 |
+
"maintain the consistent look with the theme, specify the default color used "
|
223 |
+
"by the theme activated on your site. This color will be applied to the addon "
|
224 |
+
"elements by default. <br>The hover color refers to the color set for links "
|
225 |
+
"on mouse hover."
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: admin/views/settings.php:103
|
229 |
+
msgid "Theme Color"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: admin/views/settings.php:104
|
233 |
+
msgid "Select the default theme color."
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: admin/views/settings.php:115
|
237 |
+
msgid "Theme Hover Color"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: admin/views/settings.php:116
|
241 |
+
msgid "Select the default hover color for your theme."
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: admin/views/settings.php:140
|
245 |
+
msgid "Optimize Plugin"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: admin/views/settings.php:148
|
249 |
+
msgid "Deactivate elements for better performance"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: admin/views/settings.php:150
|
253 |
+
msgid ""
|
254 |
+
"You can deactivate those elements that you do not intend to use to avoid "
|
255 |
+
"loading scripts and files related to those elements."
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: admin/views/settings.php:158
|
259 |
+
msgid "Deactivate Accordion"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: admin/views/settings.php:159
|
263 |
+
msgid "Deactivate the accordion element."
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: admin/views/settings.php:171
|
267 |
+
msgid "Deactivate Carousel"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: admin/views/settings.php:172
|
271 |
+
msgid "Deactivate the carousel element."
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: admin/views/settings.php:183
|
275 |
+
msgid "Deactivate Clients"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: admin/views/settings.php:184
|
279 |
+
msgid "Deactivate the clients element."
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: admin/views/settings.php:195
|
283 |
+
msgid "Deactivate Heading"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: admin/views/settings.php:196
|
287 |
+
msgid "Deactivate the heading element."
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: admin/views/settings.php:207
|
291 |
+
msgid "Deactivate Odometers"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: admin/views/settings.php:208
|
295 |
+
msgid "Deactivate the odometers element."
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: admin/views/settings.php:220
|
299 |
+
msgid "Deactivate Piecharts"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: admin/views/settings.php:221
|
303 |
+
msgid "Deactivate the piecharts element."
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: admin/views/settings.php:233
|
307 |
+
msgid "Deactivate Portfolio"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: admin/views/settings.php:234
|
311 |
+
msgid "Deactivate the portfolio element."
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: admin/views/settings.php:246
|
315 |
+
msgid "Deactivate Posts Carousel"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: admin/views/settings.php:247
|
319 |
+
msgid "Deactivate the posts carousel element."
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: admin/views/settings.php:259
|
323 |
+
msgid "Deactivate Pricing Table"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: admin/views/settings.php:260
|
327 |
+
msgid "Deactivate the pricing table element."
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: admin/views/settings.php:272
|
331 |
+
msgid "Deactivate Spacer"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: admin/views/settings.php:273
|
335 |
+
msgid "Deactivate the spacer element."
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: admin/views/settings.php:284
|
339 |
+
msgid "Deactivate Services"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: admin/views/settings.php:285
|
343 |
+
msgid "Deactivate the services element."
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: admin/views/settings.php:296
|
347 |
+
msgid "Deactivate Stats Bars"
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: admin/views/settings.php:297
|
351 |
+
msgid "Deactivate the stats bars element."
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: admin/views/settings.php:309
|
355 |
+
msgid "Deactivate Tabs"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: admin/views/settings.php:310
|
359 |
+
msgid "Deactivate the tabs element."
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: admin/views/settings.php:321
|
363 |
+
msgid "Deactivate Team"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: admin/views/settings.php:322
|
367 |
+
msgid "Deactivate the team element."
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: admin/views/settings.php:333
|
371 |
+
msgid "Deactivate Testimonials"
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: admin/views/settings.php:334
|
375 |
+
msgid "Deactivate the testimonials element."
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: admin/views/settings.php:346
|
379 |
+
msgid "Deactivate Testimonials Slider"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: admin/views/settings.php:347
|
383 |
+
msgid "Deactivate the testimonials slider element."
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: admin/views/settings.php:382
|
387 |
+
msgid "Please enter custom CSS for custom styling of elements"
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
#: admin/views/settings.php:401
|
391 |
+
msgid "Debug Mode"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: admin/views/settings.php:406
|
395 |
+
msgid "Enable Script Debug Mode"
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: admin/views/settings.php:408
|
399 |
+
msgid ""
|
400 |
+
"Use unminified Javascript files instead of minified ones to help developers "
|
401 |
+
"debug an issue"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: admin/views/settings.php:421
|
405 |
+
msgid "System Info"
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
#: admin/views/settings.php:427
|
409 |
+
msgid "System Information"
|
410 |
+
msgstr ""
|
411 |
+
|
412 |
+
#: admin/views/settings.php:428
|
413 |
+
msgid "Server setup information useful for debugging purposes."
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: admin/views/settings.php:455
|
417 |
+
msgid "Why upgrade to Premium Version of the plugin?!"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: admin/views/settings.php:506
|
421 |
+
msgid "Purchase Now"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: admin/views/settings.php:568
|
425 |
+
msgid "Go Premium"
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#: includes/addons/accordion/class-lvca-accordion.php:93
|
429 |
+
msgid "Livemesh Accordion"
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
#: includes/addons/accordion/class-lvca-accordion.php:98
|
433 |
+
#: includes/addons/carousel/class-lvca-carousel.php:117
|
434 |
+
#: includes/addons/clients/class-lvca-clients.php:120
|
435 |
+
#: includes/addons/heading/class-lvca-heading.php:83
|
436 |
#: includes/addons/odometers/class-lvca-odometers.php:154
|
437 |
#: includes/addons/piecharts/class-lvca-piecharts.php:123
|
438 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:475
|
439 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:299
|
440 |
#: includes/addons/pricing-table/class-lvca-pricing-table.php:199
|
441 |
+
#: includes/addons/services/class-lvca-services.php:153
|
442 |
#: includes/addons/spacer/class-lvca-spacer.php:71
|
443 |
#: includes/addons/stats-bar/class-lvca-stats-bar.php:119
|
444 |
+
#: includes/addons/tabs/class-lvca-tabs.php:233
|
445 |
#: includes/addons/team/class-lvca-team.php:164
|
446 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:147
|
447 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:123
|
448 |
msgid "Livemesh VC Addons"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: includes/addons/accordion/class-lvca-accordion.php:100
|
452 |
+
msgid "Display collapsible content panels."
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
#: includes/addons/accordion/class-lvca-accordion.php:109
|
456 |
+
msgid "Choose Accordion Style"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: includes/addons/accordion/class-lvca-accordion.php:110
|
460 |
+
msgid "Choose the particular style of accordion you need"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: includes/addons/accordion/class-lvca-accordion.php:112
|
464 |
+
#: includes/addons/heading/class-lvca-heading.php:94
|
465 |
+
#: includes/addons/services/class-lvca-services.php:166
|
466 |
+
#: includes/addons/tabs/class-lvca-tabs.php:246
|
467 |
+
#: includes/addons/team/class-lvca-team.php:177
|
468 |
+
msgid "Style 1"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: includes/addons/accordion/class-lvca-accordion.php:113
|
472 |
+
#: includes/addons/heading/class-lvca-heading.php:95
|
473 |
+
#: includes/addons/services/class-lvca-services.php:167
|
474 |
+
#: includes/addons/tabs/class-lvca-tabs.php:247
|
475 |
+
#: includes/addons/team/class-lvca-team.php:178
|
476 |
+
msgid "Style 2"
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: includes/addons/accordion/class-lvca-accordion.php:114
|
480 |
+
#: includes/addons/heading/class-lvca-heading.php:96
|
481 |
+
#: includes/addons/services/class-lvca-services.php:168
|
482 |
+
#: includes/addons/tabs/class-lvca-tabs.php:248
|
483 |
+
msgid "Style 3"
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: includes/addons/accordion/class-lvca-accordion.php:122
|
487 |
+
msgid "Allow to function like toggle?"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: includes/addons/accordion/class-lvca-accordion.php:123
|
491 |
+
msgid "Check if multiple elements can be open at the same time."
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: includes/addons/accordion/class-lvca-accordion.php:124
|
495 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:329
|
496 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:346
|
497 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:354
|
498 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:362
|
499 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:371
|
500 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:379
|
501 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:390
|
502 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:234
|
503 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:251
|
504 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:259
|
505 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:267
|
506 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:276
|
507 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:284
|
508 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:173
|
509 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:181
|
510 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:189
|
511 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:197
|
512 |
+
#: includes/mapper-functions.php:135 includes/mapper-functions.php:143
|
513 |
+
#: includes/mapper-functions.php:152 includes/mapper-functions.php:177
|
514 |
+
#: livemesh-vc-addons.php:335
|
515 |
+
msgid "Yes"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: includes/addons/accordion/class-lvca-accordion.php:137
|
519 |
+
msgid "Livemesh Panel"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: includes/addons/accordion/class-lvca-accordion.php:148
|
523 |
+
msgid "Panel Title"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: includes/addons/accordion/class-lvca-accordion.php:149
|
527 |
+
msgid "Title for the panel."
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: includes/addons/accordion/class-lvca-accordion.php:154
|
531 |
+
msgid "Panel Content"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: includes/addons/accordion/class-lvca-accordion.php:155
|
535 |
+
msgid "The collapsible content of the panel in the accordion."
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: includes/addons/carousel/class-lvca-carousel.php:112
|
539 |
+
#: includes/addons/carousel/class-lvca-carousel.php:134
|
540 |
+
msgid "Livemesh Carousel"
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#: includes/addons/carousel/class-lvca-carousel.php:119
|
544 |
msgid "Display a carousel of html elements."
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: includes/addons/carousel/class-lvca-carousel.php:139
|
548 |
msgid "Carousel"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: includes/addons/carousel/class-lvca-carousel.php:144
|
552 |
+
#: includes/addons/clients/class-lvca-clients.php:159
|
553 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:162
|
554 |
msgid "Name"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: includes/addons/carousel/class-lvca-carousel.php:145
|
558 |
msgid ""
|
559 |
"The title to identify the HTML element. Will not be output to the frontend."
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: includes/addons/carousel/class-lvca-carousel.php:151
|
563 |
msgid "HTML element"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: includes/addons/carousel/class-lvca-carousel.php:152
|
567 |
msgid ""
|
568 |
"The HTML content for the carousel item. Custom CSS for presentation of the "
|
569 |
"HTML elements should be entered by the user in Settings->Custom CSS panel in "
|
570 |
"VC or in the theme files."
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: includes/addons/clients/class-lvca-clients.php:115
|
574 |
msgid "Livemesh Clients"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: includes/addons/clients/class-lvca-clients.php:122
|
578 |
msgid "Display clients in a multi-column grid."
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: includes/addons/clients/class-lvca-clients.php:134
|
582 |
msgid "Clients per row"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: includes/addons/clients/class-lvca-clients.php:135
|
586 |
msgid "The number of columns to display per row of the clients"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: includes/addons/clients/class-lvca-clients.php:148
|
590 |
msgid "Livemesh Client"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: includes/addons/clients/class-lvca-clients.php:160
|
594 |
msgid "Name of the client/customer."
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: includes/addons/clients/class-lvca-clients.php:166
|
598 |
+
msgid "Client URL"
|
599 |
+
msgstr ""
|
600 |
+
|
601 |
+
#: includes/addons/clients/class-lvca-clients.php:167
|
602 |
+
msgid "The website of the client/customer."
|
603 |
+
msgstr ""
|
604 |
+
|
605 |
+
#: includes/addons/clients/class-lvca-clients.php:173
|
606 |
msgid "Client Logo."
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: includes/addons/clients/class-lvca-clients.php:174
|
610 |
msgid "The logo image for the client/customer."
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: includes/addons/heading/class-lvca-heading.php:79
|
614 |
msgid "Livemesh Heading"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: includes/addons/heading/class-lvca-heading.php:84
|
618 |
msgid "Create heading for a section."
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: includes/addons/heading/class-lvca-heading.php:91
|
622 |
+
#: includes/addons/services/class-lvca-services.php:163
|
623 |
#: includes/addons/team/class-lvca-team.php:174
|
624 |
msgid "Choose Style"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: includes/addons/heading/class-lvca-heading.php:92
|
628 |
msgid "Choose the particular style of heading you need"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: includes/addons/heading/class-lvca-heading.php:103
|
632 |
+
msgid "Align"
|
|
|
|
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: includes/addons/heading/class-lvca-heading.php:104
|
636 |
+
msgid "Alignment of the heading"
|
|
|
|
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: includes/addons/heading/class-lvca-heading.php:106
|
640 |
+
msgid "Center"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: includes/addons/heading/class-lvca-heading.php:107
|
644 |
+
msgid "Left"
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
#: includes/addons/heading/class-lvca-heading.php:108
|
648 |
+
msgid "Right"
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: includes/addons/heading/class-lvca-heading.php:116
|
652 |
#: includes/addons/odometers/class-lvca-odometers.php:193
|
653 |
+
#: includes/addons/services/class-lvca-services.php:204
|
654 |
msgid "Title"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: includes/addons/heading/class-lvca-heading.php:117
|
658 |
msgid "Title for the heading."
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: includes/addons/heading/class-lvca-heading.php:122
|
662 |
msgid "Subheading or Subtitle"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: includes/addons/heading/class-lvca-heading.php:123
|
666 |
msgid "A subtitle displayed above the title heading."
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: includes/addons/heading/class-lvca-heading.php:132
|
670 |
msgid "Short Text"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: includes/addons/heading/class-lvca-heading.php:133
|
674 |
msgid "Short text generally displayed below the heading title."
|
675 |
msgstr ""
|
676 |
|
683 |
msgstr ""
|
684 |
|
685 |
#: includes/addons/odometers/class-lvca-odometers.php:168
|
686 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:409
|
687 |
+
#: includes/addons/services/class-lvca-services.php:179
|
688 |
#: includes/addons/team/class-lvca-team.php:189
|
689 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:136
|
690 |
#: includes/mapper-functions.php:15 includes/mapper-functions.php:44
|
691 |
#: includes/mapper-functions.php:83
|
692 |
msgid "Columns per row"
|
741 |
msgstr ""
|
742 |
|
743 |
#: includes/addons/odometers/class-lvca-odometers.php:228
|
744 |
+
#: includes/addons/services/class-lvca-services.php:211
|
745 |
msgid "Choose Icon Type"
|
746 |
msgstr ""
|
747 |
|
751 |
#: includes/addons/odometers/class-lvca-odometers.php:294
|
752 |
#: includes/addons/odometers/class-lvca-odometers.php:311
|
753 |
#: includes/addons/odometers/class-lvca-odometers.php:327
|
754 |
+
#: includes/addons/services/class-lvca-services.php:214
|
755 |
+
#: includes/addons/services/class-lvca-services.php:243
|
756 |
+
#: includes/addons/services/class-lvca-services.php:260
|
757 |
+
#: includes/addons/services/class-lvca-services.php:277
|
758 |
+
#: includes/addons/services/class-lvca-services.php:294
|
759 |
+
#: includes/addons/services/class-lvca-services.php:310
|
760 |
+
#: includes/addons/tabs/class-lvca-tabs.php:316
|
761 |
+
#: includes/addons/tabs/class-lvca-tabs.php:362
|
762 |
+
#: includes/addons/tabs/class-lvca-tabs.php:379
|
763 |
+
#: includes/addons/tabs/class-lvca-tabs.php:396
|
764 |
+
#: includes/addons/tabs/class-lvca-tabs.php:412
|
765 |
msgid "Icon"
|
766 |
msgstr ""
|
767 |
|
768 |
#: includes/addons/odometers/class-lvca-odometers.php:232
|
769 |
+
#: includes/addons/services/class-lvca-services.php:215
|
770 |
+
#: includes/addons/tabs/class-lvca-tabs.php:317
|
771 |
msgid "Icon Image"
|
772 |
msgstr ""
|
773 |
|
776 |
msgstr ""
|
777 |
|
778 |
#: includes/addons/odometers/class-lvca-odometers.php:245
|
779 |
+
#: includes/addons/services/class-lvca-services.php:228
|
780 |
+
#: includes/addons/tabs/class-lvca-tabs.php:330
|
781 |
msgid "Icon library"
|
782 |
msgstr ""
|
783 |
|
784 |
#: includes/addons/odometers/class-lvca-odometers.php:247
|
785 |
+
#: includes/addons/services/class-lvca-services.php:230
|
786 |
+
#: includes/addons/tabs/class-lvca-tabs.php:332
|
787 |
msgid "Font Awesome"
|
788 |
msgstr ""
|
789 |
|
790 |
#: includes/addons/odometers/class-lvca-odometers.php:248
|
791 |
+
#: includes/addons/services/class-lvca-services.php:231
|
792 |
+
#: includes/addons/tabs/class-lvca-tabs.php:333
|
793 |
msgid "Open Iconic"
|
794 |
msgstr ""
|
795 |
|
796 |
#: includes/addons/odometers/class-lvca-odometers.php:249
|
797 |
+
#: includes/addons/services/class-lvca-services.php:232
|
798 |
+
#: includes/addons/tabs/class-lvca-tabs.php:334
|
799 |
msgid "Typicons"
|
800 |
msgstr ""
|
801 |
|
802 |
#: includes/addons/odometers/class-lvca-odometers.php:250
|
803 |
+
#: includes/addons/services/class-lvca-services.php:233
|
804 |
+
#: includes/addons/tabs/class-lvca-tabs.php:335
|
805 |
msgid "Entypo"
|
806 |
msgstr ""
|
807 |
|
808 |
#: includes/addons/odometers/class-lvca-odometers.php:251
|
809 |
+
#: includes/addons/services/class-lvca-services.php:234
|
810 |
+
#: includes/addons/tabs/class-lvca-tabs.php:336
|
811 |
msgid "Linecons"
|
812 |
msgstr ""
|
813 |
|
814 |
#: includes/addons/odometers/class-lvca-odometers.php:255
|
815 |
+
#: includes/addons/services/class-lvca-services.php:238
|
816 |
+
#: includes/addons/tabs/class-lvca-tabs.php:340
|
817 |
msgid "Select icon library."
|
818 |
msgstr ""
|
819 |
|
821 |
#: includes/addons/odometers/class-lvca-odometers.php:290
|
822 |
#: includes/addons/odometers/class-lvca-odometers.php:307
|
823 |
#: includes/addons/odometers/class-lvca-odometers.php:340
|
824 |
+
#: includes/addons/services/class-lvca-services.php:256
|
825 |
+
#: includes/addons/services/class-lvca-services.php:273
|
826 |
+
#: includes/addons/services/class-lvca-services.php:290
|
827 |
+
#: includes/addons/services/class-lvca-services.php:323
|
828 |
+
#: includes/addons/tabs/class-lvca-tabs.php:358
|
829 |
+
#: includes/addons/tabs/class-lvca-tabs.php:375
|
830 |
+
#: includes/addons/tabs/class-lvca-tabs.php:392
|
831 |
+
#: includes/addons/tabs/class-lvca-tabs.php:425
|
832 |
msgid "Select icon from library."
|
833 |
msgstr ""
|
834 |
|
879 |
msgid "The percentage value for the piechart."
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:302
|
883 |
msgid "Heading for the portfolio/blog"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:308
|
887 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:213
|
888 |
msgid "Posts query"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:321
|
892 |
+
msgid ""
|
893 |
+
"Create WordPress loop, to populate content from your site. After you build "
|
894 |
+
"the query, make sure you choose the right taxonomy below to display for your "
|
895 |
+
"posts and filter on, based on the post type selected during build query."
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:328
|
899 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:233
|
900 |
+
msgid "Link Images to Posts?"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:335
|
904 |
+
msgid "Choose the taxonomy to display and filter on."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:336
|
908 |
+
msgid ""
|
909 |
+
"Choose the taxonomy information to display for posts/portfolio and the "
|
910 |
+
"taxonomy that is used to filter the portfolio/post. Takes effect only if no "
|
911 |
+
"query category/tag/taxonomy filters are specified when building query."
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:345
|
915 |
+
msgid "Display posts title below the post/portfolio item?"
|
|
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:347
|
919 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:355
|
920 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:363
|
921 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:372
|
922 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:380
|
923 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:244
|
924 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:252
|
925 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:260
|
926 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:268
|
927 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:277
|
928 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:285
|
929 |
+
msgid "Post Info"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:353
|
933 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:258
|
934 |
+
msgid "Display post author info below the post item?"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:361
|
938 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:266
|
939 |
+
msgid "Display post date info below the post item?"
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:370
|
943 |
+
msgid "Display taxonomy info below the post/portfolio item?"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:378
|
947 |
+
msgid "Display post excerpt/summary below the post/portfolio item?"
|
948 |
+
msgstr ""
|
949 |
+
|
950 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:389
|
951 |
+
msgid "Filterable?"
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:397
|
955 |
msgid "Choose a layout for the portfolio/blog"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:399
|
959 |
msgid "Fit Rows"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:400
|
963 |
msgid "Masonry"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:419
|
967 |
#: includes/mapper-functions.php:35 includes/mapper-functions.php:64
|
968 |
#: includes/mapper-functions.php:103
|
969 |
msgid "Gutter"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:420
|
973 |
#: includes/mapper-functions.php:36 includes/mapper-functions.php:65
|
974 |
#: includes/mapper-functions.php:104
|
975 |
msgid "Space between columns."
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:431
|
979 |
msgid "Gutter in Tablets"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:432
|
983 |
msgid "Space between columns in tablets."
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:440
|
987 |
#: includes/addons/spacer/class-lvca-spacer.php:90
|
988 |
msgid "Tablet Resolution"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:441
|
992 |
#: includes/mapper-functions.php:74
|
993 |
msgid "The resolution to treat as a tablet resolution."
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:450
|
997 |
msgid "Gutter in Mobiles"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:451
|
1001 |
msgid "Space between columns in mobiles."
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:459
|
1005 |
#: includes/addons/spacer/class-lvca-spacer.php:114
|
1006 |
+
#: includes/addons/tabs/class-lvca-tabs.php:274
|
1007 |
msgid "Mobile Resolution"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:460
|
1011 |
#: includes/mapper-functions.php:113
|
1012 |
msgid "The resolution to treat as a mobile resolution."
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:471
|
1016 |
+
msgid "Livemesh Grid"
|
1017 |
+
msgstr ""
|
1018 |
+
|
1019 |
+
#: includes/addons/portfolio/class-lvca-portfolio.php:476
|
1020 |
+
msgid "Display work or posts with a filterable grid."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:226
|
1024 |
+
msgid "Create WordPress loop, to populate content from your site."
|
1025 |
+
msgstr ""
|
1026 |
+
|
1027 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:240
|
1028 |
+
msgid "Choose the taxonomy to display info."
|
1029 |
+
msgstr ""
|
1030 |
+
|
1031 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:241
|
1032 |
+
msgid ""
|
1033 |
+
"Choose the taxonomy to use for display of taxonomy information for posts/"
|
1034 |
+
"custom post types."
|
1035 |
+
msgstr ""
|
1036 |
+
|
1037 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:250
|
1038 |
+
msgid "Display posts title below the post item?"
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:275
|
1042 |
+
msgid "Display taxonomy info below the post item?"
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:283
|
1046 |
+
msgid "Display post excerpt/summary below the post item?"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:295
|
1050 |
msgid "Livemesh Posts Carousel"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: includes/addons/posts-carousel/class-lvca-posts-carousel.php:300
|
1054 |
msgid "Display posts or post types as a carousel."
|
1055 |
msgstr ""
|
1056 |
|
1149 |
msgid "Open Button URL in a new window"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: includes/addons/services/class-lvca-services.php:148
|
1153 |
msgid "Livemesh Services"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: includes/addons/services/class-lvca-services.php:155
|
1157 |
msgid "Display services in a column grid."
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: includes/addons/services/class-lvca-services.php:164
|
1161 |
msgid "Choose the particular style of services you need"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: includes/addons/services/class-lvca-services.php:180
|
1165 |
msgid "The number of columns to display per row of the services"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: includes/addons/services/class-lvca-services.php:193
|
1169 |
msgid "Livemesh Service"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: includes/addons/services/class-lvca-services.php:205
|
1173 |
msgid "Title of the service."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: includes/addons/services/class-lvca-services.php:222
|
1177 |
msgid "Service Image."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: includes/addons/services/class-lvca-services.php:329
|
1181 |
+
msgid "Service description"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: includes/addons/services/class-lvca-services.php:330
|
1185 |
msgid "Provide a short description for the service"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: includes/addons/services/class-lvca-services.php:336
|
1189 |
+
msgid ""
|
1190 |
+
"Short description (field will be removed in future - move text to Service "
|
1191 |
+
"description)"
|
1192 |
+
msgstr ""
|
1193 |
+
|
1194 |
+
#: includes/addons/services/class-lvca-services.php:337
|
1195 |
+
msgid "Provide a short description for the service "
|
1196 |
+
msgstr ""
|
1197 |
+
|
1198 |
+
#: includes/addons/services/class-lvca-services.php:338
|
1199 |
+
msgid "Deprecated"
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
#: includes/addons/spacer/class-lvca-spacer.php:66
|
1203 |
msgid "Livemesh Spacer"
|
1204 |
msgstr ""
|
1268 |
msgid "The percentage value for the stats."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: includes/addons/tabs/class-lvca-tabs.php:228
|
1272 |
+
msgid "Livemesh Tabs"
|
1273 |
+
msgstr ""
|
1274 |
+
|
1275 |
+
#: includes/addons/tabs/class-lvca-tabs.php:235
|
1276 |
+
msgid "Display tabbed content in variety of styles."
|
1277 |
+
msgstr ""
|
1278 |
+
|
1279 |
+
#: includes/addons/tabs/class-lvca-tabs.php:243
|
1280 |
+
msgid "Choose Tab Style"
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: includes/addons/tabs/class-lvca-tabs.php:244
|
1284 |
+
msgid "Choose the particular style of tabs you need"
|
1285 |
+
msgstr ""
|
1286 |
+
|
1287 |
+
#: includes/addons/tabs/class-lvca-tabs.php:249
|
1288 |
+
msgid "Style 4"
|
1289 |
+
msgstr ""
|
1290 |
+
|
1291 |
+
#: includes/addons/tabs/class-lvca-tabs.php:250
|
1292 |
+
msgid "Style 5"
|
1293 |
+
msgstr ""
|
1294 |
+
|
1295 |
+
#: includes/addons/tabs/class-lvca-tabs.php:251
|
1296 |
+
msgid "Style 6"
|
1297 |
+
msgstr ""
|
1298 |
+
|
1299 |
+
#: includes/addons/tabs/class-lvca-tabs.php:252
|
1300 |
+
msgid "Vertical Style 1"
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: includes/addons/tabs/class-lvca-tabs.php:253
|
1304 |
+
msgid "Vertical Style 2"
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: includes/addons/tabs/class-lvca-tabs.php:254
|
1308 |
+
msgid "Vertical Style 3"
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: includes/addons/tabs/class-lvca-tabs.php:255
|
1312 |
+
msgid "Vertical Style 4"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: includes/addons/tabs/class-lvca-tabs.php:264
|
1316 |
+
msgid "Tab Highlight color"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: includes/addons/tabs/class-lvca-tabs.php:275
|
1320 |
+
msgid ""
|
1321 |
+
"The resolution to treat as a mobile resolution for invoking responsive tabs."
|
1322 |
+
msgstr ""
|
1323 |
+
|
1324 |
+
#: includes/addons/tabs/class-lvca-tabs.php:293
|
1325 |
+
msgid "Livemesh Tab"
|
1326 |
+
msgstr ""
|
1327 |
+
|
1328 |
+
#: includes/addons/tabs/class-lvca-tabs.php:304
|
1329 |
+
msgid "Tab Title"
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: includes/addons/tabs/class-lvca-tabs.php:305
|
1333 |
+
msgid "The title for the tab shown as name for tab navigation."
|
1334 |
+
msgstr ""
|
1335 |
+
|
1336 |
+
#: includes/addons/tabs/class-lvca-tabs.php:311
|
1337 |
+
msgid "Choose Tab Icon Type or None"
|
1338 |
+
msgstr ""
|
1339 |
+
|
1340 |
+
#: includes/addons/tabs/class-lvca-tabs.php:312
|
1341 |
+
msgid "Some styles may ignore icons chosen."
|
1342 |
+
msgstr ""
|
1343 |
+
|
1344 |
+
#: includes/addons/tabs/class-lvca-tabs.php:315
|
1345 |
+
msgid "None"
|
1346 |
+
msgstr ""
|
1347 |
+
|
1348 |
+
#: includes/addons/tabs/class-lvca-tabs.php:324
|
1349 |
+
msgid "Tab Image."
|
1350 |
+
msgstr ""
|
1351 |
+
|
1352 |
+
#: includes/addons/tabs/class-lvca-tabs.php:345
|
1353 |
+
msgid "Tab Icon"
|
1354 |
+
msgstr ""
|
1355 |
+
|
1356 |
+
#: includes/addons/tabs/class-lvca-tabs.php:431
|
1357 |
+
msgid "Tab Content"
|
1358 |
+
msgstr ""
|
1359 |
+
|
1360 |
+
#: includes/addons/tabs/class-lvca-tabs.php:432
|
1361 |
+
msgid "The content of the tab."
|
1362 |
+
msgstr ""
|
1363 |
+
|
1364 |
#: includes/addons/team/class-lvca-team.php:159
|
1365 |
msgid "Livemesh Team"
|
1366 |
msgstr ""
|
1488 |
msgid "URL of the Instagram feed for the team member."
|
1489 |
msgstr ""
|
1490 |
|
|
|
|
|
|
|
|
|
1491 |
#: includes/addons/team/social-profile.php:14
|
1492 |
msgid "Follow on Facebook"
|
1493 |
msgstr ""
|
1516 |
msgid "View Dribbble Portfolio"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:142
|
1520 |
msgid "Livemesh Testimonials Slider"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:149
|
1524 |
msgid "Capture client testimonials in a slider."
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:157
|
1528 |
msgid "Slideshow speed"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:164
|
1532 |
msgid "Animation Speed"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:171
|
1536 |
msgid "Pause slider on action."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:172
|
1540 |
msgid ""
|
1541 |
"Should the slideshow pause once user initiates an action using navigation/"
|
1542 |
"direction controls."
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:179
|
1546 |
#: includes/mapper-functions.php:175
|
1547 |
msgid "Pause on Hover"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:180
|
1551 |
#: includes/mapper-functions.php:176
|
1552 |
msgid "Should the slider pause on mouse hover over the slider."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:187
|
1556 |
msgid "Direction Navigation"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:188
|
1560 |
msgid "Should the slider have direction navigation."
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:195
|
1564 |
msgid "Navigation Controls"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:196
|
1568 |
msgid "Should the slider have navigation controls."
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:210
|
1572 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:218
|
1573 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:155
|
1574 |
msgid "Testimonials"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: includes/addons/testimonials-slider/class-lvca-testimonials-slider.php:213
|
1578 |
msgid "Livemesh Testimonial Slide"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:118
|
1582 |
msgid "Livemesh Testimonials"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:125
|
1586 |
msgid "Display testimonials in a multi-column grid."
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:137
|
1590 |
msgid ""
|
1591 |
"The number of testimonials members to display per row of the testimonials"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:150
|
1595 |
msgid "Livemesh Testimonial"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:163
|
1599 |
msgid "The author of the testimonial"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:168
|
1603 |
msgid "Author Details"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:169
|
1607 |
msgid ""
|
1608 |
+
"The details of the author like company name, position held, company URL etc."
|
|
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:175
|
1612 |
msgid "Author Image"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:180
|
1616 |
msgid "Text"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: includes/addons/testimonials/class-lvca-testimonials.php:181
|
1620 |
msgid "What your client/customer has to say"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: includes/helper-functions.php:138
|
1624 |
+
msgid "M d, Y"
|
1625 |
+
msgstr ""
|
1626 |
+
|
1627 |
+
#: includes/helper-functions.php:140 includes/helper-functions.php:144
|
1628 |
+
msgid "l, F, Y, g:i a"
|
1629 |
+
msgstr ""
|
1630 |
+
|
1631 |
+
#: includes/helper-functions.php:144
|
1632 |
+
msgid "Y"
|
1633 |
+
msgstr ""
|
1634 |
+
|
1635 |
+
#: includes/helper-functions.php:144
|
1636 |
+
msgid "m"
|
1637 |
+
msgstr ""
|
1638 |
+
|
1639 |
+
#: includes/helper-functions.php:144
|
1640 |
+
msgid "d"
|
1641 |
+
msgstr ""
|
1642 |
+
|
1643 |
+
#: includes/helper-functions.php:153
|
1644 |
+
msgid "By "
|
1645 |
+
msgstr ""
|
1646 |
+
|
1647 |
+
#: includes/helper-functions.php:175
|
1648 |
msgid "All"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: includes/helper-functions.php:180
|
1652 |
msgid "View all items filed under "
|
1653 |
msgstr ""
|
1654 |
|
1704 |
msgid "Cheatin’ huh?"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: livemesh-vc-addons.php:336
|
1708 |
msgid ""
|
1709 |
"Indicate if this row has a dark background color. Dark color scheme will be "
|
1710 |
"applied for all elements in this row."
|
livemesh-vc-addons.php
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Addons for Visual Composer
|
4 |
-
* Plugin URI:
|
5 |
* Description: A collection of premium quality addons or extensions for use in Visual Composer page builder. Visual composer must be installed and activated.
|
6 |
* Author: Livemesh
|
7 |
-
* Author URI:
|
8 |
* License: GPL3
|
9 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
10 |
-
* Version: 1.
|
11 |
* Text Domain: livemesh-vc-addons
|
12 |
* Domain Path: languages
|
13 |
*
|
@@ -30,8 +30,6 @@
|
|
30 |
if (!defined('ABSPATH'))
|
31 |
exit;
|
32 |
|
33 |
-
define('LVCA_BUNDLE_JS_SUFFIX', '.min');
|
34 |
-
|
35 |
if (!class_exists('Livemesh_VC_Addons')) :
|
36 |
|
37 |
/**
|
@@ -61,7 +59,7 @@ if (!class_exists('Livemesh_VC_Addons')) :
|
|
61 |
|
62 |
add_action('plugins_loaded', array(self::$instance, 'includes'));
|
63 |
|
64 |
-
add_action('plugins_loaded', array(self::$instance, '
|
65 |
|
66 |
self::$instance->hooks();
|
67 |
|
@@ -97,7 +95,7 @@ if (!class_exists('Livemesh_VC_Addons')) :
|
|
97 |
|
98 |
// Plugin version
|
99 |
if (!defined('LVCA_VERSION')) {
|
100 |
-
define('LVCA_VERSION', '1.
|
101 |
}
|
102 |
|
103 |
// Plugin Folder Path
|
@@ -119,6 +117,36 @@ if (!class_exists('Livemesh_VC_Addons')) :
|
|
119 |
if (!defined('LVCA_PLUGIN_FILE')) {
|
120 |
define('LVCA_PLUGIN_FILE', __FILE__);
|
121 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
}
|
123 |
|
124 |
/**
|
@@ -127,54 +155,89 @@ if (!class_exists('Livemesh_VC_Addons')) :
|
|
127 |
*/
|
128 |
public function includes() {
|
129 |
|
|
|
|
|
|
|
130 |
require_once LVCA_PLUGIN_DIR . 'includes/helper-functions.php';
|
131 |
require_once LVCA_PLUGIN_DIR . 'includes/mapper-functions.php';
|
132 |
|
133 |
-
|
134 |
-
require_once LVCA_ADDONS_DIR . 'carousel/class-lvca-carousel.php';
|
135 |
-
require_once LVCA_ADDONS_DIR . 'clients/class-lvca-clients.php';
|
136 |
-
require_once LVCA_ADDONS_DIR . 'heading/class-lvca-heading.php';
|
137 |
-
require_once LVCA_ADDONS_DIR . 'spacer/class-lvca-spacer.php';
|
138 |
-
require_once LVCA_ADDONS_DIR . 'odometers/class-lvca-odometers.php';
|
139 |
-
require_once LVCA_ADDONS_DIR . 'piecharts/class-lvca-piecharts.php';
|
140 |
-
require_once LVCA_ADDONS_DIR . 'portfolio/class-lvca-portfolio.php';
|
141 |
-
require_once LVCA_ADDONS_DIR . 'posts-carousel/class-lvca-posts-carousel.php';
|
142 |
-
require_once LVCA_ADDONS_DIR . 'pricing-table/class-lvca-pricing-table.php';
|
143 |
-
require_once LVCA_ADDONS_DIR . 'services/class-lvca-services.php';
|
144 |
-
require_once LVCA_ADDONS_DIR . 'stats-bar/class-lvca-stats-bar.php';
|
145 |
-
require_once LVCA_ADDONS_DIR . 'tabs/class-lvca-tabs.php';
|
146 |
-
require_once LVCA_ADDONS_DIR . 'team/class-lvca-team.php';
|
147 |
-
require_once LVCA_ADDONS_DIR . 'testimonials/class-lvca-testimonials.php';
|
148 |
-
require_once LVCA_ADDONS_DIR . 'testimonials-slider/class-lvca-testimonials-slider.php';
|
149 |
-
|
150 |
-
|
151 |
require_once LVCA_PLUGIN_DIR . 'includes/params/number/class-lvca-number-param.php';
|
152 |
|
153 |
}
|
154 |
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
|
179 |
}
|
180 |
|
@@ -212,9 +275,9 @@ if (!class_exists('Livemesh_VC_Addons')) :
|
|
212 |
*/
|
213 |
private function hooks() {
|
214 |
|
215 |
-
add_action('
|
216 |
|
217 |
-
add_action('wp_enqueue_scripts', array($this, '
|
218 |
|
219 |
add_action('init', array($this, 'modify_existing_mappings'), 100);
|
220 |
|
@@ -231,30 +294,33 @@ if (!class_exists('Livemesh_VC_Addons')) :
|
|
231 |
public function load_frontend_scripts() {
|
232 |
|
233 |
|
|
|
|
|
|
|
234 |
wp_register_style('lvca-frontend-styles', LVCA_PLUGIN_URL . 'assets/css/lvca-frontend.css', array(), LVCA_VERSION);
|
235 |
wp_enqueue_style('lvca-frontend-styles');
|
236 |
|
237 |
wp_register_style('lvca-icomoon-styles', LVCA_PLUGIN_URL . 'assets/css/icomoon.css', array(), LVCA_VERSION);
|
238 |
wp_enqueue_style('lvca-icomoon-styles');
|
239 |
|
240 |
-
|
|
|
|
|
|
|
|
|
|
|
241 |
wp_enqueue_script('lvca-frontend-scripts');
|
242 |
|
243 |
}
|
244 |
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
*/
|
249 |
-
public function load_admin_scripts() {
|
250 |
|
251 |
-
|
252 |
-
wp_enqueue_style('lvca-admin-styles');
|
253 |
|
254 |
-
|
255 |
-
wp_enqueue_script('lvca-admin-scripts');
|
256 |
|
257 |
-
wp_enqueue_script('jquery-ui-datepicker');
|
258 |
}
|
259 |
|
260 |
/**
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Addons for Visual Composer
|
4 |
+
* Plugin URI: https://www.livemeshthemes.com/visual-composer-addons
|
5 |
* Description: A collection of premium quality addons or extensions for use in Visual Composer page builder. Visual composer must be installed and activated.
|
6 |
* Author: Livemesh
|
7 |
+
* Author URI: https://www.livemeshthemes.com/
|
8 |
* License: GPL3
|
9 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
10 |
+
* Version: 1.5
|
11 |
* Text Domain: livemesh-vc-addons
|
12 |
* Domain Path: languages
|
13 |
*
|
30 |
if (!defined('ABSPATH'))
|
31 |
exit;
|
32 |
|
|
|
|
|
33 |
if (!class_exists('Livemesh_VC_Addons')) :
|
34 |
|
35 |
/**
|
59 |
|
60 |
add_action('plugins_loaded', array(self::$instance, 'includes'));
|
61 |
|
62 |
+
add_action('plugins_loaded', array(self::$instance, 'include_elements'));
|
63 |
|
64 |
self::$instance->hooks();
|
65 |
|
95 |
|
96 |
// Plugin version
|
97 |
if (!defined('LVCA_VERSION')) {
|
98 |
+
define('LVCA_VERSION', '1.5');
|
99 |
}
|
100 |
|
101 |
// Plugin Folder Path
|
117 |
if (!defined('LVCA_PLUGIN_FILE')) {
|
118 |
define('LVCA_PLUGIN_FILE', __FILE__);
|
119 |
}
|
120 |
+
|
121 |
+
// Plugin Help Page URL
|
122 |
+
if (!defined('LVCA_PLUGIN_HELP_URL')) {
|
123 |
+
define('LVCA_PLUGIN_HELP_URL', admin_url() . 'admin.php?page=livemesh_vc_addons_documentation');
|
124 |
+
}
|
125 |
+
|
126 |
+
$this->setup_debug_constants();
|
127 |
+
}
|
128 |
+
|
129 |
+
private function setup_debug_constants() {
|
130 |
+
|
131 |
+
$enable_debug = false;
|
132 |
+
|
133 |
+
$settings = get_option('lvca_settings');
|
134 |
+
|
135 |
+
if ($settings && isset($settings['lvca_enable_debug']) && $settings['lvca_enable_debug'] == "true")
|
136 |
+
$enable_debug = true;
|
137 |
+
|
138 |
+
// Enable script debugging
|
139 |
+
if (!defined('LVCA_SCRIPT_DEBUG')) {
|
140 |
+
define('LVCA_SCRIPT_DEBUG', $enable_debug);
|
141 |
+
}
|
142 |
+
|
143 |
+
// Minified JS file name suffix
|
144 |
+
if (!defined('LVCA_JS_SUFFIX')) {
|
145 |
+
if ($enable_debug)
|
146 |
+
define('LVCA_JS_SUFFIX', '');
|
147 |
+
else
|
148 |
+
define('LVCA_JS_SUFFIX', '.min');
|
149 |
+
}
|
150 |
}
|
151 |
|
152 |
/**
|
155 |
*/
|
156 |
public function includes() {
|
157 |
|
158 |
+
if (is_admin()) {
|
159 |
+
require_once LVCA_PLUGIN_DIR . 'admin/admin-init.php';
|
160 |
+
}
|
161 |
require_once LVCA_PLUGIN_DIR . 'includes/helper-functions.php';
|
162 |
require_once LVCA_PLUGIN_DIR . 'includes/mapper-functions.php';
|
163 |
|
164 |
+
/* Load VC Field Types */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
165 |
require_once LVCA_PLUGIN_DIR . 'includes/params/number/class-lvca-number-param.php';
|
166 |
|
167 |
}
|
168 |
|
169 |
+
/**
|
170 |
+
* Include required files
|
171 |
+
*
|
172 |
+
*/
|
173 |
+
public function include_elements() {
|
174 |
+
|
175 |
+
/* Load VC Addon Elements */
|
176 |
+
|
177 |
+
$deactivate_element_accordion = lvca_get_option('lvca_deactivate_element_accordion', false);
|
178 |
+
if (!$deactivate_element_accordion)
|
179 |
+
require_once LVCA_ADDONS_DIR . 'accordion/class-lvca-accordion.php';
|
180 |
+
|
181 |
+
$deactivate_element_carousel = lvca_get_option('lvca_deactivate_element_carousel', false);
|
182 |
+
if (!$deactivate_element_carousel)
|
183 |
+
require_once LVCA_ADDONS_DIR . 'carousel/class-lvca-carousel.php';
|
184 |
+
|
185 |
+
$deactivate_element_clients = lvca_get_option('lvca_deactivate_element_clients', false);
|
186 |
+
if (!$deactivate_element_clients)
|
187 |
+
require_once LVCA_ADDONS_DIR . 'clients/class-lvca-clients.php';
|
188 |
+
|
189 |
+
$deactivate_element_heading = lvca_get_option('lvca_deactivate_element_heading', false);
|
190 |
+
if (!$deactivate_element_heading)
|
191 |
+
require_once LVCA_ADDONS_DIR . 'heading/class-lvca-heading.php';
|
192 |
+
|
193 |
+
$deactivate_element_odometers = lvca_get_option('lvca_deactivate_element_odometers', false);
|
194 |
+
if (!$deactivate_element_odometers)
|
195 |
+
require_once LVCA_ADDONS_DIR . 'odometers/class-lvca-odometers.php';
|
196 |
+
|
197 |
+
$deactivate_element_piecharts = lvca_get_option('lvca_deactivate_element_piecharts', false);
|
198 |
+
if (!$deactivate_element_piecharts)
|
199 |
+
require_once LVCA_ADDONS_DIR . 'piecharts/class-lvca-piecharts.php';
|
200 |
+
|
201 |
+
$deactivate_element_portfolio = lvca_get_option('lvca_deactivate_element_portfolio', false);
|
202 |
+
if (!$deactivate_element_portfolio)
|
203 |
+
require_once LVCA_ADDONS_DIR . 'portfolio/class-lvca-portfolio.php';
|
204 |
+
|
205 |
+
$deactivate_element_posts_carousel = lvca_get_option('lvca_deactivate_element_posts_carousel', false);
|
206 |
+
if (!$deactivate_element_posts_carousel)
|
207 |
+
require_once LVCA_ADDONS_DIR . 'posts-carousel/class-lvca-posts-carousel.php';
|
208 |
+
|
209 |
+
$deactivate_element_pricing_table = lvca_get_option('lvca_deactivate_element_pricing_table', false);
|
210 |
+
if (!$deactivate_element_pricing_table)
|
211 |
+
require_once LVCA_ADDONS_DIR . 'pricing-table/class-lvca-pricing-table.php';
|
212 |
+
|
213 |
+
$deactivate_element_spacer = lvca_get_option('lvca_deactivate_element_spacer', false);
|
214 |
+
if (!$deactivate_element_spacer)
|
215 |
+
require_once LVCA_ADDONS_DIR . 'spacer/class-lvca-spacer.php';
|
216 |
+
|
217 |
+
$deactivate_element_services = lvca_get_option('lvca_deactivate_element_services', false);
|
218 |
+
if (!$deactivate_element_services)
|
219 |
+
require_once LVCA_ADDONS_DIR . 'services/class-lvca-services.php';
|
220 |
+
|
221 |
+
$deactivate_element_stats_bar = lvca_get_option('lvca_deactivate_element_stats_bar', false);
|
222 |
+
if (!$deactivate_element_stats_bar)
|
223 |
+
require_once LVCA_ADDONS_DIR . 'stats-bar/class-lvca-stats-bar.php';
|
224 |
+
|
225 |
+
$deactivate_element_tabs = lvca_get_option('lvca_deactivate_element_tabs', false);
|
226 |
+
if (!$deactivate_element_tabs)
|
227 |
+
require_once LVCA_ADDONS_DIR . 'tabs/class-lvca-tabs.php';
|
228 |
+
|
229 |
+
$deactivate_element_team = lvca_get_option('lvca_deactivate_element_team', false);
|
230 |
+
if (!$deactivate_element_team)
|
231 |
+
require_once LVCA_ADDONS_DIR . 'team/class-lvca-team.php';
|
232 |
+
|
233 |
+
$deactivate_element_testimonials = lvca_get_option('lvca_deactivate_element_testimonials', false);
|
234 |
+
if (!$deactivate_element_testimonials)
|
235 |
+
require_once LVCA_ADDONS_DIR . 'testimonials/class-lvca-testimonials.php';
|
236 |
+
|
237 |
+
$deactivate_element_testimonials_slider = lvca_get_option('lvca_deactivate_element_testimonials_slider', false);
|
238 |
+
if (!$deactivate_element_testimonials_slider)
|
239 |
+
require_once LVCA_ADDONS_DIR . 'testimonials-slider/class-lvca-testimonials-slider.php';
|
240 |
+
|
241 |
|
242 |
}
|
243 |
|
275 |
*/
|
276 |
private function hooks() {
|
277 |
|
278 |
+
add_action('wp_enqueue_scripts', array($this, 'load_frontend_scripts'), 12);
|
279 |
|
280 |
+
add_action('wp_enqueue_scripts', array($this, 'localize_scripts'), 999999);
|
281 |
|
282 |
add_action('init', array($this, 'modify_existing_mappings'), 100);
|
283 |
|
294 |
public function load_frontend_scripts() {
|
295 |
|
296 |
|
297 |
+
// Use minified libraries if LVCA_SCRIPT_DEBUG is turned off
|
298 |
+
$suffix = (defined('LVCA_SCRIPT_DEBUG') && LVCA_SCRIPT_DEBUG) ? '' : '.min';
|
299 |
+
|
300 |
wp_register_style('lvca-frontend-styles', LVCA_PLUGIN_URL . 'assets/css/lvca-frontend.css', array(), LVCA_VERSION);
|
301 |
wp_enqueue_style('lvca-frontend-styles');
|
302 |
|
303 |
wp_register_style('lvca-icomoon-styles', LVCA_PLUGIN_URL . 'assets/css/icomoon.css', array(), LVCA_VERSION);
|
304 |
wp_enqueue_style('lvca-icomoon-styles');
|
305 |
|
306 |
+
wp_enqueue_script('waypoints'); // provided by VC itself
|
307 |
+
|
308 |
+
wp_register_script('lvca-modernizr', LVCA_PLUGIN_URL . 'assets/js/modernizr-custom' . $suffix . '.js', array(), LVCA_VERSION, true);
|
309 |
+
wp_enqueue_script('lvca-modernizr');
|
310 |
+
|
311 |
+
wp_register_script('lvca-frontend-scripts', LVCA_PLUGIN_URL . 'assets/js/lvca-frontend' . LVCA_JS_SUFFIX . '.js', array(), LVCA_VERSION, true);
|
312 |
wp_enqueue_script('lvca-frontend-scripts');
|
313 |
|
314 |
}
|
315 |
|
316 |
+
public function localize_scripts() {
|
317 |
+
|
318 |
+
$panels_mobile_width = 780; // default
|
|
|
|
|
319 |
|
320 |
+
$custom_css = lvca_get_option('lvca_custom_css', '');
|
|
|
321 |
|
322 |
+
wp_localize_script('lvca-frontend-scripts', 'lvca_settings', array('mobile_width' => $panels_mobile_width, 'custom_css' => $custom_css));
|
|
|
323 |
|
|
|
324 |
}
|
325 |
|
326 |
/**
|
readme.txt
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
=== Addons for Visual Composer ===
|
2 |
-
Author URI:
|
3 |
-
Plugin URI:
|
4 |
Contributors: livemesh
|
5 |
-
Tags: visual composer, visual composer addons, vc addons, visual composer extensions, vc extensions, page builder, portfolio, carousel,
|
6 |
-
Requires at least: 4.
|
7 |
-
Tested up to: 4.
|
8 |
-
Stable Tag: 1.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html-func
|
11 |
|
@@ -13,36 +13,59 @@ A collection of premium quality addons or extensions for Visual Composer page bu
|
|
13 |
|
14 |
== Description ==
|
15 |
|
16 |
-
Addons for Visual Composer features professional looking, easy to use yet highly functional extensions that can be used in a WPBakery Visual Composer page builder.
|
17 |
|
18 |
-
|
19 |
|
20 |
-
|
21 |
|
22 |
-
|
|
|
|
|
23 |
|
24 |
The plugin comes with the following VC addons or extensions. <strong>Almost all of the elements come with a dark version.</strong> -
|
25 |
|
26 |
<ul>
|
27 |
-
<li>Services that capture what you can offer for your clients/customers.</li>
|
28 |
-
<li>Responsive Tabs that function seamlessly across all devices and resolutions.</li>
|
29 |
-
<li>Accordion/Toggle that capture collapsible content panels when space is limited.</li>
|
30 |
<li>Heading styles to capture effective headings for your page sections.</li>
|
31 |
-
<li>
|
32 |
-
<li>
|
33 |
-
<li
|
34 |
-
<li>
|
35 |
-
<li>
|
36 |
-
<li
|
37 |
-
<li>
|
38 |
-
<li
|
|
|
|
|
39 |
<li>Spacer element that displays lets you set space between elements and vary the spacing across device resolutions.</li>
|
40 |
-
<li
|
41 |
-
<li
|
42 |
-
|
43 |
-
</
|
44 |
|
45 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
|
47 |
Do you have suggestions to make or want to be notified of important updates? Reach out to us on Twitter -
|
48 |
http://twitter.com/live_mesh
|
@@ -51,7 +74,7 @@ http://twitter.com/live_mesh
|
|
51 |
|
52 |
1. Install and activate the Visual Composer page builder.
|
53 |
2. Unzip the downloaded livemesh-vc-addons.zip file and upload to the `/wp-content/plugins/` directory or install the Visual Composer Addons by Livemesh plugin from WordPress repository. Activate the plugin through the 'Plugins' menu in WordPress.
|
54 |
-
4. For Portfolio element, install and activate the <strong>optional plugin</strong> <a href="https://wordpress.org/plugins/
|
55 |
|
56 |
Optionally, you can import the sample data that replicates the demo site for you by importing the file sample-data.xml file located in the plugin directory. The import option is available under Tools > Import in WordPress admin.
|
57 |
|
@@ -59,7 +82,7 @@ Optionally, you can import the sample data that replicates the demo site for you
|
|
59 |
|
60 |
= Does it work with the theme that I am using? =
|
61 |
|
62 |
-
Our tests indicate that the
|
63 |
|
64 |
Some themes override default templates provided by Visual Composer. The themes that override VC Row template may require you to manually set the attributes required for the dark version (see below).
|
65 |
|
@@ -73,7 +96,7 @@ For themes that override the VC row template with one of their own, you may need
|
|
73 |
|
74 |
= My portfolio does not show any items. =
|
75 |
|
76 |
-
Pls install and activate
|
77 |
|
78 |
== Screenshots ==
|
79 |
1. The plugin Addons for Visual Composer tab in Visual Composer Add Element window.
|
@@ -82,6 +105,15 @@ Pls install and activate Jetpack plugin, activate the Custom Post Types module a
|
|
82 |
|
83 |
== Changelog ==
|
84 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
= 1.4 =
|
86 |
* Added - Left, right and center alignment option to the heading element
|
87 |
* Added - Styling for services when font icons are chosen instead of image icons
|
1 |
=== Addons for Visual Composer ===
|
2 |
+
Author URI: https://www.livemeshthemes.com/
|
3 |
+
Plugin URI: https://www.livemeshthemes.com/visual-composer-addons
|
4 |
Contributors: livemesh
|
5 |
+
Tags: visual composer, visual composer addons, vc addons, visual composer extensions, vc extensions, page builder, portfolio, carousel, post, posts, shortcodes, tabs, admin, plugin, page
|
6 |
+
Requires at least: 4.3
|
7 |
+
Tested up to: 4.8
|
8 |
+
Stable Tag: 1.5
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html-func
|
11 |
|
13 |
|
14 |
== Description ==
|
15 |
|
16 |
+
Addons for Visual Composer features professional looking, easy to use yet highly functional extensions that can be used in a WPBakery Visual Composer page builder. This is really a premium plugin that you can get for free.
|
17 |
|
18 |
+
This plugin comes with widgets for just about everything you need to build a professional website without switching to a premium theme - services, team profiles, counters, bar charts, piecharts, testimonials, clients list, portfolio/posts grid, posts carousels, varieties of tabs, accordions or toggles, pricing plan and much more in the <a href="https://www.livemeshthemes.com/visual-composer-addons" title="Addons for Visual Composer Premium Version">PRO version</a>. All the addons that help turn your free theme into a premium one with just a few clicks. Every premium page builder element you need is available for easy drag and drop into your page by just activating this plugin.
|
19 |
|
20 |
+
Visual Composer plugin must be installed and activated to use this plugin. After you activate the required plugins, the elements should be available for use in Visual Composer.
|
21 |
|
22 |
+
See the all of addon elements in action here -
|
23 |
+
|
24 |
+
<a href="https://www.livemeshthemes.com/visual-composer-addons/addons-demo#demo-section" title="Addons for Visual Composer Demo Site"><strong>LIVE DEMO</strong></a> | <a href="https://www.livemeshthemes.com/visual-composer-addons/pricing/" title="Addons for Visual Composer Premium Version"><strong>PRO Version</strong></a>.
|
25 |
|
26 |
The plugin comes with the following VC addons or extensions. <strong>Almost all of the elements come with a dark version.</strong> -
|
27 |
|
28 |
<ul>
|
29 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/services/" title="Services Extension">Services</a> that capture what you can offer for your clients/customers.</li>
|
30 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/tabs/" title="Responsive Tabs Addon">Responsive Tabs</a> that function seamlessly across all devices and resolutions.</li>
|
31 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/accordions/" title="Accordion Extension">Accordion/Toggle</a> that capture collapsible content panels when space is limited.</li>
|
32 |
<li>Heading styles to capture effective headings for your page sections.</li>
|
33 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/portfolio-grid/" title="Portfolio Grid Addon">Portfolio Grid addon</a> that displays portfolio/blog entries in a nice responsive grid. Masonry and packed options are supported.</li>
|
34 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/posts-grid/" title="Posts Grid Extension">Blog Posts Grid</a> that displays portfolio/blog entries in a nice responsive grid. Masonry and packed options are supported.</li>
|
35 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/team-member-profiles/" title="Team Profiles Addon">Team Profiles</a> extension to display all the team members.</li>
|
36 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/odometer-counters/" title="Odometer/Counters Extension">Odometers/Counters</a> to show impressive numbers pertaining to your work or company.</li>
|
37 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/progress-bars/" title="Bar Charts">Bar charts addon</a> to capture skills or any type of percentage stats.</li>
|
38 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/piecharts/" title="Piecharts Extension">Animated Pie charts</a> for visual depiction of percentage stats.</li>
|
39 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/testimonials/" title="Testimonials Addon">Testimonials</a> to tell everyone the good things you often hear from your clients/customers.</li>
|
40 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/testimonial-slider/" title="Testimonial Slider Addon">Testimonials slider</a> is a responsive touch enabled slider that cycles through testimonials.</li>
|
41 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/posts-carousel/" title="Posts Carousel Extension">Post Carousel extension</a> that displays your posts as a highly responsive carousel.</li>
|
42 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/generic-carousel/" title="Generic Carousel Addon">Generic Carousel</a> element that displays lets you present a list of HTML content in a carousel.</li>
|
43 |
<li>Spacer element that displays lets you set space between elements and vary the spacing across device resolutions.</li>
|
44 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/clients-element/" title="Clients List Element">Clients List</a> extension to showcase the clients that you have handled.</li>
|
45 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/pricing-table/" title="Pricing Table Extension">Pricing Plans</a> to help get more sales.</li></ul>
|
46 |
+
|
47 |
+
The <strong><a href="https://www.livemeshthemes.com/visual-composer-addons/" title="Addons for Visual Composer Pro" target="_blank">PRO version</a></strong> of the plugin comes with additional addons and advanced features added to elements above -
|
48 |
|
49 |
+
<ul>
|
50 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/sliders/" title="Image Slider Extension">Image Slider</a> to create a responsive slider of images with support for captions, multiple slider types like Nivo, Flex, Slick and lightweight sliders, thumbnail navigation etc.</li>
|
51 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/image-gallery/" title="Image Gallery Addon">Image Gallery</a> addon that lets you create a grid of images with options for masonry or fit rows, pagination, lazy load, lightbox support etc.</li>
|
52 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/video-gallery/" title="Video Gallery Addon">Video Gallery</a> to build a beautiful grid of videos to help showcase a collection of YouTube/Vimeo videos on your site.</li>
|
53 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/gallery-carousel/" title="Image Carousel">Image Carousel</a> for a responsive carousel of images.</li>
|
54 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/gallery-carousel/" title="Video Carousel">Video Carousel</a> for creation of a responsive carousel of YouTube/Vimeo videos.</li>
|
55 |
+
<li>Countdown extension to display a countdown timer on your site pages such as those that feature events or under construction/coming soon pages.</li>
|
56 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/faq-element/" title="FAQ Element">FAQ element</a> to display a set of Frequently Asked Questions in a page.</li>
|
57 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/features/" title="Features Addon">Features Addon</a> for showcasing product features or services provided by an agency/business.</li>
|
58 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/buttons/" title="Icon Lists and Buttons">Flat style buttons</a> with rich set of customization options.</li>
|
59 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/services-advanced/" title="Advanced Services">Advanced Services</a> with additional styles and animations for services addon.</li>
|
60 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/icon-lists/" title="Icon List element">Icon list addon</a> that lets you use either images or icon fonts to create custom social icons list, capture payment options etc.</li>
|
61 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/portfolio-grid-pro/" title="Livemesh Grid">Lazy Load</a> - The portfolio/post grid and image gallery addons incorporate option to lazy load posts/images with the click of a Load More button.</li>
|
62 |
+
<li><a href="https://www.livemeshthemes.com/visual-composer-addons/portfolio-grid-pro/" title="Livemesh Grid">Pagination</a> - Create a grid of posts or custom post types with AJAX based pagination support. </li>
|
63 |
+
<li>Lightbox Support - The premium version comes with support for Lightbox for grid and carousel addons.</li>
|
64 |
+
<li>Customizations - Ability to choose custom font size, color or hover color for certain addons. More coming.</li>
|
65 |
+
<li>Custom Animations - Choose from over <strong>40+ animations</strong> for most addon elements (excludes sliders, carousels and grid). The animations display on user scrolling to the element or when the element becomes visible in the browser window.</li>
|
66 |
+
<li>Sample Data - Sample data that you can import into your site to get started quickly on the addons and some sample layouts.</li>
|
67 |
+
<li>Premium Support - The customers will be provided access to a dedicated support forum with searchable content, private tickets, with threads attended to within 24 hours.</li>
|
68 |
+
</ul>
|
69 |
|
70 |
Do you have suggestions to make or want to be notified of important updates? Reach out to us on Twitter -
|
71 |
http://twitter.com/live_mesh
|
74 |
|
75 |
1. Install and activate the Visual Composer page builder.
|
76 |
2. Unzip the downloaded livemesh-vc-addons.zip file and upload to the `/wp-content/plugins/` directory or install the Visual Composer Addons by Livemesh plugin from WordPress repository. Activate the plugin through the 'Plugins' menu in WordPress.
|
77 |
+
4. For Portfolio element, install and activate the <strong>optional plugin</strong> <a href="https://wordpress.org/plugins/portfolio-post-type/" title="Portfolio Post Type">Portfolio Post Type plugin</a>. The Portfolio addon can be built using custom post type registered by this plugin.
|
78 |
|
79 |
Optionally, you can import the sample data that replicates the demo site for you by importing the file sample-data.xml file located in the plugin directory. The import option is available under Tools > Import in WordPress admin.
|
80 |
|
82 |
|
83 |
= Does it work with the theme that I am using? =
|
84 |
|
85 |
+
Our tests indicate that the addons work well with most themes that are well coded. You may need some minor custom CSS with themes that hijack the styling for heading tags by using !important keyword.
|
86 |
|
87 |
Some themes override default templates provided by Visual Composer. The themes that override VC Row template may require you to manually set the attributes required for the dark version (see below).
|
88 |
|
96 |
|
97 |
= My portfolio does not show any items. =
|
98 |
|
99 |
+
Pls install and activate the <a href="https://wordpress.org/plugins/portfolio-post-type/" title="Portfolio Post Type">Portfolio Post Type plugin</a> to enable custom post type Portfolio.
|
100 |
|
101 |
== Screenshots ==
|
102 |
1. The plugin Addons for Visual Composer tab in Visual Composer Add Element window.
|
105 |
|
106 |
== Changelog ==
|
107 |
|
108 |
+
= 1.5 =
|
109 |
+
* Added - Detailed documentation for all addon elements
|
110 |
+
* Added - Plugin options panel for enabling or disabling addons along with other options.
|
111 |
+
* Added - Ability to enter Custom CSS in plugin options
|
112 |
+
* Added - Default theme color option for addons
|
113 |
+
* Added - Support for lightweight Portfolio Post Type plugin. Jetpack custom post types module no longer recommended.
|
114 |
+
* Fixed - The grid heading was not being displayed
|
115 |
+
* Some styling improvements and fixes
|
116 |
+
|
117 |
= 1.4 =
|
118 |
* Added - Left, right and center alignment option to the heading element
|
119 |
* Added - Styling for services when font icons are chosen instead of image icons
|
sample-data.xml
DELETED
@@ -1,3518 +0,0 @@
|
|
1 |
-
<?xml version="1.0" encoding="UTF-8" ?>
|
2 |
-
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
|
3 |
-
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
|
4 |
-
<!-- You may use this file to transfer that content from one site to another. -->
|
5 |
-
<!-- This file is not intended to serve as a complete backup of your site. -->
|
6 |
-
|
7 |
-
<!-- To import this information into a WordPress site follow these steps: -->
|
8 |
-
<!-- 1. Log in to that site as an administrator. -->
|
9 |
-
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
|
10 |
-
<!-- 3. Install the "WordPress" importer from the list. -->
|
11 |
-
<!-- 4. Activate & Run Importer. -->
|
12 |
-
<!-- 5. Upload this file using the form provided on that page. -->
|
13 |
-
<!-- 6. You will first be asked to map the authors in this export file to users -->
|
14 |
-
<!-- on the site. For each author, you may choose to map to an -->
|
15 |
-
<!-- existing user on the site or to create a new user. -->
|
16 |
-
<!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
|
17 |
-
<!-- contained in this file into your site. -->
|
18 |
-
|
19 |
-
|
20 |
-
<rss version="2.0"
|
21 |
-
xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
|
22 |
-
xmlns:content="http://purl.org/rss/1.0/modules/content/"
|
23 |
-
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
|
24 |
-
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
25 |
-
xmlns:wp="http://wordpress.org/export/1.2/"
|
26 |
-
>
|
27 |
-
|
28 |
-
<channel>
|
29 |
-
<title>VC Addons</title>
|
30 |
-
<link>http://portfoliotheme.org/visual-composer-addons</link>
|
31 |
-
<description>Demo site for Visual Composer Addons plugin by Livemesh</description>
|
32 |
-
<pubDate>Tue, 08 Mar 2016 03:05:51 +0000</pubDate>
|
33 |
-
<language>en-US</language>
|
34 |
-
<wp:wxr_version>1.2</wp:wxr_version>
|
35 |
-
<wp:base_site_url>http://portfoliotheme.org/</wp:base_site_url>
|
36 |
-
<wp:base_blog_url>http://portfoliotheme.org/visual-composer-addons</wp:base_blog_url>
|
37 |
-
|
38 |
-
<wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[livemesh]]></wp:author_login><wp:author_email><![CDATA[portfoliothemes@gmail.com]]></wp:author_email><wp:author_display_name><![CDATA[Livemesh]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
|
39 |
-
|
40 |
-
<wp:category><wp:term_id>2</wp:term_id><wp:category_nicename><![CDATA[adventure]]></wp:category_nicename><wp:category_parent><![CDATA[]]></wp:category_parent><wp:cat_name><![CDATA[Adventure]]></wp:cat_name></wp:category>
|
41 |
-
<wp:category><wp:term_id>3</wp:term_id><wp:category_nicename><![CDATA[nature]]></wp:category_nicename><wp:category_parent><![CDATA[]]></wp:category_parent><wp:cat_name><![CDATA[Nature]]></wp:cat_name></wp:category>
|
42 |
-
<wp:category><wp:term_id>4</wp:term_id><wp:category_nicename><![CDATA[technology]]></wp:category_nicename><wp:category_parent><![CDATA[]]></wp:category_parent><wp:cat_name><![CDATA[Technology]]></wp:cat_name></wp:category>
|
43 |
-
<wp:category><wp:term_id>5</wp:term_id><wp:category_nicename><![CDATA[tips]]></wp:category_nicename><wp:category_parent><![CDATA[]]></wp:category_parent><wp:cat_name><![CDATA[Tips]]></wp:cat_name></wp:category>
|
44 |
-
<wp:category><wp:term_id>6</wp:term_id><wp:category_nicename><![CDATA[travel]]></wp:category_nicename><wp:category_parent><![CDATA[]]></wp:category_parent><wp:cat_name><![CDATA[Travel]]></wp:cat_name></wp:category>
|
45 |
-
<wp:category><wp:term_id>1</wp:term_id><wp:category_nicename><![CDATA[uncategorized]]></wp:category_nicename><wp:category_parent><![CDATA[]]></wp:category_parent><wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name></wp:category>
|
46 |
-
<wp:term><wp:term_id><![CDATA[7]]></wp:term_id><wp:term_taxonomy><![CDATA[jetpack-portfolio-type]]></wp:term_taxonomy><wp:term_slug><![CDATA[business]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Business]]></wp:term_name></wp:term>
|
47 |
-
<wp:term><wp:term_id><![CDATA[8]]></wp:term_id><wp:term_taxonomy><![CDATA[jetpack-portfolio-type]]></wp:term_taxonomy><wp:term_slug><![CDATA[inspiration]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Inspiration]]></wp:term_name></wp:term>
|
48 |
-
<wp:term><wp:term_id><![CDATA[9]]></wp:term_id><wp:term_taxonomy><![CDATA[jetpack-portfolio-type]]></wp:term_taxonomy><wp:term_slug><![CDATA[just-another]]></wp:term_slug><wp:term_parent><![CDATA[]]></wp:term_parent><wp:term_name><![CDATA[Just another]]></wp:term_name></wp:term>
|
49 |
-
<wp:term><wp:term_id>10</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[home]]></wp:term_slug><wp:term_name><![CDATA[Home]]></wp:term_name></wp:term>
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
<item>
|
54 |
-
<title>alison-light</title>
|
55 |
-
<link>http://portfoliotheme.org/visual-composer-addons/alison-light/</link>
|
56 |
-
<pubDate>Wed, 06 Jan 2016 13:05:55 +0000</pubDate>
|
57 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
58 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/alison-light.png</guid>
|
59 |
-
<description></description>
|
60 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
61 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
62 |
-
<wp:post_id>8</wp:post_id>
|
63 |
-
<wp:post_date><![CDATA[2016-01-06 13:05:55]]></wp:post_date>
|
64 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:05:55]]></wp:post_date_gmt>
|
65 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
66 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
67 |
-
<wp:post_name><![CDATA[alison-light]]></wp:post_name>
|
68 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
69 |
-
<wp:post_parent>0</wp:post_parent>
|
70 |
-
<wp:menu_order>0</wp:menu_order>
|
71 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
72 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
73 |
-
<wp:is_sticky>0</wp:is_sticky>
|
74 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/alison-light.png]]></wp:attachment_url>
|
75 |
-
<wp:postmeta>
|
76 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
77 |
-
<wp:meta_value><![CDATA[2016/01/alison-light.png]]></wp:meta_value>
|
78 |
-
</wp:postmeta>
|
79 |
-
<wp:postmeta>
|
80 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
81 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:300;s:6:"height";i:150;s:4:"file";s:24:"2016/01/alison-light.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"alison-light-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:24:"alison-light-300x150.png";s:5:"width";i:300;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
82 |
-
</wp:postmeta>
|
83 |
-
</item>
|
84 |
-
<item>
|
85 |
-
<title>alison</title>
|
86 |
-
<link>http://portfoliotheme.org/visual-composer-addons/alison/</link>
|
87 |
-
<pubDate>Wed, 06 Jan 2016 13:05:56 +0000</pubDate>
|
88 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
89 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/alison.png</guid>
|
90 |
-
<description></description>
|
91 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
92 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
93 |
-
<wp:post_id>9</wp:post_id>
|
94 |
-
<wp:post_date><![CDATA[2016-01-06 13:05:56]]></wp:post_date>
|
95 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:05:56]]></wp:post_date_gmt>
|
96 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
97 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
98 |
-
<wp:post_name><![CDATA[alison]]></wp:post_name>
|
99 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
100 |
-
<wp:post_parent>0</wp:post_parent>
|
101 |
-
<wp:menu_order>0</wp:menu_order>
|
102 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
103 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
104 |
-
<wp:is_sticky>0</wp:is_sticky>
|
105 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/alison.png]]></wp:attachment_url>
|
106 |
-
<wp:postmeta>
|
107 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
108 |
-
<wp:meta_value><![CDATA[2016/01/alison.png]]></wp:meta_value>
|
109 |
-
</wp:postmeta>
|
110 |
-
<wp:postmeta>
|
111 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
112 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:300;s:6:"height";i:150;s:4:"file";s:18:"2016/01/alison.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"alison-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:18:"alison-300x150.png";s:5:"width";i:300;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
113 |
-
</wp:postmeta>
|
114 |
-
</item>
|
115 |
-
<item>
|
116 |
-
<title>atlantico-light</title>
|
117 |
-
<link>http://portfoliotheme.org/visual-composer-addons/atlantico-light/</link>
|
118 |
-
<pubDate>Wed, 06 Jan 2016 13:05:57 +0000</pubDate>
|
119 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
120 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/atlantico-light.png</guid>
|
121 |
-
<description></description>
|
122 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
123 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
124 |
-
<wp:post_id>10</wp:post_id>
|
125 |
-
<wp:post_date><![CDATA[2016-01-06 13:05:57]]></wp:post_date>
|
126 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:05:57]]></wp:post_date_gmt>
|
127 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
128 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
129 |
-
<wp:post_name><![CDATA[atlantico-light]]></wp:post_name>
|
130 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
131 |
-
<wp:post_parent>0</wp:post_parent>
|
132 |
-
<wp:menu_order>0</wp:menu_order>
|
133 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
134 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
135 |
-
<wp:is_sticky>0</wp:is_sticky>
|
136 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/atlantico-light.png]]></wp:attachment_url>
|
137 |
-
<wp:postmeta>
|
138 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
139 |
-
<wp:meta_value><![CDATA[2016/01/atlantico-light.png]]></wp:meta_value>
|
140 |
-
</wp:postmeta>
|
141 |
-
<wp:postmeta>
|
142 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
143 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:300;s:6:"height";i:150;s:4:"file";s:27:"2016/01/atlantico-light.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"atlantico-light-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:27:"atlantico-light-300x150.png";s:5:"width";i:300;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
144 |
-
</wp:postmeta>
|
145 |
-
</item>
|
146 |
-
<item>
|
147 |
-
<title>atlantico</title>
|
148 |
-
<link>http://portfoliotheme.org/visual-composer-addons/atlantico/</link>
|
149 |
-
<pubDate>Wed, 06 Jan 2016 13:05:58 +0000</pubDate>
|
150 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
151 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/atlantico.png</guid>
|
152 |
-
<description></description>
|
153 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
154 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
155 |
-
<wp:post_id>11</wp:post_id>
|
156 |
-
<wp:post_date><![CDATA[2016-01-06 13:05:58]]></wp:post_date>
|
157 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:05:58]]></wp:post_date_gmt>
|
158 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
159 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
160 |
-
<wp:post_name><![CDATA[atlantico]]></wp:post_name>
|
161 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
162 |
-
<wp:post_parent>0</wp:post_parent>
|
163 |
-
<wp:menu_order>0</wp:menu_order>
|
164 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
165 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
166 |
-
<wp:is_sticky>0</wp:is_sticky>
|
167 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/atlantico.png]]></wp:attachment_url>
|
168 |
-
<wp:postmeta>
|
169 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
170 |
-
<wp:meta_value><![CDATA[2016/01/atlantico.png]]></wp:meta_value>
|
171 |
-
</wp:postmeta>
|
172 |
-
<wp:postmeta>
|
173 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
174 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:300;s:6:"height";i:150;s:4:"file";s:21:"2016/01/atlantico.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"atlantico-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:21:"atlantico-300x150.png";s:5:"width";i:300;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
175 |
-
</wp:postmeta>
|
176 |
-
</item>
|
177 |
-
<item>
|
178 |
-
<title>deliverance-light</title>
|
179 |
-
<link>http://portfoliotheme.org/visual-composer-addons/deliverance-light/</link>
|
180 |
-
<pubDate>Wed, 06 Jan 2016 13:05:59 +0000</pubDate>
|
181 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
182 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/deliverance-light.png</guid>
|
183 |
-
<description></description>
|
184 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
185 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
186 |
-
<wp:post_id>12</wp:post_id>
|
187 |
-
<wp:post_date><![CDATA[2016-01-06 13:05:59]]></wp:post_date>
|
188 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:05:59]]></wp:post_date_gmt>
|
189 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
190 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
191 |
-
<wp:post_name><![CDATA[deliverance-light]]></wp:post_name>
|
192 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
193 |
-
<wp:post_parent>0</wp:post_parent>
|
194 |
-
<wp:menu_order>0</wp:menu_order>
|
195 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
196 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
197 |
-
<wp:is_sticky>0</wp:is_sticky>
|
198 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/deliverance-light.png]]></wp:attachment_url>
|
199 |
-
<wp:postmeta>
|
200 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
201 |
-
<wp:meta_value><![CDATA[2016/01/deliverance-light.png]]></wp:meta_value>
|
202 |
-
</wp:postmeta>
|
203 |
-
<wp:postmeta>
|
204 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
205 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:300;s:6:"height";i:150;s:4:"file";s:29:"2016/01/deliverance-light.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"deliverance-light-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:29:"deliverance-light-300x150.png";s:5:"width";i:300;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
206 |
-
</wp:postmeta>
|
207 |
-
</item>
|
208 |
-
<item>
|
209 |
-
<title>deliverance</title>
|
210 |
-
<link>http://portfoliotheme.org/visual-composer-addons/deliverance/</link>
|
211 |
-
<pubDate>Wed, 06 Jan 2016 13:06:00 +0000</pubDate>
|
212 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
213 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/deliverance.png</guid>
|
214 |
-
<description></description>
|
215 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
216 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
217 |
-
<wp:post_id>13</wp:post_id>
|
218 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:00]]></wp:post_date>
|
219 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:00]]></wp:post_date_gmt>
|
220 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
221 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
222 |
-
<wp:post_name><![CDATA[deliverance]]></wp:post_name>
|
223 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
224 |
-
<wp:post_parent>0</wp:post_parent>
|
225 |
-
<wp:menu_order>0</wp:menu_order>
|
226 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
227 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
228 |
-
<wp:is_sticky>0</wp:is_sticky>
|
229 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/deliverance.png]]></wp:attachment_url>
|
230 |
-
<wp:postmeta>
|
231 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
232 |
-
<wp:meta_value><![CDATA[2016/01/deliverance.png]]></wp:meta_value>
|
233 |
-
</wp:postmeta>
|
234 |
-
<wp:postmeta>
|
235 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
236 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:300;s:6:"height";i:150;s:4:"file";s:23:"2016/01/deliverance.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"deliverance-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:23:"deliverance-300x150.png";s:5:"width";i:300;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
237 |
-
</wp:postmeta>
|
238 |
-
</item>
|
239 |
-
<item>
|
240 |
-
<title>denton-light</title>
|
241 |
-
<link>http://portfoliotheme.org/visual-composer-addons/denton-light/</link>
|
242 |
-
<pubDate>Wed, 06 Jan 2016 13:06:01 +0000</pubDate>
|
243 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
244 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/denton-light.png</guid>
|
245 |
-
<description></description>
|
246 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
247 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
248 |
-
<wp:post_id>14</wp:post_id>
|
249 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:01]]></wp:post_date>
|
250 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:01]]></wp:post_date_gmt>
|
251 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
252 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
253 |
-
<wp:post_name><![CDATA[denton-light]]></wp:post_name>
|
254 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
255 |
-
<wp:post_parent>0</wp:post_parent>
|
256 |
-
<wp:menu_order>0</wp:menu_order>
|
257 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
258 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
259 |
-
<wp:is_sticky>0</wp:is_sticky>
|
260 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/denton-light.png]]></wp:attachment_url>
|
261 |
-
<wp:postmeta>
|
262 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
263 |
-
<wp:meta_value><![CDATA[2016/01/denton-light.png]]></wp:meta_value>
|
264 |
-
</wp:postmeta>
|
265 |
-
<wp:postmeta>
|
266 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
267 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:300;s:6:"height";i:150;s:4:"file";s:24:"2016/01/denton-light.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"denton-light-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:24:"denton-light-300x150.png";s:5:"width";i:300;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
268 |
-
</wp:postmeta>
|
269 |
-
</item>
|
270 |
-
<item>
|
271 |
-
<title>denton</title>
|
272 |
-
<link>http://portfoliotheme.org/visual-composer-addons/denton/</link>
|
273 |
-
<pubDate>Wed, 06 Jan 2016 13:06:02 +0000</pubDate>
|
274 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
275 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/denton.png</guid>
|
276 |
-
<description></description>
|
277 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
278 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
279 |
-
<wp:post_id>15</wp:post_id>
|
280 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:02]]></wp:post_date>
|
281 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:02]]></wp:post_date_gmt>
|
282 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
283 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
284 |
-
<wp:post_name><![CDATA[denton]]></wp:post_name>
|
285 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
286 |
-
<wp:post_parent>0</wp:post_parent>
|
287 |
-
<wp:menu_order>0</wp:menu_order>
|
288 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
289 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
290 |
-
<wp:is_sticky>0</wp:is_sticky>
|
291 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/denton.png]]></wp:attachment_url>
|
292 |
-
<wp:postmeta>
|
293 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
294 |
-
<wp:meta_value><![CDATA[2016/01/denton.png]]></wp:meta_value>
|
295 |
-
</wp:postmeta>
|
296 |
-
<wp:postmeta>
|
297 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
298 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:300;s:6:"height";i:150;s:4:"file";s:18:"2016/01/denton.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"denton-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:18:"denton-300x150.png";s:5:"width";i:300;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
299 |
-
</wp:postmeta>
|
300 |
-
</item>
|
301 |
-
<item>
|
302 |
-
<title>explore-light</title>
|
303 |
-
<link>http://portfoliotheme.org/visual-composer-addons/explore-light/</link>
|
304 |
-
<pubDate>Wed, 06 Jan 2016 13:06:03 +0000</pubDate>
|
305 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
306 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/explore-light.png</guid>
|
307 |
-
<description></description>
|
308 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
309 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
310 |
-
<wp:post_id>16</wp:post_id>
|
311 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:03]]></wp:post_date>
|
312 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:03]]></wp:post_date_gmt>
|
313 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
314 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
315 |
-
<wp:post_name><![CDATA[explore-light]]></wp:post_name>
|
316 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
317 |
-
<wp:post_parent>0</wp:post_parent>
|
318 |
-
<wp:menu_order>0</wp:menu_order>
|
319 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
320 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
321 |
-
<wp:is_sticky>0</wp:is_sticky>
|
322 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/explore-light.png]]></wp:attachment_url>
|
323 |
-
<wp:postmeta>
|
324 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
325 |
-
<wp:meta_value><![CDATA[2016/01/explore-light.png]]></wp:meta_value>
|
326 |
-
</wp:postmeta>
|
327 |
-
<wp:postmeta>
|
328 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
329 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:300;s:6:"height";i:150;s:4:"file";s:25:"2016/01/explore-light.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"explore-light-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:25:"explore-light-300x150.png";s:5:"width";i:300;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
330 |
-
</wp:postmeta>
|
331 |
-
</item>
|
332 |
-
<item>
|
333 |
-
<title>explore</title>
|
334 |
-
<link>http://portfoliotheme.org/visual-composer-addons/explore/</link>
|
335 |
-
<pubDate>Wed, 06 Jan 2016 13:06:04 +0000</pubDate>
|
336 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
337 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/explore.png</guid>
|
338 |
-
<description></description>
|
339 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
340 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
341 |
-
<wp:post_id>17</wp:post_id>
|
342 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:04]]></wp:post_date>
|
343 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:04]]></wp:post_date_gmt>
|
344 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
345 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
346 |
-
<wp:post_name><![CDATA[explore]]></wp:post_name>
|
347 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
348 |
-
<wp:post_parent>0</wp:post_parent>
|
349 |
-
<wp:menu_order>0</wp:menu_order>
|
350 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
351 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
352 |
-
<wp:is_sticky>0</wp:is_sticky>
|
353 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/explore.png]]></wp:attachment_url>
|
354 |
-
<wp:postmeta>
|
355 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
356 |
-
<wp:meta_value><![CDATA[2016/01/explore.png]]></wp:meta_value>
|
357 |
-
</wp:postmeta>
|
358 |
-
<wp:postmeta>
|
359 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
360 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:300;s:6:"height";i:150;s:4:"file";s:19:"2016/01/explore.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"explore-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:19:"explore-300x150.png";s:5:"width";i:300;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
361 |
-
</wp:postmeta>
|
362 |
-
</item>
|
363 |
-
<item>
|
364 |
-
<title>jennifer-law-light</title>
|
365 |
-
<link>http://portfoliotheme.org/visual-composer-addons/jennifer-law-light/</link>
|
366 |
-
<pubDate>Wed, 06 Jan 2016 13:06:05 +0000</pubDate>
|
367 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
368 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/jennifer-law-light.png</guid>
|
369 |
-
<description></description>
|
370 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
371 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
372 |
-
<wp:post_id>18</wp:post_id>
|
373 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:05]]></wp:post_date>
|
374 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:05]]></wp:post_date_gmt>
|
375 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
376 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
377 |
-
<wp:post_name><![CDATA[jennifer-law-light]]></wp:post_name>
|
378 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
379 |
-
<wp:post_parent>0</wp:post_parent>
|
380 |
-
<wp:menu_order>0</wp:menu_order>
|
381 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
382 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
383 |
-
<wp:is_sticky>0</wp:is_sticky>
|
384 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/jennifer-law-light.png]]></wp:attachment_url>
|
385 |
-
<wp:postmeta>
|
386 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
387 |
-
<wp:meta_value><![CDATA[2016/01/jennifer-law-light.png]]></wp:meta_value>
|
388 |
-
</wp:postmeta>
|
389 |
-
<wp:postmeta>
|
390 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
391 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:300;s:6:"height";i:150;s:4:"file";s:30:"2016/01/jennifer-law-light.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:30:"jennifer-law-light-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:30:"jennifer-law-light-300x150.png";s:5:"width";i:300;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
392 |
-
</wp:postmeta>
|
393 |
-
</item>
|
394 |
-
<item>
|
395 |
-
<title>jennifer-law</title>
|
396 |
-
<link>http://portfoliotheme.org/visual-composer-addons/jennifer-law/</link>
|
397 |
-
<pubDate>Wed, 06 Jan 2016 13:06:05 +0000</pubDate>
|
398 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
399 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/jennifer-law.png</guid>
|
400 |
-
<description></description>
|
401 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
402 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
403 |
-
<wp:post_id>19</wp:post_id>
|
404 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:05]]></wp:post_date>
|
405 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:05]]></wp:post_date_gmt>
|
406 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
407 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
408 |
-
<wp:post_name><![CDATA[jennifer-law]]></wp:post_name>
|
409 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
410 |
-
<wp:post_parent>0</wp:post_parent>
|
411 |
-
<wp:menu_order>0</wp:menu_order>
|
412 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
413 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
414 |
-
<wp:is_sticky>0</wp:is_sticky>
|
415 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/jennifer-law.png]]></wp:attachment_url>
|
416 |
-
<wp:postmeta>
|
417 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
418 |
-
<wp:meta_value><![CDATA[2016/01/jennifer-law.png]]></wp:meta_value>
|
419 |
-
</wp:postmeta>
|
420 |
-
<wp:postmeta>
|
421 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
422 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:300;s:6:"height";i:150;s:4:"file";s:24:"2016/01/jennifer-law.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"jennifer-law-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:24:"jennifer-law-300x150.png";s:5:"width";i:300;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
423 |
-
</wp:postmeta>
|
424 |
-
</item>
|
425 |
-
<item>
|
426 |
-
<title>neil-harris-light</title>
|
427 |
-
<link>http://portfoliotheme.org/visual-composer-addons/neil-harris-light/</link>
|
428 |
-
<pubDate>Wed, 06 Jan 2016 13:06:06 +0000</pubDate>
|
429 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
430 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/neil-harris-light.png</guid>
|
431 |
-
<description></description>
|
432 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
433 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
434 |
-
<wp:post_id>20</wp:post_id>
|
435 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:06]]></wp:post_date>
|
436 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:06]]></wp:post_date_gmt>
|
437 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
438 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
439 |
-
<wp:post_name><![CDATA[neil-harris-light]]></wp:post_name>
|
440 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
441 |
-
<wp:post_parent>0</wp:post_parent>
|
442 |
-
<wp:menu_order>0</wp:menu_order>
|
443 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
444 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
445 |
-
<wp:is_sticky>0</wp:is_sticky>
|
446 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/neil-harris-light.png]]></wp:attachment_url>
|
447 |
-
<wp:postmeta>
|
448 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
449 |
-
<wp:meta_value><![CDATA[2016/01/neil-harris-light.png]]></wp:meta_value>
|
450 |
-
</wp:postmeta>
|
451 |
-
<wp:postmeta>
|
452 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
453 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:300;s:6:"height";i:150;s:4:"file";s:29:"2016/01/neil-harris-light.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"neil-harris-light-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:29:"neil-harris-light-300x150.png";s:5:"width";i:300;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
454 |
-
</wp:postmeta>
|
455 |
-
</item>
|
456 |
-
<item>
|
457 |
-
<title>neil-harris</title>
|
458 |
-
<link>http://portfoliotheme.org/visual-composer-addons/neil-harris/</link>
|
459 |
-
<pubDate>Wed, 06 Jan 2016 13:06:07 +0000</pubDate>
|
460 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
461 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/neil-harris.png</guid>
|
462 |
-
<description></description>
|
463 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
464 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
465 |
-
<wp:post_id>21</wp:post_id>
|
466 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:07]]></wp:post_date>
|
467 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:07]]></wp:post_date_gmt>
|
468 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
469 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
470 |
-
<wp:post_name><![CDATA[neil-harris]]></wp:post_name>
|
471 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
472 |
-
<wp:post_parent>0</wp:post_parent>
|
473 |
-
<wp:menu_order>0</wp:menu_order>
|
474 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
475 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
476 |
-
<wp:is_sticky>0</wp:is_sticky>
|
477 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/neil-harris.png]]></wp:attachment_url>
|
478 |
-
<wp:postmeta>
|
479 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
480 |
-
<wp:meta_value><![CDATA[2016/01/neil-harris.png]]></wp:meta_value>
|
481 |
-
</wp:postmeta>
|
482 |
-
<wp:postmeta>
|
483 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
484 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:300;s:6:"height";i:150;s:4:"file";s:23:"2016/01/neil-harris.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"neil-harris-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:23:"neil-harris-300x150.png";s:5:"width";i:300;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
485 |
-
</wp:postmeta>
|
486 |
-
</item>
|
487 |
-
<item>
|
488 |
-
<title>susan-light</title>
|
489 |
-
<link>http://portfoliotheme.org/visual-composer-addons/susan-light/</link>
|
490 |
-
<pubDate>Wed, 06 Jan 2016 13:06:08 +0000</pubDate>
|
491 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
492 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/susan-light.png</guid>
|
493 |
-
<description></description>
|
494 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
495 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
496 |
-
<wp:post_id>22</wp:post_id>
|
497 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:08]]></wp:post_date>
|
498 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:08]]></wp:post_date_gmt>
|
499 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
500 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
501 |
-
<wp:post_name><![CDATA[susan-light]]></wp:post_name>
|
502 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
503 |
-
<wp:post_parent>0</wp:post_parent>
|
504 |
-
<wp:menu_order>0</wp:menu_order>
|
505 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
506 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
507 |
-
<wp:is_sticky>0</wp:is_sticky>
|
508 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/susan-light.png]]></wp:attachment_url>
|
509 |
-
<wp:postmeta>
|
510 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
511 |
-
<wp:meta_value><![CDATA[2016/01/susan-light.png]]></wp:meta_value>
|
512 |
-
</wp:postmeta>
|
513 |
-
<wp:postmeta>
|
514 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
515 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:300;s:6:"height";i:150;s:4:"file";s:23:"2016/01/susan-light.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"susan-light-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:23:"susan-light-300x150.png";s:5:"width";i:300;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
516 |
-
</wp:postmeta>
|
517 |
-
</item>
|
518 |
-
<item>
|
519 |
-
<title>susan</title>
|
520 |
-
<link>http://portfoliotheme.org/visual-composer-addons/susan/</link>
|
521 |
-
<pubDate>Wed, 06 Jan 2016 13:06:09 +0000</pubDate>
|
522 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
523 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/susan.png</guid>
|
524 |
-
<description></description>
|
525 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
526 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
527 |
-
<wp:post_id>23</wp:post_id>
|
528 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:09]]></wp:post_date>
|
529 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:09]]></wp:post_date_gmt>
|
530 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
531 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
532 |
-
<wp:post_name><![CDATA[susan]]></wp:post_name>
|
533 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
534 |
-
<wp:post_parent>0</wp:post_parent>
|
535 |
-
<wp:menu_order>0</wp:menu_order>
|
536 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
537 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
538 |
-
<wp:is_sticky>0</wp:is_sticky>
|
539 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/susan.png]]></wp:attachment_url>
|
540 |
-
<wp:postmeta>
|
541 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
542 |
-
<wp:meta_value><![CDATA[2016/01/susan.png]]></wp:meta_value>
|
543 |
-
</wp:postmeta>
|
544 |
-
<wp:postmeta>
|
545 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
546 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:300;s:6:"height";i:150;s:4:"file";s:17:"2016/01/susan.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"susan-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:17:"susan-300x150.png";s:5:"width";i:300;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
547 |
-
</wp:postmeta>
|
548 |
-
</item>
|
549 |
-
<item>
|
550 |
-
<title>bg-header1</title>
|
551 |
-
<link>http://portfoliotheme.org/visual-composer-addons/bg-header1/</link>
|
552 |
-
<pubDate>Wed, 06 Jan 2016 13:06:21 +0000</pubDate>
|
553 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
554 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/bg-header1.jpg</guid>
|
555 |
-
<description></description>
|
556 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
557 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
558 |
-
<wp:post_id>24</wp:post_id>
|
559 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:21]]></wp:post_date>
|
560 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:21]]></wp:post_date_gmt>
|
561 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
562 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
563 |
-
<wp:post_name><![CDATA[bg-header1]]></wp:post_name>
|
564 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
565 |
-
<wp:post_parent>0</wp:post_parent>
|
566 |
-
<wp:menu_order>0</wp:menu_order>
|
567 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
568 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
569 |
-
<wp:is_sticky>0</wp:is_sticky>
|
570 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/bg-header1.jpg]]></wp:attachment_url>
|
571 |
-
<wp:postmeta>
|
572 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
573 |
-
<wp:meta_value><![CDATA[2016/01/bg-header1.jpg]]></wp:meta_value>
|
574 |
-
</wp:postmeta>
|
575 |
-
<wp:postmeta>
|
576 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
577 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1919;s:6:"height";i:1279;s:4:"file";s:22:"2016/01/bg-header1.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"bg-header1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:22:"bg-header1-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"bg-header1-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"bg-header1-1024x682.jpg";s:5:"width";i:1024;s:6:"height";i:682;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:22:"bg-header1-550x400.jpg";s:5:"width";i:550;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:22:"bg-header1-450x450.jpg";s:5:"width";i:450;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
578 |
-
</wp:postmeta>
|
579 |
-
</item>
|
580 |
-
<item>
|
581 |
-
<title>bg-header2</title>
|
582 |
-
<link>http://portfoliotheme.org/visual-composer-addons/bg-header2/</link>
|
583 |
-
<pubDate>Wed, 06 Jan 2016 13:06:23 +0000</pubDate>
|
584 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
585 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/bg-header2.jpg</guid>
|
586 |
-
<description></description>
|
587 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
588 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
589 |
-
<wp:post_id>25</wp:post_id>
|
590 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:23]]></wp:post_date>
|
591 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:23]]></wp:post_date_gmt>
|
592 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
593 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
594 |
-
<wp:post_name><![CDATA[bg-header2]]></wp:post_name>
|
595 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
596 |
-
<wp:post_parent>0</wp:post_parent>
|
597 |
-
<wp:menu_order>0</wp:menu_order>
|
598 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
599 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
600 |
-
<wp:is_sticky>0</wp:is_sticky>
|
601 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/bg-header2.jpg]]></wp:attachment_url>
|
602 |
-
<wp:postmeta>
|
603 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
604 |
-
<wp:meta_value><![CDATA[2016/01/bg-header2.jpg]]></wp:meta_value>
|
605 |
-
</wp:postmeta>
|
606 |
-
<wp:postmeta>
|
607 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
608 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:1276;s:4:"file";s:22:"2016/01/bg-header2.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"bg-header2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:22:"bg-header2-300x199.jpg";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"bg-header2-768x510.jpg";s:5:"width";i:768;s:6:"height";i:510;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"bg-header2-1024x681.jpg";s:5:"width";i:1024;s:6:"height";i:681;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:22:"bg-header2-550x400.jpg";s:5:"width";i:550;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:22:"bg-header2-450x450.jpg";s:5:"width";i:450;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
609 |
-
</wp:postmeta>
|
610 |
-
</item>
|
611 |
-
<item>
|
612 |
-
<title>bg-newsletter</title>
|
613 |
-
<link>http://portfoliotheme.org/visual-composer-addons/bg-newsletter/</link>
|
614 |
-
<pubDate>Wed, 06 Jan 2016 13:06:25 +0000</pubDate>
|
615 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
616 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/bg-newsletter.jpg</guid>
|
617 |
-
<description></description>
|
618 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
619 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
620 |
-
<wp:post_id>26</wp:post_id>
|
621 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:25]]></wp:post_date>
|
622 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:25]]></wp:post_date_gmt>
|
623 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
624 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
625 |
-
<wp:post_name><![CDATA[bg-newsletter]]></wp:post_name>
|
626 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
627 |
-
<wp:post_parent>0</wp:post_parent>
|
628 |
-
<wp:menu_order>0</wp:menu_order>
|
629 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
630 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
631 |
-
<wp:is_sticky>0</wp:is_sticky>
|
632 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/bg-newsletter.jpg]]></wp:attachment_url>
|
633 |
-
<wp:postmeta>
|
634 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
635 |
-
<wp:meta_value><![CDATA[2016/01/bg-newsletter.jpg]]></wp:meta_value>
|
636 |
-
</wp:postmeta>
|
637 |
-
<wp:postmeta>
|
638 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
639 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1000;s:6:"height";i:600;s:4:"file";s:25:"2016/01/bg-newsletter.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"bg-newsletter-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"bg-newsletter-300x180.jpg";s:5:"width";i:300;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"bg-newsletter-768x461.jpg";s:5:"width";i:768;s:6:"height";i:461;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:25:"bg-newsletter-550x400.jpg";s:5:"width";i:550;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:25:"bg-newsletter-450x450.jpg";s:5:"width";i:450;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
640 |
-
</wp:postmeta>
|
641 |
-
</item>
|
642 |
-
<item>
|
643 |
-
<title>bg-testimonials</title>
|
644 |
-
<link>http://portfoliotheme.org/visual-composer-addons/bg-testimonials/</link>
|
645 |
-
<pubDate>Wed, 06 Jan 2016 13:06:28 +0000</pubDate>
|
646 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
647 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/bg-testimonials.jpg</guid>
|
648 |
-
<description></description>
|
649 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
650 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
651 |
-
<wp:post_id>27</wp:post_id>
|
652 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:28]]></wp:post_date>
|
653 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:28]]></wp:post_date_gmt>
|
654 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
655 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
656 |
-
<wp:post_name><![CDATA[bg-testimonials]]></wp:post_name>
|
657 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
658 |
-
<wp:post_parent>0</wp:post_parent>
|
659 |
-
<wp:menu_order>0</wp:menu_order>
|
660 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
661 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
662 |
-
<wp:is_sticky>0</wp:is_sticky>
|
663 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/bg-testimonials.jpg]]></wp:attachment_url>
|
664 |
-
<wp:postmeta>
|
665 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
666 |
-
<wp:meta_value><![CDATA[2016/01/bg-testimonials.jpg]]></wp:meta_value>
|
667 |
-
</wp:postmeta>
|
668 |
-
<wp:postmeta>
|
669 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
670 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1920;s:6:"height";i:1280;s:4:"file";s:27:"2016/01/bg-testimonials.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"bg-testimonials-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:27:"bg-testimonials-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:27:"bg-testimonials-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"bg-testimonials-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:27:"bg-testimonials-550x400.jpg";s:5:"width";i:550;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:27:"bg-testimonials-450x450.jpg";s:5:"width";i:450;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
671 |
-
</wp:postmeta>
|
672 |
-
</item>
|
673 |
-
<item>
|
674 |
-
<title>img-carousel1</title>
|
675 |
-
<link>http://portfoliotheme.org/visual-composer-addons/img-carousel1/</link>
|
676 |
-
<pubDate>Wed, 06 Jan 2016 13:06:30 +0000</pubDate>
|
677 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
678 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-carousel1.jpg</guid>
|
679 |
-
<description></description>
|
680 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
681 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
682 |
-
<wp:post_id>28</wp:post_id>
|
683 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:30]]></wp:post_date>
|
684 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:30]]></wp:post_date_gmt>
|
685 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
686 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
687 |
-
<wp:post_name><![CDATA[img-carousel1]]></wp:post_name>
|
688 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
689 |
-
<wp:post_parent>0</wp:post_parent>
|
690 |
-
<wp:menu_order>0</wp:menu_order>
|
691 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
692 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
693 |
-
<wp:is_sticky>0</wp:is_sticky>
|
694 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-carousel1.jpg]]></wp:attachment_url>
|
695 |
-
<wp:postmeta>
|
696 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
697 |
-
<wp:meta_value><![CDATA[2016/01/img-carousel1.jpg]]></wp:meta_value>
|
698 |
-
</wp:postmeta>
|
699 |
-
<wp:postmeta>
|
700 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
701 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:800;s:6:"height";i:533;s:4:"file";s:25:"2016/01/img-carousel1.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"img-carousel1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"img-carousel1-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"img-carousel1-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:25:"img-carousel1-550x400.jpg";s:5:"width";i:550;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:25:"img-carousel1-450x450.jpg";s:5:"width";i:450;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
702 |
-
</wp:postmeta>
|
703 |
-
</item>
|
704 |
-
<item>
|
705 |
-
<title>img-carousel2</title>
|
706 |
-
<link>http://portfoliotheme.org/visual-composer-addons/img-carousel2/</link>
|
707 |
-
<pubDate>Wed, 06 Jan 2016 13:06:33 +0000</pubDate>
|
708 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
709 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-carousel2.jpg</guid>
|
710 |
-
<description></description>
|
711 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
712 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
713 |
-
<wp:post_id>29</wp:post_id>
|
714 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:33]]></wp:post_date>
|
715 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:33]]></wp:post_date_gmt>
|
716 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
717 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
718 |
-
<wp:post_name><![CDATA[img-carousel2]]></wp:post_name>
|
719 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
720 |
-
<wp:post_parent>0</wp:post_parent>
|
721 |
-
<wp:menu_order>0</wp:menu_order>
|
722 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
723 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
724 |
-
<wp:is_sticky>0</wp:is_sticky>
|
725 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-carousel2.jpg]]></wp:attachment_url>
|
726 |
-
<wp:postmeta>
|
727 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
728 |
-
<wp:meta_value><![CDATA[2016/01/img-carousel2.jpg]]></wp:meta_value>
|
729 |
-
</wp:postmeta>
|
730 |
-
<wp:postmeta>
|
731 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
732 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:800;s:6:"height";i:532;s:4:"file";s:25:"2016/01/img-carousel2.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"img-carousel2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"img-carousel2-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"img-carousel2-768x511.jpg";s:5:"width";i:768;s:6:"height";i:511;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:25:"img-carousel2-550x400.jpg";s:5:"width";i:550;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:25:"img-carousel2-450x450.jpg";s:5:"width";i:450;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
733 |
-
</wp:postmeta>
|
734 |
-
</item>
|
735 |
-
<item>
|
736 |
-
<title>img-carousel3</title>
|
737 |
-
<link>http://portfoliotheme.org/visual-composer-addons/img-carousel3/</link>
|
738 |
-
<pubDate>Wed, 06 Jan 2016 13:06:35 +0000</pubDate>
|
739 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
740 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-carousel3.jpg</guid>
|
741 |
-
<description></description>
|
742 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
743 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
744 |
-
<wp:post_id>30</wp:post_id>
|
745 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:35]]></wp:post_date>
|
746 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:35]]></wp:post_date_gmt>
|
747 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
748 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
749 |
-
<wp:post_name><![CDATA[img-carousel3]]></wp:post_name>
|
750 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
751 |
-
<wp:post_parent>0</wp:post_parent>
|
752 |
-
<wp:menu_order>0</wp:menu_order>
|
753 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
754 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
755 |
-
<wp:is_sticky>0</wp:is_sticky>
|
756 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-carousel3.jpg]]></wp:attachment_url>
|
757 |
-
<wp:postmeta>
|
758 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
759 |
-
<wp:meta_value><![CDATA[2016/01/img-carousel3.jpg]]></wp:meta_value>
|
760 |
-
</wp:postmeta>
|
761 |
-
<wp:postmeta>
|
762 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
763 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:800;s:6:"height";i:533;s:4:"file";s:25:"2016/01/img-carousel3.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"img-carousel3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"img-carousel3-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"img-carousel3-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:25:"img-carousel3-550x400.jpg";s:5:"width";i:550;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:25:"img-carousel3-450x450.jpg";s:5:"width";i:450;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
764 |
-
</wp:postmeta>
|
765 |
-
</item>
|
766 |
-
<item>
|
767 |
-
<title>img-post1</title>
|
768 |
-
<link>http://portfoliotheme.org/visual-composer-addons/img-post1/</link>
|
769 |
-
<pubDate>Wed, 06 Jan 2016 13:06:36 +0000</pubDate>
|
770 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
771 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post1.jpg</guid>
|
772 |
-
<description></description>
|
773 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
774 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
775 |
-
<wp:post_id>31</wp:post_id>
|
776 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:36]]></wp:post_date>
|
777 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:36]]></wp:post_date_gmt>
|
778 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
779 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
780 |
-
<wp:post_name><![CDATA[img-post1]]></wp:post_name>
|
781 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
782 |
-
<wp:post_parent>0</wp:post_parent>
|
783 |
-
<wp:menu_order>0</wp:menu_order>
|
784 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
785 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
786 |
-
<wp:is_sticky>0</wp:is_sticky>
|
787 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post1.jpg]]></wp:attachment_url>
|
788 |
-
<wp:postmeta>
|
789 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
790 |
-
<wp:meta_value><![CDATA[2016/01/img-post1.jpg]]></wp:meta_value>
|
791 |
-
</wp:postmeta>
|
792 |
-
<wp:postmeta>
|
793 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
794 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:600;s:6:"height";i:380;s:4:"file";s:21:"2016/01/img-post1.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"img-post1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:21:"img-post1-300x190.jpg";s:5:"width";i:300;s:6:"height";i:190;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:21:"img-post1-550x380.jpg";s:5:"width";i:550;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:21:"img-post1-450x380.jpg";s:5:"width";i:450;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
795 |
-
</wp:postmeta>
|
796 |
-
</item>
|
797 |
-
<item>
|
798 |
-
<title>img-post2</title>
|
799 |
-
<link>http://portfoliotheme.org/visual-composer-addons/img-post2/</link>
|
800 |
-
<pubDate>Wed, 06 Jan 2016 13:06:38 +0000</pubDate>
|
801 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
802 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post2.jpg</guid>
|
803 |
-
<description></description>
|
804 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
805 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
806 |
-
<wp:post_id>32</wp:post_id>
|
807 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:38]]></wp:post_date>
|
808 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:38]]></wp:post_date_gmt>
|
809 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
810 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
811 |
-
<wp:post_name><![CDATA[img-post2]]></wp:post_name>
|
812 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
813 |
-
<wp:post_parent>0</wp:post_parent>
|
814 |
-
<wp:menu_order>0</wp:menu_order>
|
815 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
816 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
817 |
-
<wp:is_sticky>0</wp:is_sticky>
|
818 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post2.jpg]]></wp:attachment_url>
|
819 |
-
<wp:postmeta>
|
820 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
821 |
-
<wp:meta_value><![CDATA[2016/01/img-post2.jpg]]></wp:meta_value>
|
822 |
-
</wp:postmeta>
|
823 |
-
<wp:postmeta>
|
824 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
825 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:600;s:6:"height";i:380;s:4:"file";s:21:"2016/01/img-post2.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"img-post2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:21:"img-post2-300x190.jpg";s:5:"width";i:300;s:6:"height";i:190;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:21:"img-post2-550x380.jpg";s:5:"width";i:550;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:21:"img-post2-450x380.jpg";s:5:"width";i:450;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
826 |
-
</wp:postmeta>
|
827 |
-
</item>
|
828 |
-
<item>
|
829 |
-
<title>img-post3</title>
|
830 |
-
<link>http://portfoliotheme.org/visual-composer-addons/tabs-and-accordions/img-post3/</link>
|
831 |
-
<pubDate>Wed, 06 Jan 2016 13:06:40 +0000</pubDate>
|
832 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
833 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3.jpg</guid>
|
834 |
-
<description></description>
|
835 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
836 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
837 |
-
<wp:post_id>33</wp:post_id>
|
838 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:40]]></wp:post_date>
|
839 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:40]]></wp:post_date_gmt>
|
840 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
841 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
842 |
-
<wp:post_name><![CDATA[img-post3]]></wp:post_name>
|
843 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
844 |
-
<wp:post_parent>12517</wp:post_parent>
|
845 |
-
<wp:menu_order>0</wp:menu_order>
|
846 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
847 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
848 |
-
<wp:is_sticky>0</wp:is_sticky>
|
849 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3.jpg]]></wp:attachment_url>
|
850 |
-
<wp:postmeta>
|
851 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
852 |
-
<wp:meta_value><![CDATA[2016/01/img-post3.jpg]]></wp:meta_value>
|
853 |
-
</wp:postmeta>
|
854 |
-
<wp:postmeta>
|
855 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
856 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:600;s:6:"height";i:380;s:4:"file";s:21:"2016/01/img-post3.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"img-post3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:21:"img-post3-300x190.jpg";s:5:"width";i:300;s:6:"height";i:190;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:21:"img-post3-550x380.jpg";s:5:"width";i:550;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:21:"img-post3-450x380.jpg";s:5:"width";i:450;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
857 |
-
</wp:postmeta>
|
858 |
-
</item>
|
859 |
-
<item>
|
860 |
-
<title>img-post4</title>
|
861 |
-
<link>http://portfoliotheme.org/visual-composer-addons/img-post4/</link>
|
862 |
-
<pubDate>Wed, 06 Jan 2016 13:06:42 +0000</pubDate>
|
863 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
864 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post4.jpg</guid>
|
865 |
-
<description></description>
|
866 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
867 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
868 |
-
<wp:post_id>34</wp:post_id>
|
869 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:42]]></wp:post_date>
|
870 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:42]]></wp:post_date_gmt>
|
871 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
872 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
873 |
-
<wp:post_name><![CDATA[img-post4]]></wp:post_name>
|
874 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
875 |
-
<wp:post_parent>0</wp:post_parent>
|
876 |
-
<wp:menu_order>0</wp:menu_order>
|
877 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
878 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
879 |
-
<wp:is_sticky>0</wp:is_sticky>
|
880 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post4.jpg]]></wp:attachment_url>
|
881 |
-
<wp:postmeta>
|
882 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
883 |
-
<wp:meta_value><![CDATA[2016/01/img-post4.jpg]]></wp:meta_value>
|
884 |
-
</wp:postmeta>
|
885 |
-
<wp:postmeta>
|
886 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
887 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:600;s:6:"height";i:380;s:4:"file";s:21:"2016/01/img-post4.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"img-post4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:21:"img-post4-300x190.jpg";s:5:"width";i:300;s:6:"height";i:190;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:21:"img-post4-550x380.jpg";s:5:"width";i:550;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:21:"img-post4-450x380.jpg";s:5:"width";i:450;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
888 |
-
</wp:postmeta>
|
889 |
-
</item>
|
890 |
-
<item>
|
891 |
-
<title>logo-header</title>
|
892 |
-
<link>http://portfoliotheme.org/visual-composer-addons/logo-header/</link>
|
893 |
-
<pubDate>Wed, 06 Jan 2016 13:06:42 +0000</pubDate>
|
894 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
895 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/logo-header.png</guid>
|
896 |
-
<description></description>
|
897 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
898 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
899 |
-
<wp:post_id>35</wp:post_id>
|
900 |
-
<wp:post_date><![CDATA[2016-01-06 13:06:42]]></wp:post_date>
|
901 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:06:42]]></wp:post_date_gmt>
|
902 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
903 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
904 |
-
<wp:post_name><![CDATA[logo-header]]></wp:post_name>
|
905 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
906 |
-
<wp:post_parent>0</wp:post_parent>
|
907 |
-
<wp:menu_order>0</wp:menu_order>
|
908 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
909 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
910 |
-
<wp:is_sticky>0</wp:is_sticky>
|
911 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/logo-header.png]]></wp:attachment_url>
|
912 |
-
<wp:postmeta>
|
913 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
914 |
-
<wp:meta_value><![CDATA[2016/01/logo-header.png]]></wp:meta_value>
|
915 |
-
</wp:postmeta>
|
916 |
-
<wp:postmeta>
|
917 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
918 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:40;s:6:"height";i:38;s:4:"file";s:23:"2016/01/logo-header.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
919 |
-
</wp:postmeta>
|
920 |
-
</item>
|
921 |
-
<item>
|
922 |
-
<title>icon-behance</title>
|
923 |
-
<link>http://portfoliotheme.org/visual-composer-addons/icon-behance/</link>
|
924 |
-
<pubDate>Wed, 06 Jan 2016 13:07:19 +0000</pubDate>
|
925 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
926 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/icon-behance.png</guid>
|
927 |
-
<description></description>
|
928 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
929 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
930 |
-
<wp:post_id>36</wp:post_id>
|
931 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:19]]></wp:post_date>
|
932 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:19]]></wp:post_date_gmt>
|
933 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
934 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
935 |
-
<wp:post_name><![CDATA[icon-behance]]></wp:post_name>
|
936 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
937 |
-
<wp:post_parent>0</wp:post_parent>
|
938 |
-
<wp:menu_order>0</wp:menu_order>
|
939 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
940 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
941 |
-
<wp:is_sticky>0</wp:is_sticky>
|
942 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/icon-behance.png]]></wp:attachment_url>
|
943 |
-
<wp:postmeta>
|
944 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
945 |
-
<wp:meta_value><![CDATA[2016/01/icon-behance.png]]></wp:meta_value>
|
946 |
-
</wp:postmeta>
|
947 |
-
<wp:postmeta>
|
948 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
949 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:29;s:6:"height";i:18;s:4:"file";s:24:"2016/01/icon-behance.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
950 |
-
</wp:postmeta>
|
951 |
-
</item>
|
952 |
-
<item>
|
953 |
-
<title>icon-facebook</title>
|
954 |
-
<link>http://portfoliotheme.org/visual-composer-addons/icon-facebook/</link>
|
955 |
-
<pubDate>Wed, 06 Jan 2016 13:07:20 +0000</pubDate>
|
956 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
957 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/icon-facebook.png</guid>
|
958 |
-
<description></description>
|
959 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
960 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
961 |
-
<wp:post_id>37</wp:post_id>
|
962 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:20]]></wp:post_date>
|
963 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:20]]></wp:post_date_gmt>
|
964 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
965 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
966 |
-
<wp:post_name><![CDATA[icon-facebook]]></wp:post_name>
|
967 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
968 |
-
<wp:post_parent>0</wp:post_parent>
|
969 |
-
<wp:menu_order>0</wp:menu_order>
|
970 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
971 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
972 |
-
<wp:is_sticky>0</wp:is_sticky>
|
973 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/icon-facebook.png]]></wp:attachment_url>
|
974 |
-
<wp:postmeta>
|
975 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
976 |
-
<wp:meta_value><![CDATA[2016/01/icon-facebook.png]]></wp:meta_value>
|
977 |
-
</wp:postmeta>
|
978 |
-
<wp:postmeta>
|
979 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
980 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:16;s:6:"height";i:26;s:4:"file";s:25:"2016/01/icon-facebook.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
981 |
-
</wp:postmeta>
|
982 |
-
</item>
|
983 |
-
<item>
|
984 |
-
<title>icon-googleplus</title>
|
985 |
-
<link>http://portfoliotheme.org/visual-composer-addons/icon-googleplus/</link>
|
986 |
-
<pubDate>Wed, 06 Jan 2016 13:07:21 +0000</pubDate>
|
987 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
988 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/icon-googleplus.png</guid>
|
989 |
-
<description></description>
|
990 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
991 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
992 |
-
<wp:post_id>38</wp:post_id>
|
993 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:21]]></wp:post_date>
|
994 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:21]]></wp:post_date_gmt>
|
995 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
996 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
997 |
-
<wp:post_name><![CDATA[icon-googleplus]]></wp:post_name>
|
998 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
999 |
-
<wp:post_parent>0</wp:post_parent>
|
1000 |
-
<wp:menu_order>0</wp:menu_order>
|
1001 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1002 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1003 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1004 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/icon-googleplus.png]]></wp:attachment_url>
|
1005 |
-
<wp:postmeta>
|
1006 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1007 |
-
<wp:meta_value><![CDATA[2016/01/icon-googleplus.png]]></wp:meta_value>
|
1008 |
-
</wp:postmeta>
|
1009 |
-
<wp:postmeta>
|
1010 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1011 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:22;s:6:"height";i:26;s:4:"file";s:27:"2016/01/icon-googleplus.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1012 |
-
</wp:postmeta>
|
1013 |
-
</item>
|
1014 |
-
<item>
|
1015 |
-
<title>icon-linkedin</title>
|
1016 |
-
<link>http://portfoliotheme.org/visual-composer-addons/icon-linkedin/</link>
|
1017 |
-
<pubDate>Wed, 06 Jan 2016 13:07:21 +0000</pubDate>
|
1018 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1019 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/icon-linkedin.png</guid>
|
1020 |
-
<description></description>
|
1021 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1022 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1023 |
-
<wp:post_id>39</wp:post_id>
|
1024 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:21]]></wp:post_date>
|
1025 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:21]]></wp:post_date_gmt>
|
1026 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1027 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1028 |
-
<wp:post_name><![CDATA[icon-linkedin]]></wp:post_name>
|
1029 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1030 |
-
<wp:post_parent>0</wp:post_parent>
|
1031 |
-
<wp:menu_order>0</wp:menu_order>
|
1032 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1033 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1034 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1035 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/icon-linkedin.png]]></wp:attachment_url>
|
1036 |
-
<wp:postmeta>
|
1037 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1038 |
-
<wp:meta_value><![CDATA[2016/01/icon-linkedin.png]]></wp:meta_value>
|
1039 |
-
</wp:postmeta>
|
1040 |
-
<wp:postmeta>
|
1041 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1042 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:27;s:6:"height";i:26;s:4:"file";s:25:"2016/01/icon-linkedin.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1043 |
-
</wp:postmeta>
|
1044 |
-
</item>
|
1045 |
-
<item>
|
1046 |
-
<title>icon-pinterest</title>
|
1047 |
-
<link>http://portfoliotheme.org/visual-composer-addons/icon-pinterest/</link>
|
1048 |
-
<pubDate>Wed, 06 Jan 2016 13:07:22 +0000</pubDate>
|
1049 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1050 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/icon-pinterest.png</guid>
|
1051 |
-
<description></description>
|
1052 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1053 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1054 |
-
<wp:post_id>40</wp:post_id>
|
1055 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:22]]></wp:post_date>
|
1056 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:22]]></wp:post_date_gmt>
|
1057 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1058 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1059 |
-
<wp:post_name><![CDATA[icon-pinterest]]></wp:post_name>
|
1060 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1061 |
-
<wp:post_parent>0</wp:post_parent>
|
1062 |
-
<wp:menu_order>0</wp:menu_order>
|
1063 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1064 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1065 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1066 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/icon-pinterest.png]]></wp:attachment_url>
|
1067 |
-
<wp:postmeta>
|
1068 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1069 |
-
<wp:meta_value><![CDATA[2016/01/icon-pinterest.png]]></wp:meta_value>
|
1070 |
-
</wp:postmeta>
|
1071 |
-
<wp:postmeta>
|
1072 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1073 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:22;s:6:"height";i:28;s:4:"file";s:26:"2016/01/icon-pinterest.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1074 |
-
</wp:postmeta>
|
1075 |
-
</item>
|
1076 |
-
<item>
|
1077 |
-
<title>icon-twitter</title>
|
1078 |
-
<link>http://portfoliotheme.org/visual-composer-addons/icon-twitter/</link>
|
1079 |
-
<pubDate>Wed, 06 Jan 2016 13:07:24 +0000</pubDate>
|
1080 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1081 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/icon-twitter.png</guid>
|
1082 |
-
<description></description>
|
1083 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1084 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1085 |
-
<wp:post_id>41</wp:post_id>
|
1086 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:24]]></wp:post_date>
|
1087 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:24]]></wp:post_date_gmt>
|
1088 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1089 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1090 |
-
<wp:post_name><![CDATA[icon-twitter]]></wp:post_name>
|
1091 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1092 |
-
<wp:post_parent>0</wp:post_parent>
|
1093 |
-
<wp:menu_order>0</wp:menu_order>
|
1094 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1095 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1096 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1097 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/icon-twitter.png]]></wp:attachment_url>
|
1098 |
-
<wp:postmeta>
|
1099 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1100 |
-
<wp:meta_value><![CDATA[2016/01/icon-twitter.png]]></wp:meta_value>
|
1101 |
-
</wp:postmeta>
|
1102 |
-
<wp:postmeta>
|
1103 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1104 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:28;s:6:"height";i:22;s:4:"file";s:24:"2016/01/icon-twitter.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1105 |
-
</wp:postmeta>
|
1106 |
-
</item>
|
1107 |
-
<item>
|
1108 |
-
<title>image1</title>
|
1109 |
-
<link>http://portfoliotheme.org/visual-composer-addons/image1/</link>
|
1110 |
-
<pubDate>Wed, 06 Jan 2016 13:07:27 +0000</pubDate>
|
1111 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1112 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/image1.jpg</guid>
|
1113 |
-
<description></description>
|
1114 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1115 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1116 |
-
<wp:post_id>42</wp:post_id>
|
1117 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:27]]></wp:post_date>
|
1118 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:27]]></wp:post_date_gmt>
|
1119 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1120 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1121 |
-
<wp:post_name><![CDATA[image1]]></wp:post_name>
|
1122 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1123 |
-
<wp:post_parent>0</wp:post_parent>
|
1124 |
-
<wp:menu_order>0</wp:menu_order>
|
1125 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1126 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1127 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1128 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/image1.jpg]]></wp:attachment_url>
|
1129 |
-
<wp:postmeta>
|
1130 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1131 |
-
<wp:meta_value><![CDATA[2016/01/image1.jpg]]></wp:meta_value>
|
1132 |
-
</wp:postmeta>
|
1133 |
-
<wp:postmeta>
|
1134 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1135 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:18:"2016/01/image1.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"image1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:18:"image1-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"image1-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"image1-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:18:"image1-550x400.jpg";s:5:"width";i:550;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:18:"image1-450x450.jpg";s:5:"width";i:450;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1136 |
-
</wp:postmeta>
|
1137 |
-
</item>
|
1138 |
-
<item>
|
1139 |
-
<title>image2</title>
|
1140 |
-
<link>http://portfoliotheme.org/visual-composer-addons/image2/</link>
|
1141 |
-
<pubDate>Wed, 06 Jan 2016 13:07:31 +0000</pubDate>
|
1142 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1143 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/image2.jpg</guid>
|
1144 |
-
<description></description>
|
1145 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1146 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1147 |
-
<wp:post_id>43</wp:post_id>
|
1148 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:31]]></wp:post_date>
|
1149 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:31]]></wp:post_date_gmt>
|
1150 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1151 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1152 |
-
<wp:post_name><![CDATA[image2]]></wp:post_name>
|
1153 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1154 |
-
<wp:post_parent>0</wp:post_parent>
|
1155 |
-
<wp:menu_order>0</wp:menu_order>
|
1156 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1157 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1158 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1159 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/image2.jpg]]></wp:attachment_url>
|
1160 |
-
<wp:postmeta>
|
1161 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1162 |
-
<wp:meta_value><![CDATA[2016/01/image2.jpg]]></wp:meta_value>
|
1163 |
-
</wp:postmeta>
|
1164 |
-
<wp:postmeta>
|
1165 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1166 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:18:"2016/01/image2.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"image2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:18:"image2-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"image2-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"image2-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:18:"image2-550x400.jpg";s:5:"width";i:550;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:18:"image2-450x450.jpg";s:5:"width";i:450;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1167 |
-
</wp:postmeta>
|
1168 |
-
</item>
|
1169 |
-
<item>
|
1170 |
-
<title>image3</title>
|
1171 |
-
<link>http://portfoliotheme.org/visual-composer-addons/image3/</link>
|
1172 |
-
<pubDate>Wed, 06 Jan 2016 13:07:35 +0000</pubDate>
|
1173 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1174 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/image3.jpg</guid>
|
1175 |
-
<description></description>
|
1176 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1177 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1178 |
-
<wp:post_id>44</wp:post_id>
|
1179 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:35]]></wp:post_date>
|
1180 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:35]]></wp:post_date_gmt>
|
1181 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1182 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1183 |
-
<wp:post_name><![CDATA[image3]]></wp:post_name>
|
1184 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1185 |
-
<wp:post_parent>0</wp:post_parent>
|
1186 |
-
<wp:menu_order>0</wp:menu_order>
|
1187 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1188 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1189 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1190 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/image3.jpg]]></wp:attachment_url>
|
1191 |
-
<wp:postmeta>
|
1192 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1193 |
-
<wp:meta_value><![CDATA[2016/01/image3.jpg]]></wp:meta_value>
|
1194 |
-
</wp:postmeta>
|
1195 |
-
<wp:postmeta>
|
1196 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1197 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:18:"2016/01/image3.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"image3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:18:"image3-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"image3-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"image3-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:18:"image3-550x400.jpg";s:5:"width";i:550;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:18:"image3-450x450.jpg";s:5:"width";i:450;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1198 |
-
</wp:postmeta>
|
1199 |
-
</item>
|
1200 |
-
<item>
|
1201 |
-
<title>image4</title>
|
1202 |
-
<link>http://portfoliotheme.org/visual-composer-addons/image4/</link>
|
1203 |
-
<pubDate>Wed, 06 Jan 2016 13:07:40 +0000</pubDate>
|
1204 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1205 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/image4.jpg</guid>
|
1206 |
-
<description></description>
|
1207 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1208 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1209 |
-
<wp:post_id>45</wp:post_id>
|
1210 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:40]]></wp:post_date>
|
1211 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:40]]></wp:post_date_gmt>
|
1212 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1213 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1214 |
-
<wp:post_name><![CDATA[image4]]></wp:post_name>
|
1215 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1216 |
-
<wp:post_parent>0</wp:post_parent>
|
1217 |
-
<wp:menu_order>0</wp:menu_order>
|
1218 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1219 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1220 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1221 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/image4.jpg]]></wp:attachment_url>
|
1222 |
-
<wp:postmeta>
|
1223 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1224 |
-
<wp:meta_value><![CDATA[2016/01/image4.jpg]]></wp:meta_value>
|
1225 |
-
</wp:postmeta>
|
1226 |
-
<wp:postmeta>
|
1227 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1228 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:18:"2016/01/image4.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"image4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:18:"image4-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"image4-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"image4-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:18:"image4-550x400.jpg";s:5:"width";i:550;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:18:"image4-450x450.jpg";s:5:"width";i:450;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1229 |
-
</wp:postmeta>
|
1230 |
-
</item>
|
1231 |
-
<item>
|
1232 |
-
<title>image5</title>
|
1233 |
-
<link>http://portfoliotheme.org/visual-composer-addons/image5/</link>
|
1234 |
-
<pubDate>Wed, 06 Jan 2016 13:07:46 +0000</pubDate>
|
1235 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1236 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/image5.jpg</guid>
|
1237 |
-
<description></description>
|
1238 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1239 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1240 |
-
<wp:post_id>46</wp:post_id>
|
1241 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:46]]></wp:post_date>
|
1242 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:46]]></wp:post_date_gmt>
|
1243 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1244 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1245 |
-
<wp:post_name><![CDATA[image5]]></wp:post_name>
|
1246 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1247 |
-
<wp:post_parent>0</wp:post_parent>
|
1248 |
-
<wp:menu_order>0</wp:menu_order>
|
1249 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1250 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1251 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1252 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/image5.jpg]]></wp:attachment_url>
|
1253 |
-
<wp:postmeta>
|
1254 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1255 |
-
<wp:meta_value><![CDATA[2016/01/image5.jpg]]></wp:meta_value>
|
1256 |
-
</wp:postmeta>
|
1257 |
-
<wp:postmeta>
|
1258 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1259 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:18:"2016/01/image5.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"image5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:18:"image5-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"image5-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"image5-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:18:"image5-550x400.jpg";s:5:"width";i:550;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:18:"image5-450x450.jpg";s:5:"width";i:450;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1260 |
-
</wp:postmeta>
|
1261 |
-
</item>
|
1262 |
-
<item>
|
1263 |
-
<title>image6</title>
|
1264 |
-
<link>http://portfoliotheme.org/visual-composer-addons/image6/</link>
|
1265 |
-
<pubDate>Wed, 06 Jan 2016 13:07:50 +0000</pubDate>
|
1266 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1267 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/image6.jpg</guid>
|
1268 |
-
<description></description>
|
1269 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1270 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1271 |
-
<wp:post_id>47</wp:post_id>
|
1272 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:50]]></wp:post_date>
|
1273 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:50]]></wp:post_date_gmt>
|
1274 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1275 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1276 |
-
<wp:post_name><![CDATA[image6]]></wp:post_name>
|
1277 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1278 |
-
<wp:post_parent>0</wp:post_parent>
|
1279 |
-
<wp:menu_order>0</wp:menu_order>
|
1280 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1281 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1282 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1283 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/image6.jpg]]></wp:attachment_url>
|
1284 |
-
<wp:postmeta>
|
1285 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1286 |
-
<wp:meta_value><![CDATA[2016/01/image6.jpg]]></wp:meta_value>
|
1287 |
-
</wp:postmeta>
|
1288 |
-
<wp:postmeta>
|
1289 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1290 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:18:"2016/01/image6.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"image6-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:18:"image6-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"image6-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"image6-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:18:"image6-550x400.jpg";s:5:"width";i:550;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:18:"image6-450x450.jpg";s:5:"width";i:450;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1291 |
-
</wp:postmeta>
|
1292 |
-
</item>
|
1293 |
-
<item>
|
1294 |
-
<title>service-1-1</title>
|
1295 |
-
<link>http://portfoliotheme.org/visual-composer-addons/service-1-1/</link>
|
1296 |
-
<pubDate>Wed, 06 Jan 2016 13:07:51 +0000</pubDate>
|
1297 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1298 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/service-1-1.png</guid>
|
1299 |
-
<description></description>
|
1300 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1301 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1302 |
-
<wp:post_id>48</wp:post_id>
|
1303 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:51]]></wp:post_date>
|
1304 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:51]]></wp:post_date_gmt>
|
1305 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1306 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1307 |
-
<wp:post_name><![CDATA[service-1-1]]></wp:post_name>
|
1308 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1309 |
-
<wp:post_parent>0</wp:post_parent>
|
1310 |
-
<wp:menu_order>0</wp:menu_order>
|
1311 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1312 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1313 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1314 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/service-1-1.png]]></wp:attachment_url>
|
1315 |
-
<wp:postmeta>
|
1316 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1317 |
-
<wp:meta_value><![CDATA[2016/01/service-1-1.png]]></wp:meta_value>
|
1318 |
-
</wp:postmeta>
|
1319 |
-
<wp:postmeta>
|
1320 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1321 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:128;s:6:"height";i:128;s:4:"file";s:23:"2016/01/service-1-1.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1322 |
-
</wp:postmeta>
|
1323 |
-
</item>
|
1324 |
-
<item>
|
1325 |
-
<title>service-1-2</title>
|
1326 |
-
<link>http://portfoliotheme.org/visual-composer-addons/service-1-2/</link>
|
1327 |
-
<pubDate>Wed, 06 Jan 2016 13:07:51 +0000</pubDate>
|
1328 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1329 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/service-1-2.png</guid>
|
1330 |
-
<description></description>
|
1331 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1332 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1333 |
-
<wp:post_id>49</wp:post_id>
|
1334 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:51]]></wp:post_date>
|
1335 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:51]]></wp:post_date_gmt>
|
1336 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1337 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1338 |
-
<wp:post_name><![CDATA[service-1-2]]></wp:post_name>
|
1339 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1340 |
-
<wp:post_parent>0</wp:post_parent>
|
1341 |
-
<wp:menu_order>0</wp:menu_order>
|
1342 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1343 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1344 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1345 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/service-1-2.png]]></wp:attachment_url>
|
1346 |
-
<wp:postmeta>
|
1347 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1348 |
-
<wp:meta_value><![CDATA[2016/01/service-1-2.png]]></wp:meta_value>
|
1349 |
-
</wp:postmeta>
|
1350 |
-
<wp:postmeta>
|
1351 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1352 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:128;s:6:"height";i:128;s:4:"file";s:23:"2016/01/service-1-2.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1353 |
-
</wp:postmeta>
|
1354 |
-
</item>
|
1355 |
-
<item>
|
1356 |
-
<title>service-1-3</title>
|
1357 |
-
<link>http://portfoliotheme.org/visual-composer-addons/service-1-3/</link>
|
1358 |
-
<pubDate>Wed, 06 Jan 2016 13:07:52 +0000</pubDate>
|
1359 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1360 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/service-1-3.png</guid>
|
1361 |
-
<description></description>
|
1362 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1363 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1364 |
-
<wp:post_id>50</wp:post_id>
|
1365 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:52]]></wp:post_date>
|
1366 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:52]]></wp:post_date_gmt>
|
1367 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1368 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1369 |
-
<wp:post_name><![CDATA[service-1-3]]></wp:post_name>
|
1370 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1371 |
-
<wp:post_parent>0</wp:post_parent>
|
1372 |
-
<wp:menu_order>0</wp:menu_order>
|
1373 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1374 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1375 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1376 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/service-1-3.png]]></wp:attachment_url>
|
1377 |
-
<wp:postmeta>
|
1378 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1379 |
-
<wp:meta_value><![CDATA[2016/01/service-1-3.png]]></wp:meta_value>
|
1380 |
-
</wp:postmeta>
|
1381 |
-
<wp:postmeta>
|
1382 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1383 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:128;s:6:"height";i:128;s:4:"file";s:23:"2016/01/service-1-3.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1384 |
-
</wp:postmeta>
|
1385 |
-
</item>
|
1386 |
-
<item>
|
1387 |
-
<title>service-2-1</title>
|
1388 |
-
<link>http://portfoliotheme.org/visual-composer-addons/service-2-1/</link>
|
1389 |
-
<pubDate>Wed, 06 Jan 2016 13:07:53 +0000</pubDate>
|
1390 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1391 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/service-2-1.png</guid>
|
1392 |
-
<description></description>
|
1393 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1394 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1395 |
-
<wp:post_id>51</wp:post_id>
|
1396 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:53]]></wp:post_date>
|
1397 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:53]]></wp:post_date_gmt>
|
1398 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1399 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1400 |
-
<wp:post_name><![CDATA[service-2-1]]></wp:post_name>
|
1401 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1402 |
-
<wp:post_parent>0</wp:post_parent>
|
1403 |
-
<wp:menu_order>0</wp:menu_order>
|
1404 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1405 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1406 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1407 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/service-2-1.png]]></wp:attachment_url>
|
1408 |
-
<wp:postmeta>
|
1409 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1410 |
-
<wp:meta_value><![CDATA[2016/01/service-2-1.png]]></wp:meta_value>
|
1411 |
-
</wp:postmeta>
|
1412 |
-
<wp:postmeta>
|
1413 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1414 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:32;s:6:"height";i:27;s:4:"file";s:23:"2016/01/service-2-1.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1415 |
-
</wp:postmeta>
|
1416 |
-
</item>
|
1417 |
-
<item>
|
1418 |
-
<title>service-2-2</title>
|
1419 |
-
<link>http://portfoliotheme.org/visual-composer-addons/service-2-2/</link>
|
1420 |
-
<pubDate>Wed, 06 Jan 2016 13:07:53 +0000</pubDate>
|
1421 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1422 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/service-2-2.png</guid>
|
1423 |
-
<description></description>
|
1424 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1425 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1426 |
-
<wp:post_id>52</wp:post_id>
|
1427 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:53]]></wp:post_date>
|
1428 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:53]]></wp:post_date_gmt>
|
1429 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1430 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1431 |
-
<wp:post_name><![CDATA[service-2-2]]></wp:post_name>
|
1432 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1433 |
-
<wp:post_parent>0</wp:post_parent>
|
1434 |
-
<wp:menu_order>0</wp:menu_order>
|
1435 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1436 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1437 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1438 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/service-2-2.png]]></wp:attachment_url>
|
1439 |
-
<wp:postmeta>
|
1440 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1441 |
-
<wp:meta_value><![CDATA[2016/01/service-2-2.png]]></wp:meta_value>
|
1442 |
-
</wp:postmeta>
|
1443 |
-
<wp:postmeta>
|
1444 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1445 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:32;s:6:"height";i:32;s:4:"file";s:23:"2016/01/service-2-2.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1446 |
-
</wp:postmeta>
|
1447 |
-
</item>
|
1448 |
-
<item>
|
1449 |
-
<title>service-2-3</title>
|
1450 |
-
<link>http://portfoliotheme.org/visual-composer-addons/service-2-3/</link>
|
1451 |
-
<pubDate>Wed, 06 Jan 2016 13:07:54 +0000</pubDate>
|
1452 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1453 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/service-2-3.png</guid>
|
1454 |
-
<description></description>
|
1455 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1456 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1457 |
-
<wp:post_id>53</wp:post_id>
|
1458 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:54]]></wp:post_date>
|
1459 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:54]]></wp:post_date_gmt>
|
1460 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1461 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1462 |
-
<wp:post_name><![CDATA[service-2-3]]></wp:post_name>
|
1463 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1464 |
-
<wp:post_parent>0</wp:post_parent>
|
1465 |
-
<wp:menu_order>0</wp:menu_order>
|
1466 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1467 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1468 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1469 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/service-2-3.png]]></wp:attachment_url>
|
1470 |
-
<wp:postmeta>
|
1471 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1472 |
-
<wp:meta_value><![CDATA[2016/01/service-2-3.png]]></wp:meta_value>
|
1473 |
-
</wp:postmeta>
|
1474 |
-
<wp:postmeta>
|
1475 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1476 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:32;s:6:"height";i:32;s:4:"file";s:23:"2016/01/service-2-3.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1477 |
-
</wp:postmeta>
|
1478 |
-
</item>
|
1479 |
-
<item>
|
1480 |
-
<title>service-2-4</title>
|
1481 |
-
<link>http://portfoliotheme.org/visual-composer-addons/service-2-4/</link>
|
1482 |
-
<pubDate>Wed, 06 Jan 2016 13:07:55 +0000</pubDate>
|
1483 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1484 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/service-2-4.png</guid>
|
1485 |
-
<description></description>
|
1486 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1487 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1488 |
-
<wp:post_id>54</wp:post_id>
|
1489 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:55]]></wp:post_date>
|
1490 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:55]]></wp:post_date_gmt>
|
1491 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1492 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1493 |
-
<wp:post_name><![CDATA[service-2-4]]></wp:post_name>
|
1494 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1495 |
-
<wp:post_parent>0</wp:post_parent>
|
1496 |
-
<wp:menu_order>0</wp:menu_order>
|
1497 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1498 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1499 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1500 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/service-2-4.png]]></wp:attachment_url>
|
1501 |
-
<wp:postmeta>
|
1502 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1503 |
-
<wp:meta_value><![CDATA[2016/01/service-2-4.png]]></wp:meta_value>
|
1504 |
-
</wp:postmeta>
|
1505 |
-
<wp:postmeta>
|
1506 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1507 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:32;s:6:"height";i:32;s:4:"file";s:23:"2016/01/service-2-4.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1508 |
-
</wp:postmeta>
|
1509 |
-
</item>
|
1510 |
-
<item>
|
1511 |
-
<title>service-2-5</title>
|
1512 |
-
<link>http://portfoliotheme.org/visual-composer-addons/service-2-5/</link>
|
1513 |
-
<pubDate>Wed, 06 Jan 2016 13:07:56 +0000</pubDate>
|
1514 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1515 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/service-2-5.png</guid>
|
1516 |
-
<description></description>
|
1517 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1518 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1519 |
-
<wp:post_id>55</wp:post_id>
|
1520 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:56]]></wp:post_date>
|
1521 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:56]]></wp:post_date_gmt>
|
1522 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1523 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1524 |
-
<wp:post_name><![CDATA[service-2-5]]></wp:post_name>
|
1525 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1526 |
-
<wp:post_parent>0</wp:post_parent>
|
1527 |
-
<wp:menu_order>0</wp:menu_order>
|
1528 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1529 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1530 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1531 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/service-2-5.png]]></wp:attachment_url>
|
1532 |
-
<wp:postmeta>
|
1533 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1534 |
-
<wp:meta_value><![CDATA[2016/01/service-2-5.png]]></wp:meta_value>
|
1535 |
-
</wp:postmeta>
|
1536 |
-
<wp:postmeta>
|
1537 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1538 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:32;s:6:"height";i:25;s:4:"file";s:23:"2016/01/service-2-5.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1539 |
-
</wp:postmeta>
|
1540 |
-
</item>
|
1541 |
-
<item>
|
1542 |
-
<title>service-2-6</title>
|
1543 |
-
<link>http://portfoliotheme.org/visual-composer-addons/service-2-6/</link>
|
1544 |
-
<pubDate>Wed, 06 Jan 2016 13:07:57 +0000</pubDate>
|
1545 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1546 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/service-2-6.png</guid>
|
1547 |
-
<description></description>
|
1548 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1549 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1550 |
-
<wp:post_id>56</wp:post_id>
|
1551 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:57]]></wp:post_date>
|
1552 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:57]]></wp:post_date_gmt>
|
1553 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1554 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1555 |
-
<wp:post_name><![CDATA[service-2-6]]></wp:post_name>
|
1556 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1557 |
-
<wp:post_parent>0</wp:post_parent>
|
1558 |
-
<wp:menu_order>0</wp:menu_order>
|
1559 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1560 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1561 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1562 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/service-2-6.png]]></wp:attachment_url>
|
1563 |
-
<wp:postmeta>
|
1564 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1565 |
-
<wp:meta_value><![CDATA[2016/01/service-2-6.png]]></wp:meta_value>
|
1566 |
-
</wp:postmeta>
|
1567 |
-
<wp:postmeta>
|
1568 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1569 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:32;s:6:"height";i:30;s:4:"file";s:23:"2016/01/service-2-6.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1570 |
-
</wp:postmeta>
|
1571 |
-
</item>
|
1572 |
-
<item>
|
1573 |
-
<title>stats1</title>
|
1574 |
-
<link>http://portfoliotheme.org/visual-composer-addons/stats1/</link>
|
1575 |
-
<pubDate>Wed, 06 Jan 2016 13:07:57 +0000</pubDate>
|
1576 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1577 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/stats1.png</guid>
|
1578 |
-
<description></description>
|
1579 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1580 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1581 |
-
<wp:post_id>57</wp:post_id>
|
1582 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:57]]></wp:post_date>
|
1583 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:57]]></wp:post_date_gmt>
|
1584 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1585 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1586 |
-
<wp:post_name><![CDATA[stats1]]></wp:post_name>
|
1587 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1588 |
-
<wp:post_parent>0</wp:post_parent>
|
1589 |
-
<wp:menu_order>0</wp:menu_order>
|
1590 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1591 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1592 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1593 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/stats1.png]]></wp:attachment_url>
|
1594 |
-
<wp:postmeta>
|
1595 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1596 |
-
<wp:meta_value><![CDATA[2016/01/stats1.png]]></wp:meta_value>
|
1597 |
-
</wp:postmeta>
|
1598 |
-
<wp:postmeta>
|
1599 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1600 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:32;s:6:"height";i:32;s:4:"file";s:18:"2016/01/stats1.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1601 |
-
</wp:postmeta>
|
1602 |
-
</item>
|
1603 |
-
<item>
|
1604 |
-
<title>stats2</title>
|
1605 |
-
<link>http://portfoliotheme.org/visual-composer-addons/stats2/</link>
|
1606 |
-
<pubDate>Wed, 06 Jan 2016 13:07:58 +0000</pubDate>
|
1607 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1608 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/stats2.png</guid>
|
1609 |
-
<description></description>
|
1610 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1611 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1612 |
-
<wp:post_id>58</wp:post_id>
|
1613 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:58]]></wp:post_date>
|
1614 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:58]]></wp:post_date_gmt>
|
1615 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1616 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1617 |
-
<wp:post_name><![CDATA[stats2]]></wp:post_name>
|
1618 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1619 |
-
<wp:post_parent>0</wp:post_parent>
|
1620 |
-
<wp:menu_order>0</wp:menu_order>
|
1621 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1622 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1623 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1624 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/stats2.png]]></wp:attachment_url>
|
1625 |
-
<wp:postmeta>
|
1626 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1627 |
-
<wp:meta_value><![CDATA[2016/01/stats2.png]]></wp:meta_value>
|
1628 |
-
</wp:postmeta>
|
1629 |
-
<wp:postmeta>
|
1630 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1631 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:28;s:6:"height";i:26;s:4:"file";s:18:"2016/01/stats2.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1632 |
-
</wp:postmeta>
|
1633 |
-
</item>
|
1634 |
-
<item>
|
1635 |
-
<title>stats3</title>
|
1636 |
-
<link>http://portfoliotheme.org/visual-composer-addons/stats3/</link>
|
1637 |
-
<pubDate>Wed, 06 Jan 2016 13:07:59 +0000</pubDate>
|
1638 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1639 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/stats3.png</guid>
|
1640 |
-
<description></description>
|
1641 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1642 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1643 |
-
<wp:post_id>59</wp:post_id>
|
1644 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:59]]></wp:post_date>
|
1645 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:59]]></wp:post_date_gmt>
|
1646 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1647 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1648 |
-
<wp:post_name><![CDATA[stats3]]></wp:post_name>
|
1649 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1650 |
-
<wp:post_parent>0</wp:post_parent>
|
1651 |
-
<wp:menu_order>0</wp:menu_order>
|
1652 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1653 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1654 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1655 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/stats3.png]]></wp:attachment_url>
|
1656 |
-
<wp:postmeta>
|
1657 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1658 |
-
<wp:meta_value><![CDATA[2016/01/stats3.png]]></wp:meta_value>
|
1659 |
-
</wp:postmeta>
|
1660 |
-
<wp:postmeta>
|
1661 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1662 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:32;s:6:"height";i:30;s:4:"file";s:18:"2016/01/stats3.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1663 |
-
</wp:postmeta>
|
1664 |
-
</item>
|
1665 |
-
<item>
|
1666 |
-
<title>stats4</title>
|
1667 |
-
<link>http://portfoliotheme.org/visual-composer-addons/stats4/</link>
|
1668 |
-
<pubDate>Wed, 06 Jan 2016 13:07:59 +0000</pubDate>
|
1669 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1670 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/stats4.png</guid>
|
1671 |
-
<description></description>
|
1672 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1673 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1674 |
-
<wp:post_id>60</wp:post_id>
|
1675 |
-
<wp:post_date><![CDATA[2016-01-06 13:07:59]]></wp:post_date>
|
1676 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:07:59]]></wp:post_date_gmt>
|
1677 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1678 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1679 |
-
<wp:post_name><![CDATA[stats4]]></wp:post_name>
|
1680 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1681 |
-
<wp:post_parent>0</wp:post_parent>
|
1682 |
-
<wp:menu_order>0</wp:menu_order>
|
1683 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1684 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1685 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1686 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/stats4.png]]></wp:attachment_url>
|
1687 |
-
<wp:postmeta>
|
1688 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1689 |
-
<wp:meta_value><![CDATA[2016/01/stats4.png]]></wp:meta_value>
|
1690 |
-
</wp:postmeta>
|
1691 |
-
<wp:postmeta>
|
1692 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1693 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:30;s:6:"height";i:30;s:4:"file";s:18:"2016/01/stats4.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1694 |
-
</wp:postmeta>
|
1695 |
-
</item>
|
1696 |
-
<item>
|
1697 |
-
<title>team1</title>
|
1698 |
-
<link>http://portfoliotheme.org/visual-composer-addons/team1/</link>
|
1699 |
-
<pubDate>Wed, 06 Jan 2016 13:08:01 +0000</pubDate>
|
1700 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1701 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/team1.png</guid>
|
1702 |
-
<description></description>
|
1703 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1704 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1705 |
-
<wp:post_id>61</wp:post_id>
|
1706 |
-
<wp:post_date><![CDATA[2016-01-06 13:08:01]]></wp:post_date>
|
1707 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:08:01]]></wp:post_date_gmt>
|
1708 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1709 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1710 |
-
<wp:post_name><![CDATA[team1]]></wp:post_name>
|
1711 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1712 |
-
<wp:post_parent>0</wp:post_parent>
|
1713 |
-
<wp:menu_order>0</wp:menu_order>
|
1714 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1715 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1716 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1717 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/team1.png]]></wp:attachment_url>
|
1718 |
-
<wp:postmeta>
|
1719 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1720 |
-
<wp:meta_value><![CDATA[2016/01/team1.png]]></wp:meta_value>
|
1721 |
-
</wp:postmeta>
|
1722 |
-
<wp:postmeta>
|
1723 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1724 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:260;s:6:"height";i:260;s:4:"file";s:17:"2016/01/team1.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"team1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1725 |
-
</wp:postmeta>
|
1726 |
-
</item>
|
1727 |
-
<item>
|
1728 |
-
<title>team2</title>
|
1729 |
-
<link>http://portfoliotheme.org/visual-composer-addons/team2/</link>
|
1730 |
-
<pubDate>Wed, 06 Jan 2016 13:08:03 +0000</pubDate>
|
1731 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1732 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/team2.png</guid>
|
1733 |
-
<description></description>
|
1734 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1735 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1736 |
-
<wp:post_id>62</wp:post_id>
|
1737 |
-
<wp:post_date><![CDATA[2016-01-06 13:08:03]]></wp:post_date>
|
1738 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:08:03]]></wp:post_date_gmt>
|
1739 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1740 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1741 |
-
<wp:post_name><![CDATA[team2]]></wp:post_name>
|
1742 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1743 |
-
<wp:post_parent>0</wp:post_parent>
|
1744 |
-
<wp:menu_order>0</wp:menu_order>
|
1745 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1746 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1747 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1748 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/team2.png]]></wp:attachment_url>
|
1749 |
-
<wp:postmeta>
|
1750 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1751 |
-
<wp:meta_value><![CDATA[2016/01/team2.png]]></wp:meta_value>
|
1752 |
-
</wp:postmeta>
|
1753 |
-
<wp:postmeta>
|
1754 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1755 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:260;s:6:"height";i:260;s:4:"file";s:17:"2016/01/team2.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"team2-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1756 |
-
</wp:postmeta>
|
1757 |
-
</item>
|
1758 |
-
<item>
|
1759 |
-
<title>team3</title>
|
1760 |
-
<link>http://portfoliotheme.org/visual-composer-addons/team3/</link>
|
1761 |
-
<pubDate>Wed, 06 Jan 2016 13:08:06 +0000</pubDate>
|
1762 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1763 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/team3.png</guid>
|
1764 |
-
<description></description>
|
1765 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1766 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1767 |
-
<wp:post_id>63</wp:post_id>
|
1768 |
-
<wp:post_date><![CDATA[2016-01-06 13:08:06]]></wp:post_date>
|
1769 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:08:06]]></wp:post_date_gmt>
|
1770 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1771 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1772 |
-
<wp:post_name><![CDATA[team3]]></wp:post_name>
|
1773 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1774 |
-
<wp:post_parent>0</wp:post_parent>
|
1775 |
-
<wp:menu_order>0</wp:menu_order>
|
1776 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1777 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1778 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1779 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/team3.png]]></wp:attachment_url>
|
1780 |
-
<wp:postmeta>
|
1781 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1782 |
-
<wp:meta_value><![CDATA[2016/01/team3.png]]></wp:meta_value>
|
1783 |
-
</wp:postmeta>
|
1784 |
-
<wp:postmeta>
|
1785 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1786 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:260;s:6:"height";i:260;s:4:"file";s:17:"2016/01/team3.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"team3-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1787 |
-
</wp:postmeta>
|
1788 |
-
</item>
|
1789 |
-
<item>
|
1790 |
-
<title>testimonial2</title>
|
1791 |
-
<link>http://portfoliotheme.org/visual-composer-addons/testimonial2/</link>
|
1792 |
-
<pubDate>Wed, 06 Jan 2016 13:55:08 +0000</pubDate>
|
1793 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1794 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/testimonial2.jpg</guid>
|
1795 |
-
<description></description>
|
1796 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1797 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1798 |
-
<wp:post_id>12433</wp:post_id>
|
1799 |
-
<wp:post_date><![CDATA[2016-01-06 13:55:08]]></wp:post_date>
|
1800 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:55:08]]></wp:post_date_gmt>
|
1801 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1802 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1803 |
-
<wp:post_name><![CDATA[testimonial2]]></wp:post_name>
|
1804 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1805 |
-
<wp:post_parent>0</wp:post_parent>
|
1806 |
-
<wp:menu_order>0</wp:menu_order>
|
1807 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1808 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1809 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1810 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/testimonial2.jpg]]></wp:attachment_url>
|
1811 |
-
<wp:postmeta>
|
1812 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1813 |
-
<wp:meta_value><![CDATA[2016/01/testimonial2.jpg]]></wp:meta_value>
|
1814 |
-
</wp:postmeta>
|
1815 |
-
<wp:postmeta>
|
1816 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1817 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:120;s:6:"height";i:120;s:4:"file";s:24:"2016/01/testimonial2.jpg";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1818 |
-
</wp:postmeta>
|
1819 |
-
</item>
|
1820 |
-
<item>
|
1821 |
-
<title>testimonial1</title>
|
1822 |
-
<link>http://portfoliotheme.org/visual-composer-addons/testimonial1/</link>
|
1823 |
-
<pubDate>Wed, 06 Jan 2016 13:55:09 +0000</pubDate>
|
1824 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1825 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/testimonial1.jpg</guid>
|
1826 |
-
<description></description>
|
1827 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1828 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1829 |
-
<wp:post_id>12434</wp:post_id>
|
1830 |
-
<wp:post_date><![CDATA[2016-01-06 13:55:09]]></wp:post_date>
|
1831 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:55:09]]></wp:post_date_gmt>
|
1832 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1833 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1834 |
-
<wp:post_name><![CDATA[testimonial1]]></wp:post_name>
|
1835 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1836 |
-
<wp:post_parent>0</wp:post_parent>
|
1837 |
-
<wp:menu_order>0</wp:menu_order>
|
1838 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1839 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1840 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1841 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/testimonial1.jpg]]></wp:attachment_url>
|
1842 |
-
<wp:postmeta>
|
1843 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1844 |
-
<wp:meta_value><![CDATA[2016/01/testimonial1.jpg]]></wp:meta_value>
|
1845 |
-
</wp:postmeta>
|
1846 |
-
<wp:postmeta>
|
1847 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1848 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:120;s:6:"height";i:120;s:4:"file";s:24:"2016/01/testimonial1.jpg";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1849 |
-
</wp:postmeta>
|
1850 |
-
</item>
|
1851 |
-
<item>
|
1852 |
-
<title>testimonial3</title>
|
1853 |
-
<link>http://portfoliotheme.org/visual-composer-addons/testimonial3/</link>
|
1854 |
-
<pubDate>Wed, 06 Jan 2016 13:55:10 +0000</pubDate>
|
1855 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1856 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/testimonial3.jpg</guid>
|
1857 |
-
<description></description>
|
1858 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1859 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1860 |
-
<wp:post_id>12435</wp:post_id>
|
1861 |
-
<wp:post_date><![CDATA[2016-01-06 13:55:10]]></wp:post_date>
|
1862 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:55:10]]></wp:post_date_gmt>
|
1863 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1864 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1865 |
-
<wp:post_name><![CDATA[testimonial3]]></wp:post_name>
|
1866 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1867 |
-
<wp:post_parent>0</wp:post_parent>
|
1868 |
-
<wp:menu_order>0</wp:menu_order>
|
1869 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1870 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1871 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1872 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/testimonial3.jpg]]></wp:attachment_url>
|
1873 |
-
<wp:postmeta>
|
1874 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1875 |
-
<wp:meta_value><![CDATA[2016/01/testimonial3.jpg]]></wp:meta_value>
|
1876 |
-
</wp:postmeta>
|
1877 |
-
<wp:postmeta>
|
1878 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1879 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:120;s:6:"height";i:120;s:4:"file";s:24:"2016/01/testimonial3.jpg";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:135:"This material is dedicated to the public domain under the Creative Commons Zero Waver http://creativecommons.org/publicdomain/zero/1.0/";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1880 |
-
</wp:postmeta>
|
1881 |
-
</item>
|
1882 |
-
<item>
|
1883 |
-
<title>img-carousel4</title>
|
1884 |
-
<link>http://portfoliotheme.org/visual-composer-addons/img-carousel4/</link>
|
1885 |
-
<pubDate>Wed, 06 Jan 2016 13:55:12 +0000</pubDate>
|
1886 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1887 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-carousel4.jpg</guid>
|
1888 |
-
<description></description>
|
1889 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
1890 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1891 |
-
<wp:post_id>12436</wp:post_id>
|
1892 |
-
<wp:post_date><![CDATA[2016-01-06 13:55:12]]></wp:post_date>
|
1893 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 13:55:12]]></wp:post_date_gmt>
|
1894 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1895 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1896 |
-
<wp:post_name><![CDATA[img-carousel4]]></wp:post_name>
|
1897 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
1898 |
-
<wp:post_parent>0</wp:post_parent>
|
1899 |
-
<wp:menu_order>0</wp:menu_order>
|
1900 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
1901 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1902 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1903 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-carousel4.jpg]]></wp:attachment_url>
|
1904 |
-
<wp:postmeta>
|
1905 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
1906 |
-
<wp:meta_value><![CDATA[2016/01/img-carousel4.jpg]]></wp:meta_value>
|
1907 |
-
</wp:postmeta>
|
1908 |
-
<wp:postmeta>
|
1909 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
1910 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:800;s:6:"height";i:533;s:4:"file";s:25:"2016/01/img-carousel4.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"img-carousel4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"img-carousel4-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"img-carousel4-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:25:"img-carousel4-550x400.jpg";s:5:"width";i:550;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:25:"img-carousel4-450x450.jpg";s:5:"width";i:450;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
1911 |
-
</wp:postmeta>
|
1912 |
-
</item>
|
1913 |
-
<item>
|
1914 |
-
<title>Portfolio 2</title>
|
1915 |
-
<link>http://portfoliotheme.org/visual-composer-addons/portfolio/hello-there/</link>
|
1916 |
-
<pubDate>Fri, 27 Nov 2015 10:49:31 +0000</pubDate>
|
1917 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1918 |
-
<guid isPermaLink="false">http://localhost/wp32dev/peak/?post_type=jetpack-portfolio&p=12248</guid>
|
1919 |
-
<description></description>
|
1920 |
-
<content:encoded><![CDATA[Praesent venenatis metus at tortor pulvinar varius. Duis lobortis massa imperdiet quam. Nunc interdum lacus sit amet orci. Ut tincidunt tincidunt erat. Ut non enim eleifend felis pretium feugiat.]]></content:encoded>
|
1921 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1922 |
-
<wp:post_id>12248</wp:post_id>
|
1923 |
-
<wp:post_date><![CDATA[2015-11-27 10:49:31]]></wp:post_date>
|
1924 |
-
<wp:post_date_gmt><![CDATA[2015-11-27 10:49:31]]></wp:post_date_gmt>
|
1925 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1926 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1927 |
-
<wp:post_name><![CDATA[hello-there]]></wp:post_name>
|
1928 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
1929 |
-
<wp:post_parent>0</wp:post_parent>
|
1930 |
-
<wp:menu_order>0</wp:menu_order>
|
1931 |
-
<wp:post_type><![CDATA[jetpack-portfolio]]></wp:post_type>
|
1932 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1933 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1934 |
-
<category domain="jetpack-portfolio-type" nicename="inspiration"><![CDATA[Inspiration]]></category>
|
1935 |
-
<wp:postmeta>
|
1936 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
1937 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
1938 |
-
</wp:postmeta>
|
1939 |
-
<wp:postmeta>
|
1940 |
-
<wp:meta_key><![CDATA[_wpas_done_all]]></wp:meta_key>
|
1941 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
1942 |
-
</wp:postmeta>
|
1943 |
-
<wp:postmeta>
|
1944 |
-
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
1945 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
1946 |
-
</wp:postmeta>
|
1947 |
-
<wp:postmeta>
|
1948 |
-
<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
|
1949 |
-
<wp:meta_value><![CDATA[42]]></wp:meta_value>
|
1950 |
-
</wp:postmeta>
|
1951 |
-
</item>
|
1952 |
-
<item>
|
1953 |
-
<title>Portfolio 1</title>
|
1954 |
-
<link>http://portfoliotheme.org/visual-composer-addons/portfolio/another-one/</link>
|
1955 |
-
<pubDate>Fri, 27 Nov 2015 10:53:42 +0000</pubDate>
|
1956 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1957 |
-
<guid isPermaLink="false">http://localhost/wp32dev/peak/?post_type=jetpack-portfolio&p=12251</guid>
|
1958 |
-
<description></description>
|
1959 |
-
<content:encoded><![CDATA[Aenean vulputate eleifend tellus. Nullam tincidunt adipiscing enim. Nullam dictum felis eu pede mollis pretium. Sed aliquam ultrices mauris. Cras id dui.<!--more-->]]></content:encoded>
|
1960 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
1961 |
-
<wp:post_id>12251</wp:post_id>
|
1962 |
-
<wp:post_date><![CDATA[2015-11-27 10:53:42]]></wp:post_date>
|
1963 |
-
<wp:post_date_gmt><![CDATA[2015-11-27 10:53:42]]></wp:post_date_gmt>
|
1964 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
1965 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
1966 |
-
<wp:post_name><![CDATA[another-one]]></wp:post_name>
|
1967 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
1968 |
-
<wp:post_parent>0</wp:post_parent>
|
1969 |
-
<wp:menu_order>0</wp:menu_order>
|
1970 |
-
<wp:post_type><![CDATA[jetpack-portfolio]]></wp:post_type>
|
1971 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
1972 |
-
<wp:is_sticky>0</wp:is_sticky>
|
1973 |
-
<category domain="jetpack-portfolio-type" nicename="just-another"><![CDATA[Just another]]></category>
|
1974 |
-
<wp:postmeta>
|
1975 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
1976 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
1977 |
-
</wp:postmeta>
|
1978 |
-
<wp:postmeta>
|
1979 |
-
<wp:meta_key><![CDATA[_wpas_done_all]]></wp:meta_key>
|
1980 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
1981 |
-
</wp:postmeta>
|
1982 |
-
<wp:postmeta>
|
1983 |
-
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
1984 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
1985 |
-
</wp:postmeta>
|
1986 |
-
<wp:postmeta>
|
1987 |
-
<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
|
1988 |
-
<wp:meta_value><![CDATA[43]]></wp:meta_value>
|
1989 |
-
</wp:postmeta>
|
1990 |
-
</item>
|
1991 |
-
<item>
|
1992 |
-
<title>Portfolio 3</title>
|
1993 |
-
<link>http://portfoliotheme.org/visual-composer-addons/portfolio/portfolio-3/</link>
|
1994 |
-
<pubDate>Mon, 28 Dec 2015 12:21:54 +0000</pubDate>
|
1995 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
1996 |
-
<guid isPermaLink="false">http://localhost/wp32dev/peak/?post_type=jetpack-portfolio&p=12422</guid>
|
1997 |
-
<description></description>
|
1998 |
-
<content:encoded><![CDATA[Ut varius tincidunt libero. Vivamus consectetuer hendrerit lacus. Sed in libero ut nibh placerat accumsan. Vestibulum volutpat pretium libero. Vestibulum volutpat pretium libero.<!--more-->
|
1999 |
-
|
2000 |
-
Ut id nisl quis enim dignissim sagittis. Fusce fermentum odio nec arcu. Mauris sollicitudin fermentum libero. Phasellus consectetuer vestibulum elit. Donec venenatis vulputate lorem.
|
2001 |
-
|
2002 |
-
Integer ante arcu, accumsan a, consectetuer eget, posuere ut, mauris. Praesent nonummy mi in odio. Aenean posuere, tortor sed cursus feugiat, nunc augue blandit nunc, eu sollicitudin urna dolor sagittis lacus. Proin sapien ipsum, porta a, auctor quis, euismod ut, mi. Phasellus gravida semper nisi.]]></content:encoded>
|
2003 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
2004 |
-
<wp:post_id>12422</wp:post_id>
|
2005 |
-
<wp:post_date><![CDATA[2015-12-28 12:21:54]]></wp:post_date>
|
2006 |
-
<wp:post_date_gmt><![CDATA[2015-12-28 12:21:54]]></wp:post_date_gmt>
|
2007 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
2008 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
2009 |
-
<wp:post_name><![CDATA[portfolio-3]]></wp:post_name>
|
2010 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
2011 |
-
<wp:post_parent>0</wp:post_parent>
|
2012 |
-
<wp:menu_order>0</wp:menu_order>
|
2013 |
-
<wp:post_type><![CDATA[jetpack-portfolio]]></wp:post_type>
|
2014 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
2015 |
-
<wp:is_sticky>0</wp:is_sticky>
|
2016 |
-
<category domain="jetpack-portfolio-type" nicename="inspiration"><![CDATA[Inspiration]]></category>
|
2017 |
-
<wp:postmeta>
|
2018 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
2019 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
2020 |
-
</wp:postmeta>
|
2021 |
-
<wp:postmeta>
|
2022 |
-
<wp:meta_key><![CDATA[_wpas_done_all]]></wp:meta_key>
|
2023 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
2024 |
-
</wp:postmeta>
|
2025 |
-
<wp:postmeta>
|
2026 |
-
<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
|
2027 |
-
<wp:meta_value><![CDATA[45]]></wp:meta_value>
|
2028 |
-
</wp:postmeta>
|
2029 |
-
<wp:postmeta>
|
2030 |
-
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
2031 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
2032 |
-
</wp:postmeta>
|
2033 |
-
</item>
|
2034 |
-
<item>
|
2035 |
-
<title>Portfolio 4</title>
|
2036 |
-
<link>http://portfoliotheme.org/visual-composer-addons/portfolio/portfolio-4/</link>
|
2037 |
-
<pubDate>Mon, 28 Dec 2015 12:23:02 +0000</pubDate>
|
2038 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
2039 |
-
<guid isPermaLink="false">http://localhost/wp32dev/peak/?post_type=jetpack-portfolio&p=12423</guid>
|
2040 |
-
<description></description>
|
2041 |
-
<content:encoded><![CDATA[Vestibulum turpis sem, aliquet eget, lobortis pellentesque, rutrum eu, nisl. Donec id justo. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. <!--more-->Morbi vestibulum volutpat enim. Phasellus leo dolor, tempus non, auctor et, hendrerit quis, nisi.
|
2042 |
-
|
2043 |
-
Phasellus a est. Vivamus aliquet elit ac nisl. Aenean ut eros et nisl sagittis vestibulum. Sed hendrerit. Phasellus ullamcorper ipsum rutrum nunc.
|
2044 |
-
|
2045 |
-
Quisque malesuada placerat nisl. Vestibulum volutpat pretium libero. Pellentesque egestas, neque sit amet convallis pulvinar, justo nulla eleifend augue, ac auctor orci leo non est. Quisque malesuada placerat nisl. In consectetuer turpis ut velit.]]></content:encoded>
|
2046 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
2047 |
-
<wp:post_id>12423</wp:post_id>
|
2048 |
-
<wp:post_date><![CDATA[2015-12-28 12:23:02]]></wp:post_date>
|
2049 |
-
<wp:post_date_gmt><![CDATA[2015-12-28 12:23:02]]></wp:post_date_gmt>
|
2050 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
2051 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
2052 |
-
<wp:post_name><![CDATA[portfolio-4]]></wp:post_name>
|
2053 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
2054 |
-
<wp:post_parent>0</wp:post_parent>
|
2055 |
-
<wp:menu_order>0</wp:menu_order>
|
2056 |
-
<wp:post_type><![CDATA[jetpack-portfolio]]></wp:post_type>
|
2057 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
2058 |
-
<wp:is_sticky>0</wp:is_sticky>
|
2059 |
-
<category domain="jetpack-portfolio-type" nicename="business"><![CDATA[Business]]></category>
|
2060 |
-
<wp:postmeta>
|
2061 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
2062 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
2063 |
-
</wp:postmeta>
|
2064 |
-
<wp:postmeta>
|
2065 |
-
<wp:meta_key><![CDATA[_wpas_done_all]]></wp:meta_key>
|
2066 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
2067 |
-
</wp:postmeta>
|
2068 |
-
<wp:postmeta>
|
2069 |
-
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
2070 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
2071 |
-
</wp:postmeta>
|
2072 |
-
<wp:postmeta>
|
2073 |
-
<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
|
2074 |
-
<wp:meta_value><![CDATA[44]]></wp:meta_value>
|
2075 |
-
</wp:postmeta>
|
2076 |
-
</item>
|
2077 |
-
<item>
|
2078 |
-
<title>Portfolio 5</title>
|
2079 |
-
<link>http://portfoliotheme.org/visual-composer-addons/portfolio/portfolio-5/</link>
|
2080 |
-
<pubDate>Mon, 28 Dec 2015 12:26:12 +0000</pubDate>
|
2081 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
2082 |
-
<guid isPermaLink="false">http://localhost/wp32dev/peak/?post_type=jetpack-portfolio&p=12424</guid>
|
2083 |
-
<description></description>
|
2084 |
-
<content:encoded><![CDATA[Etiam imperdiet imperdiet orci. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In ac dui quis mi consectetuer lacinia. Pellentesque dapibus hendrerit tortor. Nullam sagittis. Nullam dictum felis eu pede mollis pretium.<!--more-->
|
2085 |
-
|
2086 |
-
Suspendisse nisl elit, rhoncus eget, elementum ac, condimentum eget, diam. Vestibulum volutpat pretium libero. Fusce risus nisl, viverra et, tempor et, pretium in, sapien. Ut leo. Quisque libero metus, condimentum nec, tempor a, commodo mollis, magna.
|
2087 |
-
|
2088 |
-
Etiam feugiat lorem non metus. Ut tincidunt tincidunt erat. In ac felis quis tortor malesuada pretium. Cras varius. Aenean massa.]]></content:encoded>
|
2089 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
2090 |
-
<wp:post_id>12424</wp:post_id>
|
2091 |
-
<wp:post_date><![CDATA[2015-12-28 12:26:12]]></wp:post_date>
|
2092 |
-
<wp:post_date_gmt><![CDATA[2015-12-28 12:26:12]]></wp:post_date_gmt>
|
2093 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
2094 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
2095 |
-
<wp:post_name><![CDATA[portfolio-5]]></wp:post_name>
|
2096 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
2097 |
-
<wp:post_parent>0</wp:post_parent>
|
2098 |
-
<wp:menu_order>0</wp:menu_order>
|
2099 |
-
<wp:post_type><![CDATA[jetpack-portfolio]]></wp:post_type>
|
2100 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
2101 |
-
<wp:is_sticky>0</wp:is_sticky>
|
2102 |
-
<category domain="jetpack-portfolio-type" nicename="business"><![CDATA[Business]]></category>
|
2103 |
-
<wp:postmeta>
|
2104 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
2105 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
2106 |
-
</wp:postmeta>
|
2107 |
-
<wp:postmeta>
|
2108 |
-
<wp:meta_key><![CDATA[_wpas_done_all]]></wp:meta_key>
|
2109 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
2110 |
-
</wp:postmeta>
|
2111 |
-
<wp:postmeta>
|
2112 |
-
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
2113 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
2114 |
-
</wp:postmeta>
|
2115 |
-
<wp:postmeta>
|
2116 |
-
<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
|
2117 |
-
<wp:meta_value><![CDATA[46]]></wp:meta_value>
|
2118 |
-
</wp:postmeta>
|
2119 |
-
<wp:postmeta>
|
2120 |
-
<wp:meta_key><![CDATA[_wp_old_slug]]></wp:meta_key>
|
2121 |
-
<wp:meta_value><![CDATA[portfolio-4-2]]></wp:meta_value>
|
2122 |
-
</wp:postmeta>
|
2123 |
-
</item>
|
2124 |
-
<item>
|
2125 |
-
<title>Portfolio 6</title>
|
2126 |
-
<link>http://portfoliotheme.org/visual-composer-addons/portfolio/portfolio-6/</link>
|
2127 |
-
<pubDate>Tue, 29 Dec 2015 02:35:43 +0000</pubDate>
|
2128 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
2129 |
-
<guid isPermaLink="false">http://localhost/wp32dev/peak/?post_type=jetpack-portfolio&p=12428</guid>
|
2130 |
-
<description></description>
|
2131 |
-
<content:encoded><![CDATA[Aenean vulputate eleifend tellus. Nullam tincidunt adipiscing enim. Nullam dictum felis eu pede mollis pretium. Sed aliquam ultrices mauris. Cras id dui. Morbi ac felis. Ut varius tincidunt libero. Quisque rutrum. Donec venenatis vulputate lorem. Morbi ac felis.<!--more-->
|
2132 |
-
|
2133 |
-
]]></content:encoded>
|
2134 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
2135 |
-
<wp:post_id>12428</wp:post_id>
|
2136 |
-
<wp:post_date><![CDATA[2015-12-29 02:35:43]]></wp:post_date>
|
2137 |
-
<wp:post_date_gmt><![CDATA[2015-12-29 02:35:43]]></wp:post_date_gmt>
|
2138 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
2139 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
2140 |
-
<wp:post_name><![CDATA[portfolio-6]]></wp:post_name>
|
2141 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
2142 |
-
<wp:post_parent>0</wp:post_parent>
|
2143 |
-
<wp:menu_order>0</wp:menu_order>
|
2144 |
-
<wp:post_type><![CDATA[jetpack-portfolio]]></wp:post_type>
|
2145 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
2146 |
-
<wp:is_sticky>0</wp:is_sticky>
|
2147 |
-
<category domain="jetpack-portfolio-type" nicename="just-another"><![CDATA[Just another]]></category>
|
2148 |
-
<wp:postmeta>
|
2149 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
2150 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
2151 |
-
</wp:postmeta>
|
2152 |
-
<wp:postmeta>
|
2153 |
-
<wp:meta_key><![CDATA[_wpas_done_all]]></wp:meta_key>
|
2154 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
2155 |
-
</wp:postmeta>
|
2156 |
-
<wp:postmeta>
|
2157 |
-
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
2158 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
2159 |
-
</wp:postmeta>
|
2160 |
-
<wp:postmeta>
|
2161 |
-
<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
|
2162 |
-
<wp:meta_value><![CDATA[47]]></wp:meta_value>
|
2163 |
-
</wp:postmeta>
|
2164 |
-
<wp:postmeta>
|
2165 |
-
<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
|
2166 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
2167 |
-
</wp:postmeta>
|
2168 |
-
</item>
|
2169 |
-
<item>
|
2170 |
-
<title>iPhone Tips</title>
|
2171 |
-
<link>http://portfoliotheme.org/visual-composer-addons/2016/01/06/hello-world-2/</link>
|
2172 |
-
<pubDate>Wed, 06 Jan 2016 12:38:08 +0000</pubDate>
|
2173 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
2174 |
-
<guid isPermaLink="false">http://portfoliotheme.org/siteorigin-widgets/?p=1</guid>
|
2175 |
-
<description></description>
|
2176 |
-
<content:encoded><![CDATA[Phasellus gravida semper nisi. Ut a nisl id ante tempus hendrerit. Cras id dui. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Quisque ut nisi.
|
2177 |
-
|
2178 |
-
Ut tincidunt tincidunt erat. Phasellus volutpat, metus eget egestas mollis, lacus lacus blandit dui, id egestas quam mauris ut lacus. Curabitur a felis in nunc fringilla tristique. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum. In consectetuer turpis ut velit.]]></content:encoded>
|
2179 |
-
<excerpt:encoded><![CDATA[Phasellus gravida semper nisi. Ut a nisl id ante tempus hendrerit. Cras id dui. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. ]]></excerpt:encoded>
|
2180 |
-
<wp:post_id>12437</wp:post_id>
|
2181 |
-
<wp:post_date><![CDATA[2016-01-06 12:38:08]]></wp:post_date>
|
2182 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 12:38:08]]></wp:post_date_gmt>
|
2183 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
2184 |
-
<wp:ping_status><![CDATA[open]]></wp:ping_status>
|
2185 |
-
<wp:post_name><![CDATA[hello-world-2]]></wp:post_name>
|
2186 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
2187 |
-
<wp:post_parent>0</wp:post_parent>
|
2188 |
-
<wp:menu_order>0</wp:menu_order>
|
2189 |
-
<wp:post_type><![CDATA[post]]></wp:post_type>
|
2190 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
2191 |
-
<wp:is_sticky>0</wp:is_sticky>
|
2192 |
-
<category domain="category" nicename="technology"><![CDATA[Technology]]></category>
|
2193 |
-
<category domain="category" nicename="tips"><![CDATA[Tips]]></category>
|
2194 |
-
<wp:postmeta>
|
2195 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
2196 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
2197 |
-
</wp:postmeta>
|
2198 |
-
<wp:postmeta>
|
2199 |
-
<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
|
2200 |
-
<wp:meta_value><![CDATA[34]]></wp:meta_value>
|
2201 |
-
</wp:postmeta>
|
2202 |
-
<wp:postmeta>
|
2203 |
-
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
2204 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
2205 |
-
</wp:postmeta>
|
2206 |
-
<wp:postmeta>
|
2207 |
-
<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
|
2208 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
2209 |
-
</wp:postmeta>
|
2210 |
-
<wp:postmeta>
|
2211 |
-
<wp:meta_key><![CDATA[mo_slider_choice]]></wp:meta_key>
|
2212 |
-
<wp:meta_value><![CDATA[None]]></wp:meta_value>
|
2213 |
-
</wp:postmeta>
|
2214 |
-
<wp:postmeta>
|
2215 |
-
<wp:meta_key><![CDATA[mo_custom_primary_navigation_menu]]></wp:meta_key>
|
2216 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
2217 |
-
</wp:postmeta>
|
2218 |
-
<wp:postmeta>
|
2219 |
-
<wp:meta_key><![CDATA[mo_current_post_layout]]></wp:meta_key>
|
2220 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
2221 |
-
</wp:postmeta>
|
2222 |
-
<wp:postmeta>
|
2223 |
-
<wp:meta_key><![CDATA[mo_primary_sidebar_choice]]></wp:meta_key>
|
2224 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
2225 |
-
</wp:postmeta>
|
2226 |
-
<wp:comment>
|
2227 |
-
<wp:comment_id>2</wp:comment_id>
|
2228 |
-
<wp:comment_author><![CDATA[]]></wp:comment_author>
|
2229 |
-
<wp:comment_author_email><![CDATA[]]></wp:comment_author_email>
|
2230 |
-
<wp:comment_author_url></wp:comment_author_url>
|
2231 |
-
<wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
|
2232 |
-
<wp:comment_date><![CDATA[2016-01-06 12:38:08]]></wp:comment_date>
|
2233 |
-
<wp:comment_date_gmt><![CDATA[2016-01-06 12:38:08]]></wp:comment_date_gmt>
|
2234 |
-
<wp:comment_content><![CDATA[]]></wp:comment_content>
|
2235 |
-
<wp:comment_approved><![CDATA[1]]></wp:comment_approved>
|
2236 |
-
<wp:comment_type><![CDATA[]]></wp:comment_type>
|
2237 |
-
<wp:comment_parent>0</wp:comment_parent>
|
2238 |
-
<wp:comment_user_id>0</wp:comment_user_id>
|
2239 |
-
</wp:comment>
|
2240 |
-
</item>
|
2241 |
-
<item>
|
2242 |
-
<title>Portfolio 7</title>
|
2243 |
-
<link>http://portfoliotheme.org/visual-composer-addons/portfolio/portfolio-7/</link>
|
2244 |
-
<pubDate>Thu, 07 Jan 2016 13:53:49 +0000</pubDate>
|
2245 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
2246 |
-
<guid isPermaLink="false">http://portfoliotheme.org/siteorigin-widgets/?post_type=jetpack-portfolio&p=12464</guid>
|
2247 |
-
<description></description>
|
2248 |
-
<content:encoded><![CDATA[Aenean vulputate eleifend tellus. Nullam tincidunt adipiscing enim. Nullam dictum felis eu pede mollis pretium. Sed aliquam ultrices mauris. Cras id dui.<!--more-->]]></content:encoded>
|
2249 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
2250 |
-
<wp:post_id>12464</wp:post_id>
|
2251 |
-
<wp:post_date><![CDATA[2016-01-07 13:53:49]]></wp:post_date>
|
2252 |
-
<wp:post_date_gmt><![CDATA[2016-01-07 13:53:49]]></wp:post_date_gmt>
|
2253 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
2254 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
2255 |
-
<wp:post_name><![CDATA[portfolio-7]]></wp:post_name>
|
2256 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
2257 |
-
<wp:post_parent>0</wp:post_parent>
|
2258 |
-
<wp:menu_order>0</wp:menu_order>
|
2259 |
-
<wp:post_type><![CDATA[jetpack-portfolio]]></wp:post_type>
|
2260 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
2261 |
-
<wp:is_sticky>0</wp:is_sticky>
|
2262 |
-
<category domain="jetpack-portfolio-type" nicename="business"><![CDATA[Business]]></category>
|
2263 |
-
<wp:postmeta>
|
2264 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
2265 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
2266 |
-
</wp:postmeta>
|
2267 |
-
<wp:postmeta>
|
2268 |
-
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
2269 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
2270 |
-
</wp:postmeta>
|
2271 |
-
<wp:postmeta>
|
2272 |
-
<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
|
2273 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
2274 |
-
</wp:postmeta>
|
2275 |
-
<wp:postmeta>
|
2276 |
-
<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
|
2277 |
-
<wp:meta_value><![CDATA[12465]]></wp:meta_value>
|
2278 |
-
</wp:postmeta>
|
2279 |
-
</item>
|
2280 |
-
<item>
|
2281 |
-
<title>image8</title>
|
2282 |
-
<link>http://portfoliotheme.org/visual-composer-addons/portfolio/portfolio-7/image8/</link>
|
2283 |
-
<pubDate>Thu, 07 Jan 2016 13:53:24 +0000</pubDate>
|
2284 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
2285 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/image8.jpg</guid>
|
2286 |
-
<description></description>
|
2287 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
2288 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
2289 |
-
<wp:post_id>12465</wp:post_id>
|
2290 |
-
<wp:post_date><![CDATA[2016-01-07 13:53:24]]></wp:post_date>
|
2291 |
-
<wp:post_date_gmt><![CDATA[2016-01-07 13:53:24]]></wp:post_date_gmt>
|
2292 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
2293 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
2294 |
-
<wp:post_name><![CDATA[image8]]></wp:post_name>
|
2295 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
2296 |
-
<wp:post_parent>12464</wp:post_parent>
|
2297 |
-
<wp:menu_order>0</wp:menu_order>
|
2298 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
2299 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
2300 |
-
<wp:is_sticky>0</wp:is_sticky>
|
2301 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/image8.jpg]]></wp:attachment_url>
|
2302 |
-
<wp:postmeta>
|
2303 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
2304 |
-
<wp:meta_value><![CDATA[2016/01/image8.jpg]]></wp:meta_value>
|
2305 |
-
</wp:postmeta>
|
2306 |
-
<wp:postmeta>
|
2307 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
2308 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:18:"2016/01/image8.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"image8-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:18:"image8-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"image8-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"image8-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:18:"image8-550x400.jpg";s:5:"width";i:550;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:18:"image8-450x450.jpg";s:5:"width";i:450;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
2309 |
-
</wp:postmeta>
|
2310 |
-
</item>
|
2311 |
-
<item>
|
2312 |
-
<title>image7</title>
|
2313 |
-
<link>http://portfoliotheme.org/visual-composer-addons/portfolio/portfolio-7/image7/</link>
|
2314 |
-
<pubDate>Thu, 07 Jan 2016 13:53:28 +0000</pubDate>
|
2315 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
2316 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/image7.jpg</guid>
|
2317 |
-
<description></description>
|
2318 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
2319 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
2320 |
-
<wp:post_id>12466</wp:post_id>
|
2321 |
-
<wp:post_date><![CDATA[2016-01-07 13:53:28]]></wp:post_date>
|
2322 |
-
<wp:post_date_gmt><![CDATA[2016-01-07 13:53:28]]></wp:post_date_gmt>
|
2323 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
2324 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
2325 |
-
<wp:post_name><![CDATA[image7]]></wp:post_name>
|
2326 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
2327 |
-
<wp:post_parent>12464</wp:post_parent>
|
2328 |
-
<wp:menu_order>0</wp:menu_order>
|
2329 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
2330 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
2331 |
-
<wp:is_sticky>0</wp:is_sticky>
|
2332 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/image7.jpg]]></wp:attachment_url>
|
2333 |
-
<wp:postmeta>
|
2334 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
2335 |
-
<wp:meta_value><![CDATA[2016/01/image7.jpg]]></wp:meta_value>
|
2336 |
-
</wp:postmeta>
|
2337 |
-
<wp:postmeta>
|
2338 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
2339 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:18:"2016/01/image7.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"image7-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:18:"image7-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"image7-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"image7-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:18:"image7-550x400.jpg";s:5:"width";i:550;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:18:"image7-450x450.jpg";s:5:"width";i:450;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
2340 |
-
</wp:postmeta>
|
2341 |
-
</item>
|
2342 |
-
<item>
|
2343 |
-
<title>Portfolio 8</title>
|
2344 |
-
<link>http://portfoliotheme.org/visual-composer-addons/portfolio/portfolio-8/</link>
|
2345 |
-
<pubDate>Thu, 07 Jan 2016 13:54:45 +0000</pubDate>
|
2346 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
2347 |
-
<guid isPermaLink="false">http://portfoliotheme.org/siteorigin-widgets/?post_type=jetpack-portfolio&p=12467</guid>
|
2348 |
-
<description></description>
|
2349 |
-
<content:encoded><![CDATA[Curabitur at lacus ac velit ornare lobortis. Fusce convallis metus id felis luctus adipiscing. Pellentesque ut neque. Quisque id mi. Vivamus elementum semper nisi.
|
2350 |
-
|
2351 |
-
Morbi ac felis. Pellentesque libero tortor, tincidunt et, tincidunt eget, semper nec, quam. Sed libero. Mauris turpis nunc, blandit et, volutpat molestie, porta ut, ligula. Phasellus tempus.
|
2352 |
-
|
2353 |
-
Aenean massa. <!--more-->Vestibulum eu odio. Etiam imperdiet imperdiet orci. Nam commodo suscipit quam. Vivamus aliquet elit ac nisl.]]></content:encoded>
|
2354 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
2355 |
-
<wp:post_id>12467</wp:post_id>
|
2356 |
-
<wp:post_date><![CDATA[2016-01-07 13:54:45]]></wp:post_date>
|
2357 |
-
<wp:post_date_gmt><![CDATA[2016-01-07 13:54:45]]></wp:post_date_gmt>
|
2358 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
2359 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
2360 |
-
<wp:post_name><![CDATA[portfolio-8]]></wp:post_name>
|
2361 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
2362 |
-
<wp:post_parent>0</wp:post_parent>
|
2363 |
-
<wp:menu_order>0</wp:menu_order>
|
2364 |
-
<wp:post_type><![CDATA[jetpack-portfolio]]></wp:post_type>
|
2365 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
2366 |
-
<wp:is_sticky>0</wp:is_sticky>
|
2367 |
-
<category domain="jetpack-portfolio-type" nicename="just-another"><![CDATA[Just another]]></category>
|
2368 |
-
<wp:postmeta>
|
2369 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
2370 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
2371 |
-
</wp:postmeta>
|
2372 |
-
<wp:postmeta>
|
2373 |
-
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
2374 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
2375 |
-
</wp:postmeta>
|
2376 |
-
<wp:postmeta>
|
2377 |
-
<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
|
2378 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
2379 |
-
</wp:postmeta>
|
2380 |
-
<wp:postmeta>
|
2381 |
-
<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
|
2382 |
-
<wp:meta_value><![CDATA[12466]]></wp:meta_value>
|
2383 |
-
</wp:postmeta>
|
2384 |
-
</item>
|
2385 |
-
<item>
|
2386 |
-
<title>Portfolio 9</title>
|
2387 |
-
<link>http://portfoliotheme.org/visual-composer-addons/portfolio/portfolio-9/</link>
|
2388 |
-
<pubDate>Mon, 11 Jan 2016 14:40:48 +0000</pubDate>
|
2389 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
2390 |
-
<guid isPermaLink="false">http://portfoliotheme.org/siteorigin-widgets/?post_type=jetpack-portfolio&p=12479</guid>
|
2391 |
-
<description></description>
|
2392 |
-
<content:encoded><![CDATA[Etiam imperdiet imperdiet orci. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; In ac dui quis mi consectetuer lacinia. Pellentesque dapibus hendrerit tortor. Nullam sagittis. Nullam dictum felis eu pede mollis pretium.]]></content:encoded>
|
2393 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
2394 |
-
<wp:post_id>12479</wp:post_id>
|
2395 |
-
<wp:post_date><![CDATA[2016-01-11 14:40:48]]></wp:post_date>
|
2396 |
-
<wp:post_date_gmt><![CDATA[2016-01-11 14:40:48]]></wp:post_date_gmt>
|
2397 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
2398 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
2399 |
-
<wp:post_name><![CDATA[portfolio-9]]></wp:post_name>
|
2400 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
2401 |
-
<wp:post_parent>0</wp:post_parent>
|
2402 |
-
<wp:menu_order>0</wp:menu_order>
|
2403 |
-
<wp:post_type><![CDATA[jetpack-portfolio]]></wp:post_type>
|
2404 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
2405 |
-
<wp:is_sticky>0</wp:is_sticky>
|
2406 |
-
<category domain="jetpack-portfolio-type" nicename="inspiration"><![CDATA[Inspiration]]></category>
|
2407 |
-
<wp:postmeta>
|
2408 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
2409 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
2410 |
-
</wp:postmeta>
|
2411 |
-
<wp:postmeta>
|
2412 |
-
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
2413 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
2414 |
-
</wp:postmeta>
|
2415 |
-
<wp:postmeta>
|
2416 |
-
<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
|
2417 |
-
<wp:meta_value><![CDATA[12480]]></wp:meta_value>
|
2418 |
-
</wp:postmeta>
|
2419 |
-
<wp:postmeta>
|
2420 |
-
<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
|
2421 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
2422 |
-
</wp:postmeta>
|
2423 |
-
<wp:comment>
|
2424 |
-
<wp:comment_id>3</wp:comment_id>
|
2425 |
-
<wp:comment_author><![CDATA[fdgfd]]></wp:comment_author>
|
2426 |
-
<wp:comment_author_email><![CDATA[dfgdfg@ggg.jjj]]></wp:comment_author_email>
|
2427 |
-
<wp:comment_author_url>http://dfg</wp:comment_author_url>
|
2428 |
-
<wp:comment_author_IP><![CDATA[103.197.133.3]]></wp:comment_author_IP>
|
2429 |
-
<wp:comment_date><![CDATA[2016-02-23 14:18:27]]></wp:comment_date>
|
2430 |
-
<wp:comment_date_gmt><![CDATA[2016-02-23 14:18:27]]></wp:comment_date_gmt>
|
2431 |
-
<wp:comment_content><![CDATA[fdsrgdf]]></wp:comment_content>
|
2432 |
-
<wp:comment_approved><![CDATA[0]]></wp:comment_approved>
|
2433 |
-
<wp:comment_type><![CDATA[]]></wp:comment_type>
|
2434 |
-
<wp:comment_parent>0</wp:comment_parent>
|
2435 |
-
<wp:comment_user_id>0</wp:comment_user_id>
|
2436 |
-
<wp:commentmeta>
|
2437 |
-
<wp:meta_key><![CDATA[akismet_error]]></wp:meta_key>
|
2438 |
-
<wp:meta_value><![CDATA[1456237108]]></wp:meta_value>
|
2439 |
-
</wp:commentmeta>
|
2440 |
-
<wp:commentmeta>
|
2441 |
-
<wp:meta_key><![CDATA[akismet_history]]></wp:meta_key>
|
2442 |
-
<wp:meta_value><![CDATA[a:3:{s:4:"time";d:1456237108.5459571;s:5:"event";s:11:"check-error";s:4:"meta";a:1:{s:8:"response";s:7:"invalid";}}]]></wp:meta_value>
|
2443 |
-
</wp:commentmeta>
|
2444 |
-
</wp:comment>
|
2445 |
-
</item>
|
2446 |
-
<item>
|
2447 |
-
<title>image9</title>
|
2448 |
-
<link>http://portfoliotheme.org/visual-composer-addons/portfolio/portfolio-9/image9/</link>
|
2449 |
-
<pubDate>Mon, 11 Jan 2016 14:40:35 +0000</pubDate>
|
2450 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
2451 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/image9.jpg</guid>
|
2452 |
-
<description></description>
|
2453 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
2454 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
2455 |
-
<wp:post_id>12480</wp:post_id>
|
2456 |
-
<wp:post_date><![CDATA[2016-01-11 14:40:35]]></wp:post_date>
|
2457 |
-
<wp:post_date_gmt><![CDATA[2016-01-11 14:40:35]]></wp:post_date_gmt>
|
2458 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
2459 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
2460 |
-
<wp:post_name><![CDATA[image9]]></wp:post_name>
|
2461 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
2462 |
-
<wp:post_parent>12479</wp:post_parent>
|
2463 |
-
<wp:menu_order>0</wp:menu_order>
|
2464 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
2465 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
2466 |
-
<wp:is_sticky>0</wp:is_sticky>
|
2467 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/image9.jpg]]></wp:attachment_url>
|
2468 |
-
<wp:postmeta>
|
2469 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
2470 |
-
<wp:meta_value><![CDATA[2016/01/image9.jpg]]></wp:meta_value>
|
2471 |
-
</wp:postmeta>
|
2472 |
-
<wp:postmeta>
|
2473 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
2474 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:18:"2016/01/image9.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"image9-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:18:"image9-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"image9-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"image9-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:18:"image9-550x400.jpg";s:5:"width";i:550;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:18:"image9-450x450.jpg";s:5:"width";i:450;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
2475 |
-
</wp:postmeta>
|
2476 |
-
</item>
|
2477 |
-
<item>
|
2478 |
-
<title>Visual Composer Addons Demo</title>
|
2479 |
-
<link>http://portfoliotheme.org/visual-composer-addons/</link>
|
2480 |
-
<pubDate>Tue, 26 Jan 2016 11:12:25 +0000</pubDate>
|
2481 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
2482 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/?page_id=12484</guid>
|
2483 |
-
<description></description>
|
2484 |
-
<content:encoded><![CDATA[[vc_row full_width="stretch_row" content_placement="middle" css=".vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}"][vc_column][vc_column_text]
|
2485 |
-
<h3 class="lvca-widget-heading">Services</h3>
|
2486 |
-
[/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454132563457{background-color: #ffffff !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="20"][/lvca_spacer][lvca_heading heading="We Create Quality Designs" short_text="We specialize in <strong>Web Design // Development</strong> and Graphic Design"][lvca_services per_line="3"][lvca_service_item icon_type="icon_image" title="Premium Widgets" icon_image="48" excerpt="We always provide Quality Services. You dynamically monetize synergistic."][/lvca_service_item][lvca_service_item icon_type="icon_image" title="Custom Webpage" icon_image="49" excerpt="We always provide Quality Services. You dynamically monetize synergistic."][/lvca_service_item][lvca_service_item icon_type="icon_image" title="User Friendly" icon_image="50" excerpt="We always provide Quality Services. You dynamically monetize synergistic."][/lvca_service_item][/lvca_services][lvca_spacer desktop_spacing="40" tablet_width="960" tablet_spacing="20" mobile_width="480" mobile_spacing="0"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1453728032394{background-color: #1b1b1c !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="20"][/lvca_spacer][lvca_heading heading="We Create Quality Designs" short_text="We specialize in <strong>Web Design // Development</strong> and Graphic Design"][lvca_services per_line="3"][lvca_service_item icon_type="icon_image" title="Premium Widgets" icon_image="48" excerpt="We always provide Quality Services. You dynamically monetize synergistic."][/lvca_service_item][lvca_service_item icon_type="icon_image" title="Custom Webpage" icon_image="49" excerpt="We always provide Quality Services. You dynamically monetize synergistic."][/lvca_service_item][lvca_service_item icon_type="icon_image" title="User Friendly" icon_image="50" excerpt="We always provide Quality Services. You dynamically monetize synergistic."][/lvca_service_item][/lvca_services][lvca_spacer desktop_spacing="40" tablet_width="960" tablet_spacing="20" mobile_width="480" mobile_spacing="0"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1453728583165{background-color: #f1f1f1 !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="20"][/lvca_spacer][lvca_heading heading="We Create Quality Designs" short_text="We specialize in <strong>Web Design // Development</strong> and Graphic Design"][lvca_services style="style2" per_line="3"][lvca_service_item icon_type="icon_image" title="UI/UX" icon_image="51" excerpt="Change the business-growth section with video to match this action. Nice way to stop spam in the contact."][/lvca_service_item][lvca_service_item icon_type="icon_image" title="Development" icon_image="52" excerpt="Change the business-growth section with video to match this action. Nice way to stop spam in the contact."][/lvca_service_item][lvca_service_item icon_type="icon_image" title="Research" icon_image="53" excerpt="Change the business-growth section with video to match this action. Nice way to stop spam in the contact."][/lvca_service_item][lvca_service_item icon_type="icon_image" title="Branding" icon_image="54" excerpt="Change the business-growth section with video to match this action. Nice way to stop spam in the contact."][/lvca_service_item][lvca_service_item icon_type="icon_image" title="Prototyping" icon_image="55" excerpt="Change the business-growth section with video to match this action. Nice way to stop spam in the contact."][/lvca_service_item][lvca_service_item icon_type="icon_image" title="Illustration" icon_image="56" excerpt="Change the business-growth section with video to match this action. Nice way to stop spam in the contact."][/lvca_service_item][/lvca_services][lvca_spacer desktop_spacing="40" tablet_width="960" tablet_spacing="20" mobile_width="480" mobile_spacing="0"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1453728814774{background-color: #1b1b1c !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="20"][/lvca_spacer][lvca_heading heading="We Create Quality Designs" short_text="We specialize in <strong>Web Design // Development</strong> and Graphic Design"][lvca_services style="style2" per_line="3"][lvca_service_item icon_type="icon_image" title="UI/UX" icon_image="51" excerpt="Change the business-growth section with video to match this action. Nice way to stop spam in the contact."][/lvca_service_item][lvca_service_item icon_type="icon_image" title="Development" icon_image="52" excerpt="Change the business-growth section with video to match this action. Nice way to stop spam in the contact."][/lvca_service_item][lvca_service_item icon_type="icon_image" title="Research" icon_image="53" excerpt="Change the business-growth section with video to match this action. Nice way to stop spam in the contact."][/lvca_service_item][lvca_service_item icon_type="icon_image" title="Branding" icon_image="54" excerpt="Change the business-growth section with video to match this action. Nice way to stop spam in the contact."][/lvca_service_item][lvca_service_item icon_type="icon_image" title="Prototyping" icon_image="55" excerpt="Change the business-growth section with video to match this action. Nice way to stop spam in the contact."][/lvca_service_item][lvca_service_item icon_type="icon_image" title="Illustration" icon_image="56" excerpt="Change the business-growth section with video to match this action. Nice way to stop spam in the contact."][/lvca_service_item][/lvca_services][lvca_spacer desktop_spacing="40" tablet_width="960" tablet_spacing="20" mobile_width="480" mobile_spacing="0"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454132563457{background-color: #ffffff !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="20"][/lvca_spacer][lvca_heading style="style3" heading="We Create Quality Designs"][lvca_services style="style3" per_line="3"][lvca_service_item icon_fontawesome="fa fa-dribbble" title="Design + Creative" excerpt="We always provide Quality Services. You dynamically monetize synergistic."]
|
2487 |
-
<ul class="lvca-services-list">
|
2488 |
-
<li>User Experience</li>
|
2489 |
-
<li>Web & Mobile UI</li>
|
2490 |
-
<li>Conversion focused</li>
|
2491 |
-
<li>Brand Development</li>
|
2492 |
-
<li>Video & Animation</li>
|
2493 |
-
<li>Email Campaigns</li>
|
2494 |
-
</ul>
|
2495 |
-
[/lvca_service_item][lvca_service_item icon_fontawesome="fa fa-toggle-off" title="Premium Widgets" excerpt="We always provide Quality Services. You dynamically monetize synergistic."]
|
2496 |
-
<ul class="lvca-services-list">
|
2497 |
-
<li>Competitor Research & Audits</li>
|
2498 |
-
<li>Digital Brand Strategy</li>
|
2499 |
-
<li>User Research</li>
|
2500 |
-
<li>Business Requirements Analysis</li>
|
2501 |
-
<li>Digital Project Management</li>
|
2502 |
-
<li>Email Campaigns</li>
|
2503 |
-
</ul>
|
2504 |
-
[/lvca_service_item][lvca_service_item icon_fontawesome="fa fa-code" title="User Friendly" excerpt="We always provide Quality Services. You dynamically monetize synergistic."]
|
2505 |
-
<ul class="lvca-services-list">
|
2506 |
-
<li>Maintainable Code</li>
|
2507 |
-
<li>SASS Products</li>
|
2508 |
-
<li>Fast Turnaround</li>
|
2509 |
-
<li>Architecture Driven</li>
|
2510 |
-
<li>Well Documented</li>
|
2511 |
-
<li>Agile Methodology</li>
|
2512 |
-
</ul>
|
2513 |
-
[/lvca_service_item][/lvca_services][lvca_spacer desktop_spacing="40" tablet_width="960" tablet_spacing="20" mobile_width="480" mobile_spacing="0"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1457402873024{background-color: #1b1b1c !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="20"][/lvca_spacer][lvca_heading style="style3" heading="We Create Quality Designs"][lvca_services style="style3" per_line="3"][lvca_service_item icon_fontawesome="fa fa-dribbble" title="Design + Creative" excerpt="We always provide Quality Services. You dynamically monetize synergistic."]
|
2514 |
-
<ul>
|
2515 |
-
<li>User Experience</li>
|
2516 |
-
<li>Web & Mobile UI</li>
|
2517 |
-
<li>Conversion focused</li>
|
2518 |
-
<li>Brand Development</li>
|
2519 |
-
<li>Video & Animation</li>
|
2520 |
-
<li>Email Campaigns</li>
|
2521 |
-
</ul>
|
2522 |
-
[/lvca_service_item][lvca_service_item icon_fontawesome="fa fa-toggle-off" title="Premium Widgets" excerpt="We always provide Quality Services. You dynamically monetize synergistic."]
|
2523 |
-
<ul>
|
2524 |
-
<li>Competitor Research & Audits</li>
|
2525 |
-
<li>Digital Brand Strategy</li>
|
2526 |
-
<li>User Research</li>
|
2527 |
-
<li>Business Requirements Analysis</li>
|
2528 |
-
<li>Digital Project Management</li>
|
2529 |
-
<li>Email Campaigns</li>
|
2530 |
-
</ul>
|
2531 |
-
[/lvca_service_item][lvca_service_item icon_fontawesome="fa fa-code" title="User Friendly" excerpt="We always provide Quality Services. You dynamically monetize synergistic."]
|
2532 |
-
<ul>
|
2533 |
-
<li>Maintainable Code</li>
|
2534 |
-
<li>SASS Products</li>
|
2535 |
-
<li>Fast Turnaround</li>
|
2536 |
-
<li>Architecture Driven</li>
|
2537 |
-
<li>Well Documented</li>
|
2538 |
-
<li>Agile Methodology</li>
|
2539 |
-
</ul>
|
2540 |
-
[/lvca_service_item][/lvca_services][lvca_spacer desktop_spacing="40" tablet_width="960" tablet_spacing="20" mobile_width="480" mobile_spacing="0"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" content_placement="middle" css=".vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}"][vc_column][vc_column_text]
|
2541 |
-
<h3 class="lvca-widget-heading">Team Profiles</h3>
|
2542 |
-
[/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454132584270{background-color: #ffffff !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="20"][/lvca_spacer][lvca_heading heading="Meet Our Team"][lvca_team per_line="3"][lvca_team_member member_name="John Doe" member_image="61" member_position="Art Designer, Designer" member_details="Duis vel nibh at velit scelerisque suscipit. Curabitur blandit mollis lacus. Proin viverra, ligula sit amet ultrices semper." facebook_url="http://facebook.com" twitter_url="http://twitter.com" linkedin_url="http://linkedin.com"][lvca_team_member member_name="Patrick Young" member_image="62" member_position="Lead Designer" member_details="Duis vel nibh at velit scelerisque suscipit. Curabitur blandit mollis lacus. Proin viverra, ligula sit amet ultrices semper." facebook_url="http://facebook.com" twitter_url="http://twitter.com" pinterest_url="http://pinterest.com" google_plus_url="http://plus.google.com"][lvca_team_member member_name="Mary Gruber" member_image="63" member_position="Partner, Technical Director" member_details="Duis vel nibh at velit scelerisque suscipit. Curabitur blandit mollis lacus. Proin viverra, ligula sit amet ultrices semper." facebook_url="http://facebook.com" twitter_url="http://twitter.com" instagram_url="http://instagram.com"][/lvca_team][lvca_spacer desktop_spacing="40" tablet_width="960" tablet_spacing="20" mobile_width="480" mobile_spacing="0"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1453729302447{background-color: #1b1b1c !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="20"][/lvca_spacer][lvca_heading heading="Meet Our Team"][lvca_team per_line="3"][lvca_team_member member_name="John Doe" member_image="61" member_position="Art Designer, Designer" member_details="Duis vel nibh at velit scelerisque suscipit. Curabitur blandit mollis lacus. Proin viverra, ligula sit amet ultrices semper." facebook_url="http://facebook.com" twitter_url="http://twitter.com" linkedin_url="http://linkedin.com"][lvca_team_member member_name="Patrick Young" member_image="62" member_position="Lead Designer" member_details="Duis vel nibh at velit scelerisque suscipit. Curabitur blandit mollis lacus. Proin viverra, ligula sit amet ultrices semper." facebook_url="http://facebook.com" twitter_url="http://twitter.com" pinterest_url="http://pinterest.com" google_plus_url="http://plus.google.com"][lvca_team_member member_name="Mary Gruber" member_image="63" member_position="Partner, Technical Director" member_details="Duis vel nibh at velit scelerisque suscipit. Curabitur blandit mollis lacus. Proin viverra, ligula sit amet ultrices semper." facebook_url="http://facebook.com" twitter_url="http://twitter.com" instagram_url="http://instagram.com"][/lvca_team][lvca_spacer desktop_spacing="40" tablet_width="960" tablet_spacing="20" mobile_width="480" mobile_spacing="0"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454132599632{background-color: #ffffff !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="20"][/lvca_spacer][lvca_heading heading="Meet Our Team"][lvca_team style="style2"][lvca_team_member member_name="John Doe" member_image="61" member_position="Art Designer, Designer" member_details="Duis vel nibh at velit scelerisque suscipit. Curabitur blandit mollis lacus. Proin viverra, ligula sit amet ultrices semper. Nunc nulla. Nullam cursus lacinia erat. Nulla porta dolor. Cras dapibus. Proin faucibus arcu quis ante.Sed mollis, eros et ultrices tempus, mauris ipsum aliquam libero, non adipiscing dolor urna a orci." facebook_url="http://facebook.com" twitter_url="http://twitter.com" linkedin_url="http://linkedin.com"][lvca_team_member member_name="Patrick Young" member_image="62" member_position="Lead Designer" member_details="Duis vel nibh at velit scelerisque suscipit. Curabitur blandit mollis lacus. Proin viverra, ligula sit amet ultrices semper. Nunc nulla. Nullam cursus lacinia erat. Nulla porta dolor. Cras dapibus. Proin faucibus arcu quis ante.Sed mollis, eros et ultrices tempus, mauris ipsum aliquam libero, non adipiscing dolor urna a orci." facebook_url="http://facebook.com" twitter_url="http://twitter.com" pinterest_url="http://pinterest.com" google_plus_url="http://plus.google.com"][lvca_team_member member_name="Mary Gruber" member_image="63" member_position="Partner, Technical Director" member_details="Duis vel nibh at velit scelerisque suscipit. Curabitur blandit mollis lacus. Proin viverra, ligula sit amet ultrices semper. Nunc nulla. Nullam cursus lacinia erat. Nulla porta dolor. Cras dapibus. Proin faucibus arcu quis ante.Sed mollis, eros et ultrices tempus, mauris ipsum aliquam libero, non adipiscing dolor urna a orci." facebook_url="http://facebook.com" twitter_url="http://twitter.com" instagram_url="http://instagram.com"][/lvca_team][lvca_spacer desktop_spacing="90" tablet_width="960" tablet_spacing="70" mobile_width="480" mobile_spacing="55"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1453809190623{background-color: #1b1b1c !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="20"][/lvca_spacer][lvca_heading heading="Meet Our Team"][lvca_team style="style2"][lvca_team_member member_name="John Doe" member_image="61" member_position="Art Designer, Designer" member_details="Duis vel nibh at velit scelerisque suscipit. Curabitur blandit mollis lacus. Proin viverra, ligula sit amet ultrices semper. Nunc nulla. Nullam cursus lacinia erat. Nulla porta dolor. Cras dapibus. Proin faucibus arcu quis ante.Sed mollis, eros et ultrices tempus, mauris ipsum aliquam libero, non adipiscing dolor urna a orci." facebook_url="http://facebook.com" twitter_url="http://twitter.com" linkedin_url="http://linkedin.com"][lvca_team_member member_name="Patrick Young" member_image="62" member_position="Lead Designer" member_details="Duis vel nibh at velit scelerisque suscipit. Curabitur blandit mollis lacus. Proin viverra, ligula sit amet ultrices semper. Nunc nulla. Nullam cursus lacinia erat. Nulla porta dolor. Cras dapibus. Proin faucibus arcu quis ante.Sed mollis, eros et ultrices tempus, mauris ipsum aliquam libero, non adipiscing dolor urna a orci." facebook_url="http://facebook.com" twitter_url="http://twitter.com" pinterest_url="http://pinterest.com" google_plus_url="http://plus.google.com"][lvca_team_member member_name="Mary Gruber" member_image="63" member_position="Partner, Technical Director" member_details="Duis vel nibh at velit scelerisque suscipit. Curabitur blandit mollis lacus. Proin viverra, ligula sit amet ultrices semper. Nunc nulla. Nullam cursus lacinia erat. Nulla porta dolor. Cras dapibus. Proin faucibus arcu quis ante.Sed mollis, eros et ultrices tempus, mauris ipsum aliquam libero, non adipiscing dolor urna a orci." facebook_url="http://facebook.com" twitter_url="http://twitter.com" instagram_url="http://instagram.com"][/lvca_team][lvca_spacer desktop_spacing="90" tablet_width="960" tablet_spacing="70" mobile_width="480" mobile_spacing="55"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" content_placement="middle" css=".vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}"][vc_column][vc_column_text]
|
2543 |
-
<h3 class="lvca-widget-heading">Statistics</h3>
|
2544 |
-
[/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454132637774{background-color: #ffffff !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_odometers per_line="4"][lvca_odometer_item icon_type="icon_image" stats_title="App Downloads" start_value="1000" stop_value="26492" icon_image="57"][lvca_odometer_item icon_type="icon_image" stats_title="Coffees Consumed" start_value="80" stop_value="613" icon_image="58"][lvca_odometer_item icon_type="icon_image" stats_title="Wide Grip Pushups" start_value="10" stop_value="1277" icon_image="59"][lvca_odometer_item icon_type="icon_image" stats_title="Hours Worked" start_value="0" stop_value="458" icon_image="60"][/lvca_odometers][lvca_spacer desktop_spacing="35" tablet_width="960" tablet_spacing="15" mobile_width="480" mobile_spacing="0"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1453744315318{background-color: #1b1b1c !important;}"][vc_column][lvca_spacer desktop_spacing="35" tablet_width="960" tablet_spacing="15" mobile_width="480" mobile_spacing="0"][/lvca_spacer][lvca_odometers per_line="4"][lvca_odometer_item icon_type="icon_image" stats_title="App Downloads" start_value="1000" stop_value="26492" icon_image="57"][lvca_odometer_item icon_type="icon_image" stats_title="Coffees Consumed" start_value="80" stop_value="613" icon_image="58"][lvca_odometer_item icon_type="icon_image" stats_title="Wide Grip Pushups" start_value="10" stop_value="1277" icon_image="59"][lvca_odometer_item icon_type="icon_image" stats_title="Hours Worked" start_value="0" stop_value="458" icon_image="60"][/lvca_odometers][lvca_spacer desktop_spacing="35" tablet_width="960" tablet_spacing="15" mobile_width="480" mobile_spacing="0"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454132651203{padding-top: 55px !important;padding-bottom: 75px !important;background-color: #ffffff !important;}"][vc_column width="1/2"][lvca_statsbars][lvca_statsbar_item percentage="41" stats_title="Marketing" bar_color="#f94213"][lvca_statsbar_item percentage="32" stats_title="SEO" bar_color="#f94213"][lvca_statsbar_item percentage="24" stats_title="Prototyping" bar_color="#f94213"][lvca_statsbar_item percentage="48" stats_title="Print Collateral" bar_color="#f94213"][lvca_statsbar_item percentage="36" stats_title="Illustration" bar_color="#f94213"][lvca_statsbar_item percentage="76" stats_title="Branding" bar_color="#f94213"][lvca_statsbar_item percentage="87" stats_title="Web Design" bar_color="#f94213"][/lvca_statsbars][/vc_column][vc_column width="1/2"][lvca_piecharts per_line="2"][lvca_piechart_item percentage="75" stats_title="Repeat Customers"][lvca_piechart_item percentage="87" stats_title="Referral Work"][/lvca_piecharts][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1453814076279{padding-top: 55px !important;padding-bottom: 75px !important;background-color: #1b1b1c !important;}"][vc_column width="1/2"][lvca_statsbars][lvca_statsbar_item percentage="41" stats_title="Marketing" bar_color="#f94213"][lvca_statsbar_item percentage="32" stats_title="SEO" bar_color="#f94213"][lvca_statsbar_item percentage="24" stats_title="Prototyping" bar_color="#f94213"][lvca_statsbar_item percentage="48" stats_title="Print Collateral" bar_color="#f94213"][lvca_statsbar_item percentage="36" stats_title="Illustration" bar_color="#f94213"][lvca_statsbar_item percentage="76" stats_title="Branding" bar_color="#f94213"][lvca_statsbar_item percentage="87" stats_title="Web Design" bar_color="#f94213"][/lvca_statsbars][/vc_column][vc_column width="1/2"][lvca_piecharts per_line="2"][lvca_piechart_item percentage="75" stats_title="Repeat Customers"][lvca_piechart_item percentage="87" stats_title="Referral Work"][/lvca_piecharts][/vc_column][/vc_row][vc_row full_width="stretch_row" content_placement="middle" css=".vc_custom_1454132665797{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #ffffff !important;}"][vc_column][vc_column_text]
|
2545 |
-
<h3 class="lvca-widget-heading">Testimonials</h3>
|
2546 |
-
[/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1453809761780{background-color: #f1f1f1 !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="25" mobile_width="480" mobile_spacing="15"][/lvca_spacer][lvca_testimonials per_line="3"][lvca_testimonial author="John Ruben" credentials="COO, Victor Partners" author_image="12435"]Praesent vestibulum dapibus nibh. Morbi mollis tellus ac sapien. Cras non dolor. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor. [/lvca_testimonial][lvca_testimonial author="Synthia Rock" author_image="12433" credentials="Chief Designer, Altec Inc"]Praesent vestibulum dapibus nibh. Morbi mollis tellus ac sapien. Cras non dolor. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.[/lvca_testimonial][lvca_testimonial author="James Ullman" author_image="12434" credentials="CEO, Meridian Partners"]Praesent vestibulum dapibus nibh. Morbi mollis tellus ac sapien. Cras non dolor. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.[/lvca_testimonial][/lvca_testimonials][lvca_spacer desktop_spacing="40" tablet_width="960" tablet_spacing="20" mobile_width="480" mobile_spacing="0"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1453746258092{background-color: #1b1b1c !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="25" mobile_width="480" mobile_spacing="15"][/lvca_spacer][lvca_testimonials per_line="3"][lvca_testimonial author="John Ruben" credentials="COO, Victor Partners" author_image="12435"]Praesent vestibulum dapibus nibh. Morbi mollis tellus ac sapien. Cras non dolor. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.[/lvca_testimonial][lvca_testimonial author="Synthia Rock" author_image="12433" credentials="Chief Architect, Meridian Partners"]Praesent vestibulum dapibus nibh. Morbi mollis tellus ac sapien. Cras non dolor. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.[/lvca_testimonial][lvca_testimonial author="James Ullman" author_image="12434" credentials="CEO, AlphaBeta Inc"]Praesent vestibulum dapibus nibh. Morbi mollis tellus ac sapien. Cras non dolor. Suspendisse faucibus, nunc et pellentesque egestas, lacus ante convallis tellus, vitae iaculis lacus elit id tortor.[/lvca_testimonial][/lvca_testimonials][lvca_spacer desktop_spacing="40" tablet_width="960" tablet_spacing="20" mobile_width="480" mobile_spacing="0"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454132688854{background-color: #ffffff !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_testimonials_slider slideshow_speed="5000" animation_speed="600" pause_on_action="true" pause_on_hover="true" direction_nav="true" control_nav="true"][lvca_testimonial_slide author="John Ruben" credentials="COO, Victor Partners" author_image="12435"]Proin cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Suspendisse nisl elit, rhoncus eget, elementum ac, condimentum eget, diam. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.[/lvca_testimonial_slide][lvca_testimonial_slide author="Synthia Rock" author_image="12433" credentials="Chief Designer, Victor Inc."]Proin cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Suspendisse nisl elit, rhoncus eget, elementum ac, condimentum eget, diam. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.[/lvca_testimonial_slide][lvca_testimonial_slide author="James Ullman" author_image="12434" credentials="Architect, BeanThemes Inc."]Proin cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Suspendisse nisl elit, rhoncus eget, elementum ac, condimentum eget, diam. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.[/lvca_testimonial_slide][/lvca_testimonials_slider][lvca_spacer desktop_spacing="90" tablet_width="960" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1453746217470{background-color: #1b1b1c !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_testimonials_slider slideshow_speed="5000" animation_speed="600" pause_on_action="true" pause_on_hover="true" direction_nav="true" control_nav="true"][lvca_testimonial_slide author="John Ruben" credentials="COO, Victor Partners" author_image="12435"]Proin cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Suspendisse nisl elit, rhoncus eget, elementum ac, condimentum eget, diam. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.[/lvca_testimonial_slide][lvca_testimonial_slide author="Synthia Rock" author_image="12433" credentials="CEO, Meridian Partners"]Proin cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Suspendisse nisl elit, rhoncus eget, elementum ac, condimentum eget, diam. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.[/lvca_testimonial_slide][lvca_testimonial_slide author="James Ullman" author_image="12434" credentials="Co-founder, AlphaBeta Inc."]Proin cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Suspendisse nisl elit, rhoncus eget, elementum ac, condimentum eget, diam. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.[/lvca_testimonial_slide][/lvca_testimonials_slider][lvca_spacer desktop_spacing="90" tablet_width="960" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" content_placement="middle" css=".vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}"][vc_column][vc_column_text]
|
2547 |
-
<h3 class="lvca-widget-heading">Posts Carousel</h3>
|
2548 |
-
[/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1453747120803{background-color: #1b1b1c !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_posts_carousel posts_query="size:5|order_by:date|post_type:post|categories:2,3,5" image_linkable="true" display_title="true" display_author="true" display_post_date="true" display_summary="true" arrows="true" dots="true" autoplay="true" autoplay_speed="3000" animation_speed="300" pause_on_hover="true" display_columns="3" scroll_columns="3" gutter="10" tablet_display_columns="2" tablet_scroll_columns="2" tablet_gutter="10" tablet_width="800" mobile_display_columns="1" mobile_scroll_columns="1" mobile_gutter="10" mobile_width="480"][lvca_spacer desktop_spacing="90" tablet_width="960" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1453747005380{background-color: #f1f1f1 !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_posts_carousel posts_query="size:5|order_by:date|post_type:post|categories:2,3,5" image_linkable="true" display_title="true" display_taxonomy="true" display_summary="true" arrows="true" dots="true" autoplay="true" autoplay_speed="3000" animation_speed="300" pause_on_hover="true" display_columns="3" scroll_columns="3" gutter="10" tablet_display_columns="2" tablet_scroll_columns="2" tablet_gutter="10" tablet_width="800" mobile_display_columns="1" mobile_scroll_columns="1" mobile_gutter="10" mobile_width="480"][lvca_spacer desktop_spacing="90" tablet_width="960" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" content_placement="middle" css=".vc_custom_1454132707723{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #ffffff !important;}"][vc_column][vc_column_text]
|
2549 |
-
<h3 class="lvca-widget-heading">Generic Carousel</h3>
|
2550 |
-
[/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row_content_no_spaces" css=".vc_custom_1454132729603{background-color: #ffffff !important;}"][vc_column][lvca_carousel dots="true" autoplay="true" autoplay_speed="3000" animation_speed="300" pause_on_hover="true" display_columns="3" scroll_columns="3" gutter="0" tablet_display_columns="2" tablet_scroll_columns="2" tablet_gutter="0" tablet_width="800" mobile_display_columns="1" mobile_scroll_columns="1" mobile_gutter="10" mobile_width="480"][lvca_carousel_item name="Element 1"]
|
2551 |
-
<div class="lvca-insignia-item">
|
2552 |
-
|
2553 |
-
<img class="alignnone size-full" src="http://portfoliotheme.org/siteorigin-widgets/wp-content/uploads/sites/14/2016/01/img-carousel3.jpg" alt="img-carousel3" width="800" height="533" />
|
2554 |
-
<div class="lvca-insignia-text">
|
2555 |
-
<h3>Watch the Video</h3>
|
2556 |
-
Cras id dui. Donec id justo. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Phasellus dolor. Integer tincidunt.Nulla neque dolor, sagittis eget, iaculis quis, molestie non, velit. Ut a nisl id ante tempus hendrerit.
|
2557 |
-
|
2558 |
-
<a class="lvca-read-more" href="#">Play Video</a>
|
2559 |
-
|
2560 |
-
</div>
|
2561 |
-
</div>
|
2562 |
-
[/lvca_carousel_item][lvca_carousel_item name="Element 2"]
|
2563 |
-
<div class="lvca-insignia-item">
|
2564 |
-
|
2565 |
-
<img class="alignnone size-full" src="http://portfoliotheme.org/siteorigin-widgets/wp-content/uploads/sites/14/2016/01/img-carousel2.jpg" alt="img-carousel3" width="800" height="533" />
|
2566 |
-
<div class="lvca-insignia-text">
|
2567 |
-
<h3>Our Quality Work</h3>
|
2568 |
-
Cras id dui. Donec id justo. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Phasellus dolor. Integer tincidunt.Nulla neque dolor, sagittis eget, iaculis quis, molestie non, velit. Ut a nisl id ante tempus hendrerit.
|
2569 |
-
|
2570 |
-
<a class="lvca-read-more" href="#">Our Portfolio</a>
|
2571 |
-
|
2572 |
-
</div>
|
2573 |
-
</div>
|
2574 |
-
[/lvca_carousel_item][lvca_carousel_item name="Element 3"]
|
2575 |
-
<div class="lvca-insignia-item">
|
2576 |
-
|
2577 |
-
<img class="alignnone size-full" src="http://portfoliotheme.org/siteorigin-widgets/wp-content/uploads/sites/14/2016/01/img-carousel1.jpg" alt="img-carousel3" width="800" height="533" />
|
2578 |
-
<div class="lvca-insignia-text">
|
2579 |
-
<h3>Premium Products</h3>
|
2580 |
-
Cras id dui. Donec id justo. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Phasellus dolor. Integer tincidunt.Nulla neque dolor, sagittis eget, iaculis quis, molestie non, velit. Ut a nisl id ante tempus hendrerit.
|
2581 |
-
|
2582 |
-
<a class="lvca-read-more" href="#">Go Shopping</a>
|
2583 |
-
|
2584 |
-
</div>
|
2585 |
-
</div>
|
2586 |
-
[/lvca_carousel_item][lvca_carousel_item name="Element 4"]
|
2587 |
-
<div class="lvca-insignia-item">
|
2588 |
-
|
2589 |
-
<img class="alignnone size-full" src="http://portfoliotheme.org/siteorigin-widgets/wp-content/uploads/sites/14/2016/01/img-carousel4.jpg" alt="img-carousel3" width="800" height="533" />
|
2590 |
-
<div class="lvca-insignia-text">
|
2591 |
-
<h3>Watch the Video</h3>
|
2592 |
-
Cras id dui. Donec id justo. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Phasellus dolor. Integer tincidunt.Nulla neque dolor, sagittis eget, iaculis quis, molestie non, velit. Ut a nisl id ante tempus hendrerit.
|
2593 |
-
|
2594 |
-
<a class="lvca-read-more" href="#">Play Video</a>
|
2595 |
-
|
2596 |
-
</div>
|
2597 |
-
</div>
|
2598 |
-
[/lvca_carousel_item][/lvca_carousel][lvca_spacer desktop_spacing="90" tablet_width="960" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" content_placement="middle" css=".vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}"][vc_column][vc_column_text]
|
2599 |
-
<h3 class="lvca-widget-heading">Portfolio</h3>
|
2600 |
-
[/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454132744314{background-color: #ffffff !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="15"][/lvca_spacer][lvca_portfolio posts_query="size:6|order_by:date|post_type:,jetpack-portfolio" image_linkable="true" display_title="true" display_summary="true" filterable="true" per_line="3" gutter="20" tablet_gutter="10" tablet_width="800" mobile_gutter="10" mobile_width="480" heading="The Portfolio"][lvca_spacer desktop_spacing="70" tablet_width="960" tablet_spacing="50" mobile_width="480" mobile_spacing="20"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" content_placement="middle" css=".vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}"][vc_column][vc_column_text]
|
2601 |
-
<h3 class="lvca-widget-heading">Packed Portfolio</h3>
|
2602 |
-
[/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row_content_no_spaces" css=".vc_custom_1454132758515{background-color: #ffffff !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="15"][/lvca_spacer][lvca_portfolio posts_query="size:8|order_by:date|post_type:,jetpack-portfolio" image_linkable="true" filterable="true" per_line="4" gutter="0" tablet_gutter="0" tablet_width="800" mobile_gutter="0" mobile_width="480" heading="The Portfolio"][lvca_spacer desktop_spacing="90" tablet_width="960" tablet_spacing="70" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" content_placement="middle" css=".vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}"][vc_column][vc_column_text]
|
2603 |
-
<h3 class="lvca-widget-heading">Masonry Portfolio</h3>
|
2604 |
-
[/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454132776183{background-color: #ffffff !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="15"][/lvca_spacer][lvca_portfolio posts_query="size:9|order_by:date|post_type:,jetpack-portfolio" image_linkable="true" display_title="true" display_summary="true" filterable="true" layout_mode="masonry" per_line="3" gutter="20" tablet_gutter="10" tablet_width="800" mobile_gutter="10" mobile_width="480" heading="The Portfolio"][lvca_spacer desktop_spacing="70" tablet_width="960" tablet_spacing="50" mobile_width="480" mobile_spacing="20"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1453800539879{background-color: #1b1b1c !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="15"][/lvca_spacer][lvca_portfolio posts_query="size:6|order_by:date|post_type:,jetpack-portfolio" image_linkable="true" display_title="true" display_summary="true" filterable="true" per_line="3" gutter="20" tablet_gutter="10" tablet_width="800" mobile_gutter="10" mobile_width="480" heading="The Portfolio"][lvca_spacer desktop_spacing="70" tablet_width="960" tablet_spacing="50" mobile_width="480" mobile_spacing="20"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" content_placement="middle" css=".vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}"][vc_column][vc_column_text]
|
2605 |
-
<h3 class="lvca-widget-heading">Masonry Blog</h3>
|
2606 |
-
[/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454132790820{background-color: #ffffff !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="15"][/lvca_spacer][lvca_portfolio posts_query="size:9|order_by:date|post_type:post" image_linkable="true" taxonomy_filter="category" display_title="true" display_author="true" display_post_date="true" display_summary="true" filterable="true" layout_mode="masonry" per_line="3" gutter="20" tablet_gutter="10" tablet_width="800" mobile_gutter="10" mobile_width="480" display_post_meta="true" heading="The Blog"][lvca_spacer desktop_spacing="70" tablet_width="960" tablet_spacing="50" mobile_width="480" mobile_spacing="20"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1453801832964{background-color: #1b1b1c !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="15"][/lvca_spacer][lvca_portfolio posts_query="size:9|order_by:date|post_type:post" image_linkable="true" taxonomy_filter="category" display_title="true" display_summary="true" filterable="true" layout_mode="masonry" per_line="3" gutter="20" tablet_gutter="10" tablet_width="800" mobile_gutter="10" mobile_width="480" display_post_meta="true" heading="The Blog"][lvca_spacer desktop_spacing="70" tablet_width="960" tablet_spacing="50" mobile_width="480" mobile_spacing="20"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" content_placement="middle" css=".vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}"][vc_column][vc_column_text]
|
2607 |
-
<h3 class="lvca-widget-heading">Clients</h3>
|
2608 |
-
[/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454132802997{background-color: #ffffff !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="15"][/lvca_spacer][lvca_heading heading="Our Clients"][lvca_clients per_line="4"][lvca_single_client client_name="Client 1" client_image="23"][lvca_single_client client_name="Client 2" client_image="21"][lvca_single_client client_name="Client 3" client_image="19"][lvca_single_client client_name="Client 4" client_image="17"][lvca_single_client client_name="Client 5" client_image="15"][lvca_single_client client_name="Client 6" client_image="13"][lvca_single_client client_name="Client 7" client_image="11"][lvca_single_client client_name="Client 8" client_image="9"][/lvca_clients][lvca_spacer desktop_spacing="90" tablet_width="960" tablet_spacing="70" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1453785297806{background-color: #1b1b1c !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="15"][/lvca_spacer][lvca_heading heading="Our Clients"][lvca_clients per_line="4"][lvca_single_client client_name="Client 1" client_image="22" client_url="url:http%3A%2F%2Fclient1.example.com|title:Client%201%20Website|target:%20_blank"][lvca_single_client client_name="Client 2" client_image="20" client_url="url:http%3A%2F%2Fclient2.example.com|title:Client%202%20Website|target:%20_blank"][lvca_single_client client_name="Client 3" client_image="18" client_url="url:http%3A%2F%2Fclient3.example.com|title:Client%203%20Website|"][lvca_single_client client_name="Client 4" client_image="16"][lvca_single_client client_name="Client 5" client_image="14"][lvca_single_client client_name="Client 6" client_image="12"][lvca_single_client client_name="Client 7" client_image="10"][lvca_single_client client_name="Client 8" client_image="8"][/lvca_clients][lvca_spacer desktop_spacing="90" tablet_width="960" tablet_spacing="70" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" content_placement="middle" css=".vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}"][vc_column][vc_column_text]
|
2609 |
-
<h3 class="lvca-widget-heading">Pricing</h3>
|
2610 |
-
[/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454132824378{background-color: #ffffff !important;}"][vc_column][lvca_spacer desktop_spacing="55" tablet_width="960" tablet_spacing="35" mobile_width="480" mobile_spacing="15"][/lvca_spacer][lvca_pricing_table per_line="3"][lvca_pricing_plan pricing_title="Standard" tagline="Most Popular" price_tag="<sup>$</sup>29/mo" button_text="Choose Plan" button_url="url:%23||" button_new_window="true"][lvca_pricing_item title="Storage Space" value="20 GB"] [lvca_pricing_item title="Video Uploads" value="5"][lvca_pricing_item title="Portfolio Items" value="20"][/lvca_pricing_plan][lvca_pricing_plan pricing_title="Developer" tagline="Best Value" price_tag="<sup>$</sup>49/mo" highlight="true" button_text="Choose Plan" button_url="url:%23||" button_new_window="true"][lvca_pricing_item title="Storage Space" value="50 GB"] [lvca_pricing_item title="Video Uploads" value="20"][lvca_pricing_item title="Portfolio Items" value="45"][/lvca_pricing_plan][lvca_pricing_plan pricing_title="Enterprise" tagline="Best Value" price_tag="<sup>$</sup>99/mo" button_text="Choose Plan" button_url="url:%23||" button_new_window="true"][lvca_pricing_item title="Storage Space" value="150 GB"] [lvca_pricing_item title="Video Uploads" value="100"][lvca_pricing_item title="Portfolio Items" value="Unlimited"][/lvca_pricing_plan][/lvca_pricing_table][lvca_spacer desktop_spacing="60" tablet_width="960" tablet_spacing="40" mobile_width="480" mobile_spacing="10"][/lvca_spacer][/vc_column][/vc_row]]]></content:encoded>
|
2611 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
2612 |
-
<wp:post_id>12484</wp:post_id>
|
2613 |
-
<wp:post_date><![CDATA[2016-01-26 11:12:25]]></wp:post_date>
|
2614 |
-
<wp:post_date_gmt><![CDATA[2016-01-26 11:12:25]]></wp:post_date_gmt>
|
2615 |
-
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
|
2616 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
2617 |
-
<wp:post_name><![CDATA[visual-composer-addons-demo]]></wp:post_name>
|
2618 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
2619 |
-
<wp:post_parent>0</wp:post_parent>
|
2620 |
-
<wp:menu_order>0</wp:menu_order>
|
2621 |
-
<wp:post_type><![CDATA[page]]></wp:post_type>
|
2622 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
2623 |
-
<wp:is_sticky>0</wp:is_sticky>
|
2624 |
-
<wp:postmeta>
|
2625 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
2626 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
2627 |
-
</wp:postmeta>
|
2628 |
-
<wp:postmeta>
|
2629 |
-
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
2630 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
2631 |
-
</wp:postmeta>
|
2632 |
-
<wp:postmeta>
|
2633 |
-
<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
|
2634 |
-
<wp:meta_value><![CDATA[template-full-width.php]]></wp:meta_value>
|
2635 |
-
</wp:postmeta>
|
2636 |
-
<wp:postmeta>
|
2637 |
-
<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
|
2638 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
2639 |
-
</wp:postmeta>
|
2640 |
-
<wp:postmeta>
|
2641 |
-
<wp:meta_key><![CDATA[_wpb_vc_js_status]]></wp:meta_key>
|
2642 |
-
<wp:meta_value><![CDATA[true]]></wp:meta_value>
|
2643 |
-
</wp:postmeta>
|
2644 |
-
<wp:postmeta>
|
2645 |
-
<wp:meta_key><![CDATA[mo_slider_choice]]></wp:meta_key>
|
2646 |
-
<wp:meta_value><![CDATA[None]]></wp:meta_value>
|
2647 |
-
</wp:postmeta>
|
2648 |
-
<wp:postmeta>
|
2649 |
-
<wp:meta_key><![CDATA[mo_custom_primary_navigation_menu]]></wp:meta_key>
|
2650 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
2651 |
-
</wp:postmeta>
|
2652 |
-
<wp:postmeta>
|
2653 |
-
<wp:meta_key><![CDATA[mo_primary_sidebar_choice]]></wp:meta_key>
|
2654 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
2655 |
-
</wp:postmeta>
|
2656 |
-
<wp:postmeta>
|
2657 |
-
<wp:meta_key><![CDATA[_wpb_shortcodes_custom_css]]></wp:meta_key>
|
2658 |
-
<wp:meta_value><![CDATA[.vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}.vc_custom_1454132563457{background-color: #ffffff !important;}.vc_custom_1453728032394{background-color: #1b1b1c !important;}.vc_custom_1453728583165{background-color: #f1f1f1 !important;}.vc_custom_1453728814774{background-color: #1b1b1c !important;}.vc_custom_1454132563457{background-color: #ffffff !important;}.vc_custom_1457402873024{background-color: #1b1b1c !important;}.vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}.vc_custom_1454132584270{background-color: #ffffff !important;}.vc_custom_1453729302447{background-color: #1b1b1c !important;}.vc_custom_1454132599632{background-color: #ffffff !important;}.vc_custom_1453809190623{background-color: #1b1b1c !important;}.vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}.vc_custom_1454132637774{background-color: #ffffff !important;}.vc_custom_1453744315318{background-color: #1b1b1c !important;}.vc_custom_1454132651203{padding-top: 55px !important;padding-bottom: 75px !important;background-color: #ffffff !important;}.vc_custom_1453814076279{padding-top: 55px !important;padding-bottom: 75px !important;background-color: #1b1b1c !important;}.vc_custom_1454132665797{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #ffffff !important;}.vc_custom_1453809761780{background-color: #f1f1f1 !important;}.vc_custom_1453746258092{background-color: #1b1b1c !important;}.vc_custom_1454132688854{background-color: #ffffff !important;}.vc_custom_1453746217470{background-color: #1b1b1c !important;}.vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}.vc_custom_1453747120803{background-color: #1b1b1c !important;}.vc_custom_1453747005380{background-color: #f1f1f1 !important;}.vc_custom_1454132707723{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #ffffff !important;}.vc_custom_1454132729603{background-color: #ffffff !important;}.vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}.vc_custom_1454132744314{background-color: #ffffff !important;}.vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}.vc_custom_1454132758515{background-color: #ffffff !important;}.vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}.vc_custom_1454132776183{background-color: #ffffff !important;}.vc_custom_1453800539879{background-color: #1b1b1c !important;}.vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}.vc_custom_1454132790820{background-color: #ffffff !important;}.vc_custom_1453801832964{background-color: #1b1b1c !important;}.vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}.vc_custom_1454132802997{background-color: #ffffff !important;}.vc_custom_1453785297806{background-color: #1b1b1c !important;}.vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}.vc_custom_1454132824378{background-color: #ffffff !important;}]]></wp:meta_value>
|
2659 |
-
</wp:postmeta>
|
2660 |
-
<wp:postmeta>
|
2661 |
-
<wp:meta_key><![CDATA[mo_remove_title_header]]></wp:meta_key>
|
2662 |
-
<wp:meta_value><![CDATA[a:1:{i:0;s:3:"Yes";}]]></wp:meta_value>
|
2663 |
-
</wp:postmeta>
|
2664 |
-
<wp:postmeta>
|
2665 |
-
<wp:meta_key><![CDATA[_wpb_post_custom_css]]></wp:meta_key>
|
2666 |
-
<wp:meta_value><![CDATA[.lvca-insignia-item img {
|
2667 |
-
margin: 0 0 30px 0;
|
2668 |
-
}
|
2669 |
-
.lvca-insignia-text {
|
2670 |
-
padding: 0 20px 20px;
|
2671 |
-
font-size: 15px;
|
2672 |
-
line-height: 24px;
|
2673 |
-
}
|
2674 |
-
.lvca-insignia-item h3 {
|
2675 |
-
font-size: 20px;
|
2676 |
-
line-height: 32px;
|
2677 |
-
letter-spacing: 1px;
|
2678 |
-
margin-bottom: 10px;
|
2679 |
-
text-transform: uppercase;
|
2680 |
-
font-weight: bold;
|
2681 |
-
}
|
2682 |
-
.lvca-insignia-item .lvca-read-more {
|
2683 |
-
display: block;
|
2684 |
-
font-style: italic;
|
2685 |
-
text-decoration: underline;
|
2686 |
-
font-size: 14px;
|
2687 |
-
line-height: 22px;
|
2688 |
-
}]]></wp:meta_value>
|
2689 |
-
</wp:postmeta>
|
2690 |
-
</item>
|
2691 |
-
<item>
|
2692 |
-
<title>boat-ride</title>
|
2693 |
-
<link>http://portfoliotheme.org/visual-composer-addons/tabs-and-accordions/boat-ride/</link>
|
2694 |
-
<pubDate>Tue, 02 Feb 2016 12:36:27 +0000</pubDate>
|
2695 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
2696 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride.jpg</guid>
|
2697 |
-
<description></description>
|
2698 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
2699 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
2700 |
-
<wp:post_id>12503</wp:post_id>
|
2701 |
-
<wp:post_date><![CDATA[2016-02-02 12:36:27]]></wp:post_date>
|
2702 |
-
<wp:post_date_gmt><![CDATA[2016-02-02 12:36:27]]></wp:post_date_gmt>
|
2703 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
2704 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
2705 |
-
<wp:post_name><![CDATA[boat-ride]]></wp:post_name>
|
2706 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
2707 |
-
<wp:post_parent>12517</wp:post_parent>
|
2708 |
-
<wp:menu_order>0</wp:menu_order>
|
2709 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
2710 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
2711 |
-
<wp:is_sticky>0</wp:is_sticky>
|
2712 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride.jpg]]></wp:attachment_url>
|
2713 |
-
<wp:postmeta>
|
2714 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
2715 |
-
<wp:meta_value><![CDATA[2016/02/boat-ride.jpg]]></wp:meta_value>
|
2716 |
-
</wp:postmeta>
|
2717 |
-
<wp:postmeta>
|
2718 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
2719 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:600;s:6:"height";i:380;s:4:"file";s:21:"2016/02/boat-ride.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"boat-ride-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:21:"boat-ride-300x190.jpg";s:5:"width";i:300;s:6:"height";i:190;s:9:"mime-type";s:10:"image/jpeg";}s:29:"jetpack-portfolio-admin-thumb";a:4:{s:4:"file";s:19:"boat-ride-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:21:"boat-ride-550x380.jpg";s:5:"width";i:550;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:21:"boat-ride-450x380.jpg";s:5:"width";i:450;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
2720 |
-
</wp:postmeta>
|
2721 |
-
</item>
|
2722 |
-
<item>
|
2723 |
-
<title>NYC-Skyline</title>
|
2724 |
-
<link>http://portfoliotheme.org/visual-composer-addons/tabs-and-accordions/nyc-skyline/</link>
|
2725 |
-
<pubDate>Tue, 02 Feb 2016 12:36:30 +0000</pubDate>
|
2726 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
2727 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline.jpg</guid>
|
2728 |
-
<description></description>
|
2729 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
2730 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
2731 |
-
<wp:post_id>12504</wp:post_id>
|
2732 |
-
<wp:post_date><![CDATA[2016-02-02 12:36:30]]></wp:post_date>
|
2733 |
-
<wp:post_date_gmt><![CDATA[2016-02-02 12:36:30]]></wp:post_date_gmt>
|
2734 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
2735 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
2736 |
-
<wp:post_name><![CDATA[nyc-skyline]]></wp:post_name>
|
2737 |
-
<wp:status><![CDATA[inherit]]></wp:status>
|
2738 |
-
<wp:post_parent>12517</wp:post_parent>
|
2739 |
-
<wp:menu_order>0</wp:menu_order>
|
2740 |
-
<wp:post_type><![CDATA[attachment]]></wp:post_type>
|
2741 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
2742 |
-
<wp:is_sticky>0</wp:is_sticky>
|
2743 |
-
<wp:attachment_url><![CDATA[http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline.jpg]]></wp:attachment_url>
|
2744 |
-
<wp:postmeta>
|
2745 |
-
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
|
2746 |
-
<wp:meta_value><![CDATA[2016/02/NYC-Skyline.jpg]]></wp:meta_value>
|
2747 |
-
</wp:postmeta>
|
2748 |
-
<wp:postmeta>
|
2749 |
-
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
|
2750 |
-
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:600;s:6:"height";i:380;s:4:"file";s:23:"2016/02/NYC-Skyline.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"NYC-Skyline-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:23:"NYC-Skyline-300x190.jpg";s:5:"width";i:300;s:6:"height";i:190;s:9:"mime-type";s:10:"image/jpeg";}s:29:"jetpack-portfolio-admin-thumb";a:4:{s:4:"file";s:21:"NYC-Skyline-50x50.jpg";s:5:"width";i:50;s:6:"height";i:50;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium-thumb";a:4:{s:4:"file";s:23:"NYC-Skyline-550x380.jpg";s:5:"width";i:550;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}s:12:"square-thumb";a:4:{s:4:"file";s:23:"NYC-Skyline-450x380.jpg";s:5:"width";i:450;s:6:"height";i:380;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}]]></wp:meta_value>
|
2751 |
-
</wp:postmeta>
|
2752 |
-
</item>
|
2753 |
-
<item>
|
2754 |
-
<title>Tabs and Accordions</title>
|
2755 |
-
<link>http://portfoliotheme.org/visual-composer-addons/tabs-and-accordions/</link>
|
2756 |
-
<pubDate>Mon, 07 Mar 2016 11:16:40 +0000</pubDate>
|
2757 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
2758 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/?page_id=12517</guid>
|
2759 |
-
<description></description>
|
2760 |
-
<content:encoded><![CDATA[[vc_row full_width="stretch_row" css=".vc_custom_1454132563457{background-color: #ffffff !important;}"][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs mobile_width="600"][lvca_tab tab_title="Description"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2761 |
-
<h4>Waiting for the Sun</h4>
|
2762 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2763 |
-
<h4>City Skyline</h4>
|
2764 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2765 |
-
<h4>Exploring Seas</h4>
|
2766 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs style="style2" mobile_width="600"][lvca_tab tab_title="Description"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2767 |
-
<h4>Waiting for the Sun</h4>
|
2768 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2769 |
-
<h4>City Skyline</h4>
|
2770 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2771 |
-
<h4>Exploring Seas</h4>
|
2772 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1457352481322{background-color: #1b1b1c !important;}"][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs mobile_width="600"][lvca_tab tab_title="Description"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2773 |
-
<h4>Waiting for the Sun</h4>
|
2774 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2775 |
-
<h4>City Skyline</h4>
|
2776 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2777 |
-
<h4>Exploring Seas</h4>
|
2778 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs style="style2" mobile_width="600"][lvca_tab tab_title="Description"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2779 |
-
<h4>Waiting for the Sun</h4>
|
2780 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2781 |
-
<h4>City Skyline</h4>
|
2782 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2783 |
-
<h4>Exploring Seas</h4>
|
2784 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" css=".vc_custom_1454132563457{background-color: #ffffff !important;}"][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs style="style3" mobile_width="600"][lvca_tab icon_type="icon" icon_fontawesome="fa fa-briefcase" tab_title="Description"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2785 |
-
<h4>Waiting for the Sun</h4>
|
2786 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab icon_type="icon" icon_fontawesome="fa fa-camera-retro" tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2787 |
-
<h4>City Skyline</h4>
|
2788 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab icon_type="icon" icon_fontawesome="fa fa-comments-o" tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2789 |
-
<h4>Exploring Seas</h4>
|
2790 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][lvca_tab icon_type="icon" icon_fontawesome="fa fa-archive" tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2791 |
-
<h4>City Skyline</h4>
|
2792 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs style="style4" mobile_width="600"][lvca_tab tab_title="Description"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2793 |
-
<h4>Waiting for the Sun</h4>
|
2794 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2795 |
-
<h4>City Skyline</h4>
|
2796 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2797 |
-
<h4>Exploring Seas</h4>
|
2798 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1457353272466{background-color: #1b1b1c !important;}"][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs style="style3" mobile_width="600"][lvca_tab icon_type="icon" icon_fontawesome="fa fa-briefcase" tab_title="Description"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2799 |
-
<h4>Waiting for the Sun</h4>
|
2800 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab icon_type="icon" icon_fontawesome="fa fa-camera-retro" tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2801 |
-
<h4>City Skyline</h4>
|
2802 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab icon_type="icon" icon_fontawesome="fa fa-comments-o" tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2803 |
-
<h4>Exploring Seas</h4>
|
2804 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][lvca_tab icon_type="icon" icon_fontawesome="fa fa-archive" tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2805 |
-
<h4>City Skyline</h4>
|
2806 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs style="style4" mobile_width="600"][lvca_tab tab_title="Description"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2807 |
-
<h4>Waiting for the Sun</h4>
|
2808 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2809 |
-
<h4>City Skyline</h4>
|
2810 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2811 |
-
<h4>Exploring Seas</h4>
|
2812 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row"][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs style="style5" mobile_width="600"][lvca_tab tab_title="Movie"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2813 |
-
<h4>Waiting for the Sun</h4>
|
2814 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2815 |
-
<h4>City Skyline</h4>
|
2816 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2817 |
-
<h4>Exploring Seas</h4>
|
2818 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs style="style6" mobile_width="600"][lvca_tab tab_title="Description"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2819 |
-
<h4>Waiting for the Sun</h4>
|
2820 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2821 |
-
<h4>City Skyline</h4>
|
2822 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2823 |
-
<h4>Exploring Seas</h4>
|
2824 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1457352481322{background-color: #1b1b1c !important;}"][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs style="style5" mobile_width="600"][lvca_tab tab_title="Movie"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2825 |
-
<h4>Waiting for the Sun</h4>
|
2826 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2827 |
-
<h4>City Skyline</h4>
|
2828 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2829 |
-
<h4>Exploring Seas</h4>
|
2830 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs style="style6" mobile_width="600"][lvca_tab tab_title="Description"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2831 |
-
<h4>Waiting for the Sun</h4>
|
2832 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2833 |
-
<h4>City Skyline</h4>
|
2834 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2835 |
-
<h4>Exploring Seas</h4>
|
2836 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row"][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs style="style10" mobile_width="600"][lvca_tab icon_type="icon" icon_fontawesome="fa fa-briefcase" tab_title="First"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2837 |
-
<h4>Waiting for the Sun</h4>
|
2838 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab icon_type="icon" icon_fontawesome="fa fa-camera-retro" tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2839 |
-
<h4>City Skyline</h4>
|
2840 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab icon_type="icon" icon_fontawesome="fa fa-comments-o" tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2841 |
-
<h4>Exploring Seas</h4>
|
2842 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][lvca_tab icon_type="icon" icon_fontawesome="fa fa-archive" tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2843 |
-
<h4>City Skyline</h4>
|
2844 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs style="style9" mobile_width="600"][lvca_tab tab_title="Description"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2845 |
-
<h4>Waiting for the Sun</h4>
|
2846 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2847 |
-
<h4>City Skyline</h4>
|
2848 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2849 |
-
<h4>Exploring Seas</h4>
|
2850 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1457353272466{background-color: #1b1b1c !important;}"][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs style="style10" mobile_width="600"][lvca_tab icon_type="icon" icon_fontawesome="fa fa-briefcase" tab_title="Description"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2851 |
-
<h4>Waiting for the Sun</h4>
|
2852 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab icon_type="icon" icon_fontawesome="fa fa-camera-retro" tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2853 |
-
<h4>City Skyline</h4>
|
2854 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab icon_type="icon" icon_fontawesome="fa fa-comments-o" tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2855 |
-
<h4>Exploring Seas</h4>
|
2856 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][lvca_tab icon_type="icon" icon_fontawesome="fa fa-archive" tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2857 |
-
<h4>City Skyline</h4>
|
2858 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs style="style9" mobile_width="600"][lvca_tab tab_title="Description"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2859 |
-
<h4>Waiting for the Sun</h4>
|
2860 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2861 |
-
<h4>City Skyline</h4>
|
2862 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2863 |
-
<h4>Exploring Seas</h4>
|
2864 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row"][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs style="style7" mobile_width="600"][lvca_tab tab_title="Description"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2865 |
-
<h4>Waiting for the Sun</h4>
|
2866 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2867 |
-
<h4>City Skyline</h4>
|
2868 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2869 |
-
<h4>Exploring Seas</h4>
|
2870 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs style="style8" mobile_width="600"][lvca_tab tab_title="Description"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2871 |
-
<h4>Waiting for the Sun</h4>
|
2872 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2873 |
-
<h4>City Skyline</h4>
|
2874 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2875 |
-
<h4>Exploring Seas</h4>
|
2876 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1457352481322{background-color: #1b1b1c !important;}"][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs style="style7" mobile_width="600"][lvca_tab tab_title="Description"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2877 |
-
<h4>Waiting for the Sun</h4>
|
2878 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2879 |
-
<h4>City Skyline</h4>
|
2880 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2881 |
-
<h4>Exploring Seas</h4>
|
2882 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_tabs style="style8" mobile_width="600"][lvca_tab tab_title="Description"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2883 |
-
<h4>Waiting for the Sun</h4>
|
2884 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_tab][lvca_tab tab_title="Trailers"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2885 |
-
<h4>City Skyline</h4>
|
2886 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_tab][lvca_tab tab_title="Reviews"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2887 |
-
<h4>Exploring Seas</h4>
|
2888 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_tab][/lvca_tabs][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" content_placement="middle" css=".vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}"][vc_column][vc_column_text]
|
2889 |
-
<h3 class="lvca-widget-heading">Accordion</h3>
|
2890 |
-
[/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row"][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_accordion][lvca_panel panel_title="Donec mollis hendrerit risus"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2891 |
-
<h4>Waiting for the Sun</h4>
|
2892 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_panel][lvca_panel panel_title="Aenean viverra rhoncus pede"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2893 |
-
<h4>City Skyline</h4>
|
2894 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_panel][lvca_panel panel_title="In hac habitasse platea"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2895 |
-
<h4>Exploring Seas</h4>
|
2896 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_panel][/lvca_accordion][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_accordion style="style2"][lvca_panel panel_title="Curabitur ligula sapien tincidunt"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2897 |
-
<h4>Waiting for the Sun</h4>
|
2898 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_panel][lvca_panel panel_title="Fusce ac felis sit amet"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2899 |
-
<h4>City Skyline</h4>
|
2900 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_panel][lvca_panel panel_title="Vestibulum ullamcorper mauris at"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2901 |
-
<h4>Exploring Seas</h4>
|
2902 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_panel][/lvca_accordion][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1457352481322{background-color: #1b1b1c !important;}"][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_accordion][lvca_panel panel_title="Donec mollis hendrerit risus"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2903 |
-
<h4>Waiting for the Sun</h4>
|
2904 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_panel][lvca_panel panel_title="Aenean viverra rhoncus pede"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2905 |
-
<h4>City Skyline</h4>
|
2906 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_panel][lvca_panel panel_title="In hac habitasse platea"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2907 |
-
<h4>Exploring Seas</h4>
|
2908 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_panel][/lvca_accordion][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_accordion style="style2"][lvca_panel panel_title="Suspendisse faucibus nunc et"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2909 |
-
<h4>Waiting for the Sun</h4>
|
2910 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_panel][lvca_panel panel_title="Praesent nonummy mi in"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2911 |
-
<h4>City Skyline</h4>
|
2912 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_panel][lvca_panel panel_title="Duis arcu tortor suscipit"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2913 |
-
<h4>Exploring Seas</h4>
|
2914 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_panel][/lvca_accordion][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row"][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_accordion style="style3"][lvca_panel panel_title="Where can I download help?"]Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Morbi vestibulum volutpat enim. Donec id justo. Nulla facilisi. Vivamus laoreet.
|
2915 |
-
|
2916 |
-
Donec vitae orci sed dolor rutrum auctor. Integer ante arcu, accumsan a, consectetuer eget, posuere ut, mauris. Fusce pharetra convallis urna. Fusce fermentum. Phasellus gravida semper nisi.[/lvca_panel][lvca_panel panel_title="How big is your support team?"]Pellentesque egestas, neque sit amet convallis pulvinar, justo nulla eleifend augue, ac auctor orci leo non est. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Mauris turpis nunc, blandit et, volutpat molestie, porta ut, ligula. Aenean imperdiet. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.
|
2917 |
-
|
2918 |
-
Curabitur suscipit suscipit tellus. Duis vel nibh at velit scelerisque suscipit. Etiam feugiat lorem non metus. Quisque id odio. Fusce ac felis sit amet ligula pharetra condimentum.[/lvca_panel][lvca_panel panel_title="Any quick start guide available?"]Cras non dolor. Ut a nisl id ante tempus hendrerit. Mauris sollicitudin fermentum libero. Curabitur at lacus ac velit ornare lobortis. Proin pretium, leo ac pellentesque mollis, felis nunc ultrices eros, sed gravida augue augue mollis justo.
|
2919 |
-
|
2920 |
-
Donec mollis hendrerit risus. Curabitur suscipit suscipit tellus. Fusce risus nisl, viverra et, tempor et, pretium in, sapien. Suspendisse enim turpis, dictum sed, iaculis a, condimentum nec, nisi. Etiam sollicitudin, ipsum eu pulvinar rutrum, tellus ipsum laoreet sapien, quis venenatis ante odio sit amet eros.[/lvca_panel][/lvca_accordion][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_accordion style="style3"][lvca_panel panel_title="Praesent metus tellus elementum"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2921 |
-
<h4>Waiting for the Sun</h4>
|
2922 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_panel][lvca_panel panel_title="Praesent egestas tristique nibh"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2923 |
-
<h4>City Skyline</h4>
|
2924 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_panel][lvca_panel panel_title="Maecenas tempus tellus eget"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2925 |
-
<h4>Exploring Seas</h4>
|
2926 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_panel][/lvca_accordion][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" content_placement="middle" css=".vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}"][vc_column][vc_column_text]
|
2927 |
-
<h3 class="lvca-widget-heading">Toggle</h3>
|
2928 |
-
[/vc_column_text][/vc_column][/vc_row][vc_row full_width="stretch_row"][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_accordion toggle="true"][lvca_panel panel_title="Donec mollis hendrerit risus"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2929 |
-
<h4>Waiting for the Sun</h4>
|
2930 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_panel][lvca_panel panel_title="Aenean viverra rhoncus pede"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2931 |
-
<h4>City Skyline</h4>
|
2932 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_panel][lvca_panel panel_title="In hac habitasse platea"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2933 |
-
<h4>Exploring Seas</h4>
|
2934 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_panel][/lvca_accordion][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_accordion style="style2" toggle="true"][lvca_panel panel_title="Integer ante arcu accumsan"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2935 |
-
<h4>Waiting for the Sun</h4>
|
2936 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_panel][lvca_panel panel_title="Praesent metus tellus elementum"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2937 |
-
<h4>City Skyline</h4>
|
2938 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_panel][lvca_panel panel_title="Aenean vulputate eleifend tellus"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2939 |
-
<h4>Exploring Seas</h4>
|
2940 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_panel][/lvca_accordion][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row][vc_row full_width="stretch_row" lvca_dark_bg="true" css=".vc_custom_1457352481322{background-color: #1b1b1c !important;}"][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_accordion style="style3" toggle="true"][lvca_panel panel_title="Where can I download help?"]Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Morbi vestibulum volutpat enim. Donec id justo. Nulla facilisi. Vivamus laoreet.
|
2941 |
-
|
2942 |
-
Donec vitae orci sed dolor rutrum auctor. Integer ante arcu, accumsan a, consectetuer eget, posuere ut, mauris. Fusce pharetra convallis urna. Fusce fermentum. Phasellus gravida semper nisi.[/lvca_panel][lvca_panel panel_title="How big is your support team?"]Pellentesque egestas, neque sit amet convallis pulvinar, justo nulla eleifend augue, ac auctor orci leo non est. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Mauris turpis nunc, blandit et, volutpat molestie, porta ut, ligula. Aenean imperdiet. Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum.
|
2943 |
-
|
2944 |
-
Curabitur suscipit suscipit tellus. Duis vel nibh at velit scelerisque suscipit. Etiam feugiat lorem non metus. Quisque id odio. Fusce ac felis sit amet ligula pharetra condimentum.[/lvca_panel][lvca_panel panel_title="Any quick start guide available?"]Cras non dolor. Ut a nisl id ante tempus hendrerit. Mauris sollicitudin fermentum libero. Curabitur at lacus ac velit ornare lobortis. Proin pretium, leo ac pellentesque mollis, felis nunc ultrices eros, sed gravida augue augue mollis justo.
|
2945 |
-
|
2946 |
-
Donec mollis hendrerit risus. Curabitur suscipit suscipit tellus. Fusce risus nisl, viverra et, tempor et, pretium in, sapien. Suspendisse enim turpis, dictum sed, iaculis a, condimentum nec, nisi. Etiam sollicitudin, ipsum eu pulvinar rutrum, tellus ipsum laoreet sapien, quis venenatis ante odio sit amet eros.[/lvca_panel][/lvca_accordion][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][vc_column width="1/2"][lvca_spacer desktop_spacing="55" tablet_width="1024" tablet_spacing="25" mobile_width="480" mobile_spacing="5"][/lvca_spacer][lvca_accordion style="style3" toggle="true"][lvca_panel panel_title="Donec quam felis ultricies"]<img class="alignleft size-medium wp-image-33" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/01/img-post3-300x190.jpg" alt="img-post3" width="300" height="190" />
|
2947 |
-
<h4>Waiting for the Sun</h4>
|
2948 |
-
Donec orci lectus, aliquam ut, faucibus non, euismod id, nulla. Fusce fermentum odio nec arcu integer tincidunt cras ultricies sem.[/lvca_panel][lvca_panel panel_title="Quisque libero metus condimentum"]<img class="alignright size-medium wp-image-12504" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/NYC-Skyline-300x190.jpg" alt="NYC-Skyline" width="300" height="190" />
|
2949 |
-
<h4>City Skyline</h4>
|
2950 |
-
Curabitur ligula sapien, tincidunt non, euismod vitae, posuere imperdiet, leo. Praesent ut ligula non mi varius sagittis nullam quis ante.[/lvca_panel][lvca_panel panel_title="Etiam feugiat lorem non"]<img class="alignleft size-medium wp-image-12503" src="http://portfoliotheme.org/visual-composer-addons/wp-content/uploads/sites/15/2016/02/boat-ride-300x190.jpg" alt="boat-ride" width="300" height="190" />
|
2951 |
-
<h4>Exploring Seas</h4>
|
2952 |
-
Curabitur at lacus ac velit ornare lobortis. Aenean massa vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere.[/lvca_panel][/lvca_accordion][lvca_spacer desktop_spacing="90" tablet_width="1024" tablet_spacing="60" mobile_width="480" mobile_spacing="40"][/lvca_spacer][/vc_column][/vc_row]]]></content:encoded>
|
2953 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
2954 |
-
<wp:post_id>12517</wp:post_id>
|
2955 |
-
<wp:post_date><![CDATA[2016-03-07 11:16:40]]></wp:post_date>
|
2956 |
-
<wp:post_date_gmt><![CDATA[2016-03-07 11:16:40]]></wp:post_date_gmt>
|
2957 |
-
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
|
2958 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
2959 |
-
<wp:post_name><![CDATA[tabs-and-accordions]]></wp:post_name>
|
2960 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
2961 |
-
<wp:post_parent>0</wp:post_parent>
|
2962 |
-
<wp:menu_order>0</wp:menu_order>
|
2963 |
-
<wp:post_type><![CDATA[page]]></wp:post_type>
|
2964 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
2965 |
-
<wp:is_sticky>0</wp:is_sticky>
|
2966 |
-
<wp:postmeta>
|
2967 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
2968 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
2969 |
-
</wp:postmeta>
|
2970 |
-
<wp:postmeta>
|
2971 |
-
<wp:meta_key><![CDATA[_wpb_shortcodes_custom_css]]></wp:meta_key>
|
2972 |
-
<wp:meta_value><![CDATA[.vc_custom_1454132563457{background-color: #ffffff !important;}.vc_custom_1457352481322{background-color: #1b1b1c !important;}.vc_custom_1454132563457{background-color: #ffffff !important;}.vc_custom_1457353272466{background-color: #1b1b1c !important;}.vc_custom_1457352481322{background-color: #1b1b1c !important;}.vc_custom_1457353272466{background-color: #1b1b1c !important;}.vc_custom_1457352481322{background-color: #1b1b1c !important;}.vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}.vc_custom_1457352481322{background-color: #1b1b1c !important;}.vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}.vc_custom_1457352481322{background-color: #1b1b1c !important;}]]></wp:meta_value>
|
2973 |
-
</wp:postmeta>
|
2974 |
-
<wp:postmeta>
|
2975 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
2976 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
2977 |
-
</wp:postmeta>
|
2978 |
-
<wp:postmeta>
|
2979 |
-
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
2980 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
2981 |
-
</wp:postmeta>
|
2982 |
-
<wp:postmeta>
|
2983 |
-
<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
|
2984 |
-
<wp:meta_value><![CDATA[template-full-width.php]]></wp:meta_value>
|
2985 |
-
</wp:postmeta>
|
2986 |
-
<wp:postmeta>
|
2987 |
-
<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
|
2988 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
2989 |
-
</wp:postmeta>
|
2990 |
-
<wp:postmeta>
|
2991 |
-
<wp:meta_key><![CDATA[_wpb_vc_js_status]]></wp:meta_key>
|
2992 |
-
<wp:meta_value><![CDATA[true]]></wp:meta_value>
|
2993 |
-
</wp:postmeta>
|
2994 |
-
<wp:postmeta>
|
2995 |
-
<wp:meta_key><![CDATA[mo_slider_choice]]></wp:meta_key>
|
2996 |
-
<wp:meta_value><![CDATA[None]]></wp:meta_value>
|
2997 |
-
</wp:postmeta>
|
2998 |
-
<wp:postmeta>
|
2999 |
-
<wp:meta_key><![CDATA[mo_custom_primary_navigation_menu]]></wp:meta_key>
|
3000 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3001 |
-
</wp:postmeta>
|
3002 |
-
<wp:postmeta>
|
3003 |
-
<wp:meta_key><![CDATA[mo_primary_sidebar_choice]]></wp:meta_key>
|
3004 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3005 |
-
</wp:postmeta>
|
3006 |
-
<wp:postmeta>
|
3007 |
-
<wp:meta_key><![CDATA[_wpb_shortcodes_custom_css]]></wp:meta_key>
|
3008 |
-
<wp:meta_value><![CDATA[.vc_custom_1454132563457{background-color: #ffffff !important;}.vc_custom_1457352481322{background-color: #1b1b1c !important;}.vc_custom_1454132563457{background-color: #ffffff !important;}.vc_custom_1457353272466{background-color: #1b1b1c !important;}.vc_custom_1457352481322{background-color: #1b1b1c !important;}.vc_custom_1457353272466{background-color: #1b1b1c !important;}.vc_custom_1457352481322{background-color: #1b1b1c !important;}.vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}.vc_custom_1457352481322{background-color: #1b1b1c !important;}.vc_custom_1453727329640{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f1f1f1 !important;}.vc_custom_1457352481322{background-color: #1b1b1c !important;}]]></wp:meta_value>
|
3009 |
-
</wp:postmeta>
|
3010 |
-
<wp:postmeta>
|
3011 |
-
<wp:meta_key><![CDATA[mo_remove_title_header]]></wp:meta_key>
|
3012 |
-
<wp:meta_value><![CDATA[a:1:{i:0;s:3:"Yes";}]]></wp:meta_value>
|
3013 |
-
</wp:postmeta>
|
3014 |
-
<wp:postmeta>
|
3015 |
-
<wp:meta_key><![CDATA[_wpb_post_custom_css]]></wp:meta_key>
|
3016 |
-
<wp:meta_value><![CDATA[.lvca-insignia-item img {
|
3017 |
-
margin: 0 0 30px 0;
|
3018 |
-
}
|
3019 |
-
.lvca-insignia-text {
|
3020 |
-
padding: 0 20px 20px;
|
3021 |
-
font-size: 15px;
|
3022 |
-
line-height: 24px;
|
3023 |
-
}
|
3024 |
-
.lvca-insignia-item h3 {
|
3025 |
-
font-size: 20px;
|
3026 |
-
line-height: 32px;
|
3027 |
-
letter-spacing: 1px;
|
3028 |
-
margin-bottom: 10px;
|
3029 |
-
text-transform: uppercase;
|
3030 |
-
font-weight: bold;
|
3031 |
-
}
|
3032 |
-
.lvca-insignia-item .lvca-read-more {
|
3033 |
-
display: block;
|
3034 |
-
font-style: italic;
|
3035 |
-
text-decoration: underline;
|
3036 |
-
font-size: 14px;
|
3037 |
-
line-height: 22px;
|
3038 |
-
}]]></wp:meta_value>
|
3039 |
-
</wp:postmeta>
|
3040 |
-
<wp:postmeta>
|
3041 |
-
<wp:meta_key><![CDATA[_dp_original]]></wp:meta_key>
|
3042 |
-
<wp:meta_value><![CDATA[12484]]></wp:meta_value>
|
3043 |
-
</wp:postmeta>
|
3044 |
-
</item>
|
3045 |
-
<item>
|
3046 |
-
<title>Tabs Accordions</title>
|
3047 |
-
<link>http://portfoliotheme.org/visual-composer-addons/2016/03/08/12555/</link>
|
3048 |
-
<pubDate>Tue, 08 Mar 2016 02:54:54 +0000</pubDate>
|
3049 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
3050 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/?p=12555</guid>
|
3051 |
-
<description></description>
|
3052 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
3053 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
3054 |
-
<wp:post_id>12555</wp:post_id>
|
3055 |
-
<wp:post_date><![CDATA[2016-03-08 02:54:54]]></wp:post_date>
|
3056 |
-
<wp:post_date_gmt><![CDATA[2016-03-08 02:54:54]]></wp:post_date_gmt>
|
3057 |
-
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
|
3058 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
3059 |
-
<wp:post_name><![CDATA[12555]]></wp:post_name>
|
3060 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
3061 |
-
<wp:post_parent>0</wp:post_parent>
|
3062 |
-
<wp:menu_order>2</wp:menu_order>
|
3063 |
-
<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
|
3064 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
3065 |
-
<wp:is_sticky>0</wp:is_sticky>
|
3066 |
-
<category domain="nav_menu" nicename="home"><![CDATA[Home]]></category>
|
3067 |
-
<wp:postmeta>
|
3068 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
3069 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
3070 |
-
</wp:postmeta>
|
3071 |
-
<wp:postmeta>
|
3072 |
-
<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
|
3073 |
-
<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
|
3074 |
-
</wp:postmeta>
|
3075 |
-
<wp:postmeta>
|
3076 |
-
<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
|
3077 |
-
<wp:meta_value><![CDATA[0]]></wp:meta_value>
|
3078 |
-
</wp:postmeta>
|
3079 |
-
<wp:postmeta>
|
3080 |
-
<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
|
3081 |
-
<wp:meta_value><![CDATA[12517]]></wp:meta_value>
|
3082 |
-
</wp:postmeta>
|
3083 |
-
<wp:postmeta>
|
3084 |
-
<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
|
3085 |
-
<wp:meta_value><![CDATA[page]]></wp:meta_value>
|
3086 |
-
</wp:postmeta>
|
3087 |
-
<wp:postmeta>
|
3088 |
-
<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
|
3089 |
-
<wp:meta_value><![CDATA[]]></wp:meta_value>
|
3090 |
-
</wp:postmeta>
|
3091 |
-
<wp:postmeta>
|
3092 |
-
<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
|
3093 |
-
<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
|
3094 |
-
</wp:postmeta>
|
3095 |
-
<wp:postmeta>
|
3096 |
-
<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
|
3097 |
-
<wp:meta_value><![CDATA[]]></wp:meta_value>
|
3098 |
-
</wp:postmeta>
|
3099 |
-
<wp:postmeta>
|
3100 |
-
<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
|
3101 |
-
<wp:meta_value><![CDATA[]]></wp:meta_value>
|
3102 |
-
</wp:postmeta>
|
3103 |
-
</item>
|
3104 |
-
<item>
|
3105 |
-
<title>VC Extensions</title>
|
3106 |
-
<link>http://portfoliotheme.org/visual-composer-addons/2016/03/08/home/</link>
|
3107 |
-
<pubDate>Tue, 08 Mar 2016 02:54:54 +0000</pubDate>
|
3108 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
3109 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/?p=12556</guid>
|
3110 |
-
<description></description>
|
3111 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
3112 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
3113 |
-
<wp:post_id>12556</wp:post_id>
|
3114 |
-
<wp:post_date><![CDATA[2016-03-08 02:54:54]]></wp:post_date>
|
3115 |
-
<wp:post_date_gmt><![CDATA[2016-03-08 02:54:54]]></wp:post_date_gmt>
|
3116 |
-
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
|
3117 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
3118 |
-
<wp:post_name><![CDATA[home]]></wp:post_name>
|
3119 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
3120 |
-
<wp:post_parent>0</wp:post_parent>
|
3121 |
-
<wp:menu_order>1</wp:menu_order>
|
3122 |
-
<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
|
3123 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
3124 |
-
<wp:is_sticky>0</wp:is_sticky>
|
3125 |
-
<category domain="nav_menu" nicename="home"><![CDATA[Home]]></category>
|
3126 |
-
<wp:postmeta>
|
3127 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
3128 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
3129 |
-
</wp:postmeta>
|
3130 |
-
<wp:postmeta>
|
3131 |
-
<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
|
3132 |
-
<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
|
3133 |
-
</wp:postmeta>
|
3134 |
-
<wp:postmeta>
|
3135 |
-
<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
|
3136 |
-
<wp:meta_value><![CDATA[0]]></wp:meta_value>
|
3137 |
-
</wp:postmeta>
|
3138 |
-
<wp:postmeta>
|
3139 |
-
<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
|
3140 |
-
<wp:meta_value><![CDATA[12484]]></wp:meta_value>
|
3141 |
-
</wp:postmeta>
|
3142 |
-
<wp:postmeta>
|
3143 |
-
<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
|
3144 |
-
<wp:meta_value><![CDATA[page]]></wp:meta_value>
|
3145 |
-
</wp:postmeta>
|
3146 |
-
<wp:postmeta>
|
3147 |
-
<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
|
3148 |
-
<wp:meta_value><![CDATA[]]></wp:meta_value>
|
3149 |
-
</wp:postmeta>
|
3150 |
-
<wp:postmeta>
|
3151 |
-
<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
|
3152 |
-
<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
|
3153 |
-
</wp:postmeta>
|
3154 |
-
<wp:postmeta>
|
3155 |
-
<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
|
3156 |
-
<wp:meta_value><![CDATA[]]></wp:meta_value>
|
3157 |
-
</wp:postmeta>
|
3158 |
-
<wp:postmeta>
|
3159 |
-
<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
|
3160 |
-
<wp:meta_value><![CDATA[]]></wp:meta_value>
|
3161 |
-
</wp:postmeta>
|
3162 |
-
</item>
|
3163 |
-
<item>
|
3164 |
-
<title>Themes</title>
|
3165 |
-
<link>http://portfoliotheme.org/visual-composer-addons/2016/03/08/themes/</link>
|
3166 |
-
<pubDate>Tue, 08 Mar 2016 02:54:54 +0000</pubDate>
|
3167 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
3168 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/?p=12557</guid>
|
3169 |
-
<description></description>
|
3170 |
-
<content:encoded><![CDATA[]]></content:encoded>
|
3171 |
-
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
3172 |
-
<wp:post_id>12557</wp:post_id>
|
3173 |
-
<wp:post_date><![CDATA[2016-03-08 02:54:54]]></wp:post_date>
|
3174 |
-
<wp:post_date_gmt><![CDATA[2016-03-08 02:54:54]]></wp:post_date_gmt>
|
3175 |
-
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
|
3176 |
-
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
|
3177 |
-
<wp:post_name><![CDATA[themes]]></wp:post_name>
|
3178 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
3179 |
-
<wp:post_parent>0</wp:post_parent>
|
3180 |
-
<wp:menu_order>3</wp:menu_order>
|
3181 |
-
<wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
|
3182 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
3183 |
-
<wp:is_sticky>0</wp:is_sticky>
|
3184 |
-
<category domain="nav_menu" nicename="home"><![CDATA[Home]]></category>
|
3185 |
-
<wp:postmeta>
|
3186 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
3187 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
3188 |
-
</wp:postmeta>
|
3189 |
-
<wp:postmeta>
|
3190 |
-
<wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
|
3191 |
-
<wp:meta_value><![CDATA[custom]]></wp:meta_value>
|
3192 |
-
</wp:postmeta>
|
3193 |
-
<wp:postmeta>
|
3194 |
-
<wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
|
3195 |
-
<wp:meta_value><![CDATA[0]]></wp:meta_value>
|
3196 |
-
</wp:postmeta>
|
3197 |
-
<wp:postmeta>
|
3198 |
-
<wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
|
3199 |
-
<wp:meta_value><![CDATA[12557]]></wp:meta_value>
|
3200 |
-
</wp:postmeta>
|
3201 |
-
<wp:postmeta>
|
3202 |
-
<wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
|
3203 |
-
<wp:meta_value><![CDATA[custom]]></wp:meta_value>
|
3204 |
-
</wp:postmeta>
|
3205 |
-
<wp:postmeta>
|
3206 |
-
<wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
|
3207 |
-
<wp:meta_value><![CDATA[]]></wp:meta_value>
|
3208 |
-
</wp:postmeta>
|
3209 |
-
<wp:postmeta>
|
3210 |
-
<wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
|
3211 |
-
<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
|
3212 |
-
</wp:postmeta>
|
3213 |
-
<wp:postmeta>
|
3214 |
-
<wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
|
3215 |
-
<wp:meta_value><![CDATA[]]></wp:meta_value>
|
3216 |
-
</wp:postmeta>
|
3217 |
-
<wp:postmeta>
|
3218 |
-
<wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
|
3219 |
-
<wp:meta_value><![CDATA[http://portfoliotheme.org]]></wp:meta_value>
|
3220 |
-
</wp:postmeta>
|
3221 |
-
</item>
|
3222 |
-
<item>
|
3223 |
-
<title>Rocky Mountains</title>
|
3224 |
-
<link>http://portfoliotheme.org/visual-composer-addons/2016/01/06/rocky-mountains/</link>
|
3225 |
-
<pubDate>Wed, 06 Jan 2016 14:09:38 +0000</pubDate>
|
3226 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
3227 |
-
<guid isPermaLink="false">http://portfoliotheme.org/siteorigin-widgets/?p=12441</guid>
|
3228 |
-
<description></description>
|
3229 |
-
<content:encoded><![CDATA[Vestibulum rutrum, mi nec elementum vehicula, eros quam gravida nisl, id fringilla neque ante vel mi. Suspendisse pulvinar, augue ac venenatis condimentum, sem libero volutpat nibh, nec pellentesque velit pede quis nunc. Phasellus leo dolor, tempus non, auctor et, hendrerit quis, nisi. Quisque id odio. Vivamus consectetuer hendrerit lacus.
|
3230 |
-
|
3231 |
-
Quisque rutrum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed aliquam, nisi quis porttitor congue, elit erat euismod orci, ac placerat dolor lectus quis orci. Curabitur at lacus ac velit ornare lobortis. In dui magna, posuere eget, vestibulum et, tempor auctor, justo. In consectetuer turpis ut velit.]]></content:encoded>
|
3232 |
-
<excerpt:encoded><![CDATA[Vestibulum rutrum, mi nec elementum vehicula, eros quam gravida nisl, id fringilla neque ante vel mi. Suspendisse pulvinar, augue venenatis.]]></excerpt:encoded>
|
3233 |
-
<wp:post_id>12441</wp:post_id>
|
3234 |
-
<wp:post_date><![CDATA[2016-01-06 14:09:38]]></wp:post_date>
|
3235 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 14:09:38]]></wp:post_date_gmt>
|
3236 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
3237 |
-
<wp:ping_status><![CDATA[open]]></wp:ping_status>
|
3238 |
-
<wp:post_name><![CDATA[rocky-mountains]]></wp:post_name>
|
3239 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
3240 |
-
<wp:post_parent>0</wp:post_parent>
|
3241 |
-
<wp:menu_order>0</wp:menu_order>
|
3242 |
-
<wp:post_type><![CDATA[post]]></wp:post_type>
|
3243 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
3244 |
-
<wp:is_sticky>0</wp:is_sticky>
|
3245 |
-
<category domain="category" nicename="nature"><![CDATA[Nature]]></category>
|
3246 |
-
<wp:postmeta>
|
3247 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
3248 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
3249 |
-
</wp:postmeta>
|
3250 |
-
<wp:postmeta>
|
3251 |
-
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
3252 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
3253 |
-
</wp:postmeta>
|
3254 |
-
<wp:postmeta>
|
3255 |
-
<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
|
3256 |
-
<wp:meta_value><![CDATA[31]]></wp:meta_value>
|
3257 |
-
</wp:postmeta>
|
3258 |
-
<wp:postmeta>
|
3259 |
-
<wp:meta_key><![CDATA[_wpas_done_all]]></wp:meta_key>
|
3260 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
3261 |
-
</wp:postmeta>
|
3262 |
-
<wp:postmeta>
|
3263 |
-
<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
|
3264 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3265 |
-
</wp:postmeta>
|
3266 |
-
<wp:postmeta>
|
3267 |
-
<wp:meta_key><![CDATA[mo_slider_choice]]></wp:meta_key>
|
3268 |
-
<wp:meta_value><![CDATA[None]]></wp:meta_value>
|
3269 |
-
</wp:postmeta>
|
3270 |
-
<wp:postmeta>
|
3271 |
-
<wp:meta_key><![CDATA[mo_custom_primary_navigation_menu]]></wp:meta_key>
|
3272 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3273 |
-
</wp:postmeta>
|
3274 |
-
<wp:postmeta>
|
3275 |
-
<wp:meta_key><![CDATA[mo_current_post_layout]]></wp:meta_key>
|
3276 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3277 |
-
</wp:postmeta>
|
3278 |
-
<wp:postmeta>
|
3279 |
-
<wp:meta_key><![CDATA[mo_primary_sidebar_choice]]></wp:meta_key>
|
3280 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3281 |
-
</wp:postmeta>
|
3282 |
-
</item>
|
3283 |
-
<item>
|
3284 |
-
<title>Living Dangerously</title>
|
3285 |
-
<link>http://portfoliotheme.org/visual-composer-addons/2016/01/06/living-dangerously/</link>
|
3286 |
-
<pubDate>Wed, 06 Jan 2016 14:10:35 +0000</pubDate>
|
3287 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
3288 |
-
<guid isPermaLink="false">http://portfoliotheme.org/siteorigin-widgets/?p=12443</guid>
|
3289 |
-
<description></description>
|
3290 |
-
<content:encoded><![CDATA[Phasellus magna. Donec interdum, metus et hendrerit aliquet, dolor diam sagittis ligula, eget egestas libero turpis vel mi. Aenean tellus metus, bibendum sed, posuere ac, mattis non, nunc. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc, quis gravida magna mi a libero. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed aliquam, nisi quis porttitor congue, elit erat euismod orci, ac placerat dolor lectus quis orci.
|
3291 |
-
|
3292 |
-
In turpis. Fusce convallis metus id felis luctus adipiscing. Donec vitae orci sed dolor rutrum auctor. Phasellus magna. Cras id dui.]]></content:encoded>
|
3293 |
-
<excerpt:encoded><![CDATA[Phasellus magna. Donec interdum, metus et hendrerit aliquet, dolor diam sagittis ligula, eget egestas libero turpis vel mi. Aenean tellus metus.]]></excerpt:encoded>
|
3294 |
-
<wp:post_id>12443</wp:post_id>
|
3295 |
-
<wp:post_date><![CDATA[2016-01-06 14:10:35]]></wp:post_date>
|
3296 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 14:10:35]]></wp:post_date_gmt>
|
3297 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
3298 |
-
<wp:ping_status><![CDATA[open]]></wp:ping_status>
|
3299 |
-
<wp:post_name><![CDATA[living-dangerously]]></wp:post_name>
|
3300 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
3301 |
-
<wp:post_parent>0</wp:post_parent>
|
3302 |
-
<wp:menu_order>0</wp:menu_order>
|
3303 |
-
<wp:post_type><![CDATA[post]]></wp:post_type>
|
3304 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
3305 |
-
<wp:is_sticky>0</wp:is_sticky>
|
3306 |
-
<category domain="category" nicename="adventure"><![CDATA[Adventure]]></category>
|
3307 |
-
<category domain="category" nicename="travel"><![CDATA[Travel]]></category>
|
3308 |
-
<wp:postmeta>
|
3309 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
3310 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
3311 |
-
</wp:postmeta>
|
3312 |
-
<wp:postmeta>
|
3313 |
-
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
3314 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
3315 |
-
</wp:postmeta>
|
3316 |
-
<wp:postmeta>
|
3317 |
-
<wp:meta_key><![CDATA[_wpas_done_all]]></wp:meta_key>
|
3318 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
3319 |
-
</wp:postmeta>
|
3320 |
-
<wp:postmeta>
|
3321 |
-
<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
|
3322 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3323 |
-
</wp:postmeta>
|
3324 |
-
<wp:postmeta>
|
3325 |
-
<wp:meta_key><![CDATA[mo_slider_choice]]></wp:meta_key>
|
3326 |
-
<wp:meta_value><![CDATA[None]]></wp:meta_value>
|
3327 |
-
</wp:postmeta>
|
3328 |
-
<wp:postmeta>
|
3329 |
-
<wp:meta_key><![CDATA[mo_custom_primary_navigation_menu]]></wp:meta_key>
|
3330 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3331 |
-
</wp:postmeta>
|
3332 |
-
<wp:postmeta>
|
3333 |
-
<wp:meta_key><![CDATA[mo_current_post_layout]]></wp:meta_key>
|
3334 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3335 |
-
</wp:postmeta>
|
3336 |
-
<wp:postmeta>
|
3337 |
-
<wp:meta_key><![CDATA[mo_primary_sidebar_choice]]></wp:meta_key>
|
3338 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3339 |
-
</wp:postmeta>
|
3340 |
-
<wp:postmeta>
|
3341 |
-
<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
|
3342 |
-
<wp:meta_value><![CDATA[32]]></wp:meta_value>
|
3343 |
-
</wp:postmeta>
|
3344 |
-
</item>
|
3345 |
-
<item>
|
3346 |
-
<title>Training Wild Horses</title>
|
3347 |
-
<link>http://portfoliotheme.org/visual-composer-addons/2016/01/06/training-wild-horses/</link>
|
3348 |
-
<pubDate>Wed, 06 Jan 2016 14:11:30 +0000</pubDate>
|
3349 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
3350 |
-
<guid isPermaLink="false">http://portfoliotheme.org/siteorigin-widgets/?p=12445</guid>
|
3351 |
-
<description></description>
|
3352 |
-
<content:encoded><![CDATA[Phasellus ullamcorper ipsum rutrum nunc. Suspendisse potenti. Etiam feugiat lorem non metus. Phasellus dolor. Vestibulum fringilla pede sit amet augue.
|
3353 |
-
|
3354 |
-
Ut varius tincidunt libero. Etiam ultricies nisi vel augue. Duis leo. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Fusce commodo aliquam arcu.]]></content:encoded>
|
3355 |
-
<excerpt:encoded><![CDATA[Phasellus ullamcorper ipsum rutrum nunc. Suspendisse potenti. Etiam feugiat lorem non metus. Phasellus dolor. Vestibulum fringilla pede sit amet augue.]]></excerpt:encoded>
|
3356 |
-
<wp:post_id>12445</wp:post_id>
|
3357 |
-
<wp:post_date><![CDATA[2016-01-06 14:11:30]]></wp:post_date>
|
3358 |
-
<wp:post_date_gmt><![CDATA[2016-01-06 14:11:30]]></wp:post_date_gmt>
|
3359 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
3360 |
-
<wp:ping_status><![CDATA[open]]></wp:ping_status>
|
3361 |
-
<wp:post_name><![CDATA[training-wild-horses]]></wp:post_name>
|
3362 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
3363 |
-
<wp:post_parent>0</wp:post_parent>
|
3364 |
-
<wp:menu_order>0</wp:menu_order>
|
3365 |
-
<wp:post_type><![CDATA[post]]></wp:post_type>
|
3366 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
3367 |
-
<wp:is_sticky>0</wp:is_sticky>
|
3368 |
-
<category domain="category" nicename="adventure"><![CDATA[Adventure]]></category>
|
3369 |
-
<category domain="category" nicename="tips"><![CDATA[Tips]]></category>
|
3370 |
-
<wp:postmeta>
|
3371 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
3372 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
3373 |
-
</wp:postmeta>
|
3374 |
-
<wp:postmeta>
|
3375 |
-
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
3376 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
3377 |
-
</wp:postmeta>
|
3378 |
-
<wp:postmeta>
|
3379 |
-
<wp:meta_key><![CDATA[_wpas_done_all]]></wp:meta_key>
|
3380 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
3381 |
-
</wp:postmeta>
|
3382 |
-
<wp:postmeta>
|
3383 |
-
<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
|
3384 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3385 |
-
</wp:postmeta>
|
3386 |
-
<wp:postmeta>
|
3387 |
-
<wp:meta_key><![CDATA[mo_slider_choice]]></wp:meta_key>
|
3388 |
-
<wp:meta_value><![CDATA[None]]></wp:meta_value>
|
3389 |
-
</wp:postmeta>
|
3390 |
-
<wp:postmeta>
|
3391 |
-
<wp:meta_key><![CDATA[mo_custom_primary_navigation_menu]]></wp:meta_key>
|
3392 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3393 |
-
</wp:postmeta>
|
3394 |
-
<wp:postmeta>
|
3395 |
-
<wp:meta_key><![CDATA[mo_current_post_layout]]></wp:meta_key>
|
3396 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3397 |
-
</wp:postmeta>
|
3398 |
-
<wp:postmeta>
|
3399 |
-
<wp:meta_key><![CDATA[mo_primary_sidebar_choice]]></wp:meta_key>
|
3400 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3401 |
-
</wp:postmeta>
|
3402 |
-
<wp:postmeta>
|
3403 |
-
<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
|
3404 |
-
<wp:meta_value><![CDATA[33]]></wp:meta_value>
|
3405 |
-
</wp:postmeta>
|
3406 |
-
</item>
|
3407 |
-
<item>
|
3408 |
-
<title>NYC Skyline View</title>
|
3409 |
-
<link>http://portfoliotheme.org/visual-composer-addons/2016/02/02/nyc-skyline-view/</link>
|
3410 |
-
<pubDate>Tue, 02 Feb 2016 12:38:01 +0000</pubDate>
|
3411 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
3412 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/?p=12505</guid>
|
3413 |
-
<description></description>
|
3414 |
-
<content:encoded><![CDATA[Phasellus gravida semper nisi. Ut a nisl id ante tempus hendrerit. Cras id dui. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Vestibulum rutrum, mi nec elementum vehicula, eros quam gravida nisl, id fringilla neque ante vel mi. Suspendisse pulvinar, augue ac venenatis condimentum.]]></content:encoded>
|
3415 |
-
<excerpt:encoded><![CDATA[Phasellus gravida semper nisi. Ut a nisl id ante tempus hendrerit. Cras id dui. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Vestibulum rutrum, mi nec elementum vehicula, eros quam gravida nisl, id fringilla neque ante vel mi. Suspendisse pulvinar, augue ac venenatis condimentum.]]></excerpt:encoded>
|
3416 |
-
<wp:post_id>12505</wp:post_id>
|
3417 |
-
<wp:post_date><![CDATA[2016-02-02 12:38:01]]></wp:post_date>
|
3418 |
-
<wp:post_date_gmt><![CDATA[2016-02-02 12:38:01]]></wp:post_date_gmt>
|
3419 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
3420 |
-
<wp:ping_status><![CDATA[open]]></wp:ping_status>
|
3421 |
-
<wp:post_name><![CDATA[nyc-skyline-view]]></wp:post_name>
|
3422 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
3423 |
-
<wp:post_parent>0</wp:post_parent>
|
3424 |
-
<wp:menu_order>0</wp:menu_order>
|
3425 |
-
<wp:post_type><![CDATA[post]]></wp:post_type>
|
3426 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
3427 |
-
<wp:is_sticky>0</wp:is_sticky>
|
3428 |
-
<category domain="category" nicename="travel"><![CDATA[Travel]]></category>
|
3429 |
-
<wp:postmeta>
|
3430 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
3431 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
3432 |
-
</wp:postmeta>
|
3433 |
-
<wp:postmeta>
|
3434 |
-
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
3435 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
3436 |
-
</wp:postmeta>
|
3437 |
-
<wp:postmeta>
|
3438 |
-
<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
|
3439 |
-
<wp:meta_value><![CDATA[12504]]></wp:meta_value>
|
3440 |
-
</wp:postmeta>
|
3441 |
-
<wp:postmeta>
|
3442 |
-
<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
|
3443 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3444 |
-
</wp:postmeta>
|
3445 |
-
<wp:postmeta>
|
3446 |
-
<wp:meta_key><![CDATA[mo_slider_choice]]></wp:meta_key>
|
3447 |
-
<wp:meta_value><![CDATA[None]]></wp:meta_value>
|
3448 |
-
</wp:postmeta>
|
3449 |
-
<wp:postmeta>
|
3450 |
-
<wp:meta_key><![CDATA[mo_custom_primary_navigation_menu]]></wp:meta_key>
|
3451 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3452 |
-
</wp:postmeta>
|
3453 |
-
<wp:postmeta>
|
3454 |
-
<wp:meta_key><![CDATA[mo_current_post_layout]]></wp:meta_key>
|
3455 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3456 |
-
</wp:postmeta>
|
3457 |
-
<wp:postmeta>
|
3458 |
-
<wp:meta_key><![CDATA[mo_primary_sidebar_choice]]></wp:meta_key>
|
3459 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3460 |
-
</wp:postmeta>
|
3461 |
-
</item>
|
3462 |
-
<item>
|
3463 |
-
<title>Creating Waves</title>
|
3464 |
-
<link>http://portfoliotheme.org/visual-composer-addons/2016/02/02/creating-waves/</link>
|
3465 |
-
<pubDate>Tue, 02 Feb 2016 12:39:22 +0000</pubDate>
|
3466 |
-
<dc:creator><![CDATA[livemesh]]></dc:creator>
|
3467 |
-
<guid isPermaLink="false">http://portfoliotheme.org/visual-composer-addons/?p=12507</guid>
|
3468 |
-
<description></description>
|
3469 |
-
<content:encoded><![CDATA[Phasellus gravida semper nisi. Ut a nisl id ante tempus hendrerit. Cras id dui. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Vestibulum rutrum, mi nec elementum vehicula, eros quam gravida nisl, id fringilla neque ante vel mi.]]></content:encoded>
|
3470 |
-
<excerpt:encoded><![CDATA[Phasellus gravida semper nisi. Ut a nisl id ante tempus hendrerit. Cras id dui. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Vestibulum rutrum, mi nec elementum vehicula, eros quam gravida nisl, id fringilla neque ante vel mi.]]></excerpt:encoded>
|
3471 |
-
<wp:post_id>12507</wp:post_id>
|
3472 |
-
<wp:post_date><![CDATA[2016-02-02 12:39:22]]></wp:post_date>
|
3473 |
-
<wp:post_date_gmt><![CDATA[2016-02-02 12:39:22]]></wp:post_date_gmt>
|
3474 |
-
<wp:comment_status><![CDATA[open]]></wp:comment_status>
|
3475 |
-
<wp:ping_status><![CDATA[open]]></wp:ping_status>
|
3476 |
-
<wp:post_name><![CDATA[creating-waves]]></wp:post_name>
|
3477 |
-
<wp:status><![CDATA[publish]]></wp:status>
|
3478 |
-
<wp:post_parent>0</wp:post_parent>
|
3479 |
-
<wp:menu_order>0</wp:menu_order>
|
3480 |
-
<wp:post_type><![CDATA[post]]></wp:post_type>
|
3481 |
-
<wp:post_password><![CDATA[]]></wp:post_password>
|
3482 |
-
<wp:is_sticky>0</wp:is_sticky>
|
3483 |
-
<category domain="category" nicename="travel"><![CDATA[Travel]]></category>
|
3484 |
-
<wp:postmeta>
|
3485 |
-
<wp:meta_key><![CDATA[_vc_post_settings]]></wp:meta_key>
|
3486 |
-
<wp:meta_value><![CDATA[a:1:{s:10:"vc_grid_id";a:0:{}}]]></wp:meta_value>
|
3487 |
-
</wp:postmeta>
|
3488 |
-
<wp:postmeta>
|
3489 |
-
<wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
|
3490 |
-
<wp:meta_value><![CDATA[1]]></wp:meta_value>
|
3491 |
-
</wp:postmeta>
|
3492 |
-
<wp:postmeta>
|
3493 |
-
<wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
|
3494 |
-
<wp:meta_value><![CDATA[12503]]></wp:meta_value>
|
3495 |
-
</wp:postmeta>
|
3496 |
-
<wp:postmeta>
|
3497 |
-
<wp:meta_key><![CDATA[slide_template]]></wp:meta_key>
|
3498 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3499 |
-
</wp:postmeta>
|
3500 |
-
<wp:postmeta>
|
3501 |
-
<wp:meta_key><![CDATA[mo_slider_choice]]></wp:meta_key>
|
3502 |
-
<wp:meta_value><![CDATA[None]]></wp:meta_value>
|
3503 |
-
</wp:postmeta>
|
3504 |
-
<wp:postmeta>
|
3505 |
-
<wp:meta_key><![CDATA[mo_custom_primary_navigation_menu]]></wp:meta_key>
|
3506 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3507 |
-
</wp:postmeta>
|
3508 |
-
<wp:postmeta>
|
3509 |
-
<wp:meta_key><![CDATA[mo_current_post_layout]]></wp:meta_key>
|
3510 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3511 |
-
</wp:postmeta>
|
3512 |
-
<wp:postmeta>
|
3513 |
-
<wp:meta_key><![CDATA[mo_primary_sidebar_choice]]></wp:meta_key>
|
3514 |
-
<wp:meta_value><![CDATA[default]]></wp:meta_value>
|
3515 |
-
</wp:postmeta>
|
3516 |
-
</item>
|
3517 |
-
</channel>
|
3518 |
-
</rss>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|