Version Description
Download this release
Release Info
Developer | FARAZFRANK |
Plugin | Ultimate Responsive Image Slider Plugin |
Version | 3.2.13 |
Comparing to | |
See all releases |
Code changes from version 3.2.12 to 3.2.13
- css/wpfrank-products.css +83 -0
- help-and-support.php +1 -1
- img/products/All-In-One Premium-Plugins-Bundle.jpg +0 -0
- img/products/Appointment-Scheduler-Pro.jpg +0 -0
- img/products/Flickr-Album-Gallery-Pro.jpg +0 -0
- img/products/Ultimate-Responsive-Image-Slider-Pro.jpg +0 -0
- img/products/WP-Lightbox-Gallery-Pro.jpg +0 -0
- img/products/WP-Photo-Gallery-Pro.jpg +0 -0
- img/products/WP-Video-Album-Gallery-Pro.jpg +0 -0
- img/{ultimate.PNG → ultimate.png} +0 -0
- img/wpg_xmas-min.jpg +0 -0
- products.php +88 -0
- readme.txt +6 -2
- ultimate-responsive-image-slider.php +6 -6
- uris-feature-admin-notice.php +2 -2
- uris-promote.php +0 -36
css/wpfrank-products.css
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.wpfrank-products-container {
|
2 |
+
max-width: 1400px;
|
3 |
+
margin: 0 auto;
|
4 |
+
font-family: sans-serif;
|
5 |
+
}
|
6 |
+
.wpfrank-products-title {
|
7 |
+
text-align: center;
|
8 |
+
letter-spacing: 1px;
|
9 |
+
text-transform: uppercase;
|
10 |
+
margin-bottom: 30px;
|
11 |
+
margin-top: 15px;
|
12 |
+
padding: 10px 0;
|
13 |
+
background-color: #045ca3;
|
14 |
+
}
|
15 |
+
.wpfrank-products-title h1 {
|
16 |
+
color: #fff;
|
17 |
+
}
|
18 |
+
.wpfrank-products {
|
19 |
+
display: flex;
|
20 |
+
flex-wrap: wrap;
|
21 |
+
justify-content: space-around;
|
22 |
+
}
|
23 |
+
.wpfrank-product {
|
24 |
+
box-sizing: border-box;
|
25 |
+
flex-basis: 30%;
|
26 |
+
margin-bottom: 30px;
|
27 |
+
}
|
28 |
+
@media(max-width: 1024px) {
|
29 |
+
.wpfrank-product {
|
30 |
+
flex-basis: 45%;
|
31 |
+
}
|
32 |
+
}
|
33 |
+
@media(max-width: 640px) {
|
34 |
+
.wpfrank-product {
|
35 |
+
flex-basis: 90%;
|
36 |
+
}
|
37 |
+
}
|
38 |
+
.wpfrank-product-title {
|
39 |
+
font-size: 18px;
|
40 |
+
text-align: center;
|
41 |
+
font-weight: bold;
|
42 |
+
margin-bottom: 8px;
|
43 |
+
}
|
44 |
+
.wpfrank-product-image {
|
45 |
+
width: 100%;
|
46 |
+
}
|
47 |
+
.wpfrank-product-links {
|
48 |
+
display: flex;
|
49 |
+
justify-content: space-between;
|
50 |
+
}
|
51 |
+
.wpfrank-product-tagline {
|
52 |
+
text-align: center;
|
53 |
+
line-height: 1.6em;
|
54 |
+
margin-bottom: 8px;
|
55 |
+
background-color: #e8e8e8;
|
56 |
+
padding: 10px 0;
|
57 |
+
}
|
58 |
+
.wpfrank-link-button {
|
59 |
+
box-sizing: border-box;
|
60 |
+
flex-basis: 45%;
|
61 |
+
border-radius: 10px;
|
62 |
+
text-align: center;
|
63 |
+
text-decoration: none;
|
64 |
+
padding: 10px 20px;
|
65 |
+
transition: 0.4s all;
|
66 |
+
}
|
67 |
+
.wpfrank-try-now {
|
68 |
+
color: #3498db;
|
69 |
+
border: 1px solid #3498db;
|
70 |
+
}
|
71 |
+
.wpfrank-buy-now {
|
72 |
+
color: #4bb71c;
|
73 |
+
border: 1px solid #4bb71c;
|
74 |
+
}
|
75 |
+
.wpfrank-try-now:hover {
|
76 |
+
background-color: #3498db;
|
77 |
+
}
|
78 |
+
.wpfrank-buy-now:hover {
|
79 |
+
background-color: #4bb71c;
|
80 |
+
}
|
81 |
+
.wpfrank-link-button:hover {
|
82 |
+
color: #fff;
|
83 |
+
}
|
help-and-support.php
CHANGED
@@ -71,7 +71,7 @@ if(isset($_REQUEST['urispchangeurl']) ) {
|
|
71 |
);
|
72 |
}
|
73 |
update_post_meta($URISP_Id, 'ris_all_photos_details', base64_encode(serialize($ImagesArray)));
|
74 |
-
$ImagesArray=
|
75 |
}
|
76 |
endwhile;
|
77 |
}
|
71 |
);
|
72 |
}
|
73 |
update_post_meta($URISP_Id, 'ris_all_photos_details', base64_encode(serialize($ImagesArray)));
|
74 |
+
$ImagesArray = array();
|
75 |
}
|
76 |
endwhile;
|
77 |
}
|
img/products/All-In-One Premium-Plugins-Bundle.jpg
ADDED
Binary file
|
img/products/Appointment-Scheduler-Pro.jpg
ADDED
Binary file
|
img/products/Flickr-Album-Gallery-Pro.jpg
ADDED
Binary file
|
img/products/Ultimate-Responsive-Image-Slider-Pro.jpg
ADDED
Binary file
|
img/products/WP-Lightbox-Gallery-Pro.jpg
ADDED
Binary file
|
img/products/WP-Photo-Gallery-Pro.jpg
ADDED
Binary file
|
img/products/WP-Video-Album-Gallery-Pro.jpg
ADDED
Binary file
|
img/{ultimate.PNG → ultimate.png}
RENAMED
File without changes
|
img/wpg_xmas-min.jpg
DELETED
Binary file
|
products.php
ADDED
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
defined( 'ABSPATH' ) || die;
|
4 |
+
|
5 |
+
class WPFURIS_Product_Menu {
|
6 |
+
public static function create_menu() {
|
7 |
+
$products = add_submenu_page( 'edit.php?post_type=ris_gallery', 'Premium Products', 'Premium Products', 'manage_options', 'wpfuris_products', array( 'WPFURIS_Product_Menu', 'products' ) );
|
8 |
+
add_action( 'admin_print_styles-' . $products, array( 'WPFURIS_Product_Menu', 'products_assets' ) );
|
9 |
+
}
|
10 |
+
|
11 |
+
public static function products() { ?>
|
12 |
+
<div class="wpfrank-products-container">
|
13 |
+
<div class="wpfrank-products-title"><h1>Our Premium Products</h1></div>
|
14 |
+
<div class="wpfrank-products">
|
15 |
+
<div class="wpfrank-product">
|
16 |
+
<div class="wpfrank-product-title">WP Video Album Gallery Pro</div>
|
17 |
+
<img class="wpfrank-product-image" src="<?php echo URIS_PLUGIN_URL . "img/products/WP-Video-Album-Gallery-Pro.jpg"; ?>">
|
18 |
+
<div class="wpfrank-product-tagline">Premium Plugin To Add Eye Catching Video Galleries On WordPress Website</div>
|
19 |
+
<div class="wpfrank-product-links">
|
20 |
+
<a target="_blank" href="https://wpfrank.com/demo/wp-video-album-gallery-pro/" class="wpfrank-link-button wpfrank-try-now">Try Now</a>
|
21 |
+
<a target="_blank" href="https://wpfrank.com/account/signup/wp-video-album-gallery-pro" class="wpfrank-link-button wpfrank-buy-now">Buy Now</a>
|
22 |
+
</div>
|
23 |
+
</div>
|
24 |
+
<div class="wpfrank-product">
|
25 |
+
<div class="wpfrank-product-title">WP Photo Gallery Pro</div>
|
26 |
+
<img class="wpfrank-product-image" src="<?php echo URIS_PLUGIN_URL . "img/products/WP-Photo-Gallery-Pro.jpg"; ?>">
|
27 |
+
<div class="wpfrank-product-tagline">Premium Plugin To Add Eye Catching Photo Galleries On WordPress Website</div>
|
28 |
+
<div class="wpfrank-product-links">
|
29 |
+
<a target="_blank" href="https://wpfrank.com/demo/wp-photo-gallery-pro/" class="wpfrank-link-button wpfrank-try-now">Try Now</a>
|
30 |
+
<a target="_blank" href="https://wpfrank.com/account/signup/wp-photo-gallery-pro" class="wpfrank-link-button wpfrank-buy-now">Buy Now</a>
|
31 |
+
</div>
|
32 |
+
</div>
|
33 |
+
<div class="wpfrank-product">
|
34 |
+
<div class="wpfrank-product-title">Appointment Scheduler Pro</div>
|
35 |
+
<img class="wpfrank-product-image" src="<?php echo URIS_PLUGIN_URL . "img/products/Appointment-Scheduler-Pro.jpg"; ?>">
|
36 |
+
<div class="wpfrank-product-tagline">Premium Appointment Plugin To Add Booking System On WordPress Website</div>
|
37 |
+
<div class="wpfrank-product-links">
|
38 |
+
<a target="_blank" href="https://wpfrank.com/demo/appointment-scheduler-pro/" class="wpfrank-link-button wpfrank-try-now">Try Now</a>
|
39 |
+
<a target="_blank" href="https://wpfrank.com/account/signup/appointment-scheduler-pro" class="wpfrank-link-button wpfrank-buy-now">Buy Now</a>
|
40 |
+
</div>
|
41 |
+
</div>
|
42 |
+
<div class="wpfrank-product">
|
43 |
+
<div class="wpfrank-product-title">Ultimate Responsive Image Slider Pro</div>
|
44 |
+
<img class="wpfrank-product-image" src="<?php echo URIS_PLUGIN_URL . "img/products/Ultimate-Responsive-Image-Slider-Pro.jpg"; ?>">
|
45 |
+
<div class="wpfrank-product-tagline">Premium WordPress Slider Plugin With Five Elegant Design Layouts</div>
|
46 |
+
<div class="wpfrank-product-links">
|
47 |
+
<a target="_blank" href="https://wpfrank.com/demo/ultimate-responsive-image-slider-pro/" class="wpfrank-link-button wpfrank-try-now">Try Now</a>
|
48 |
+
<a target="_blank" href="https://wpfrank.com/account/signup/ultimate-responsive-image-slider-pro" class="wpfrank-link-button wpfrank-buy-now">Buy Now</a>
|
49 |
+
</div>
|
50 |
+
</div>
|
51 |
+
<div class="wpfrank-product">
|
52 |
+
<div class="wpfrank-product-title">Flickr Album Gallery Pro</div>
|
53 |
+
<img class="wpfrank-product-image" src="<?php echo URIS_PLUGIN_URL . "img/products/Flickr-Album-Gallery-Pro.jpg"; ?>">
|
54 |
+
<div class="wpfrank-product-tagline">Premium Flickr Plugin To Fetch And Display Albums On WordPress Website</div>
|
55 |
+
<div class="wpfrank-product-links">
|
56 |
+
<a target="_blank" href="https://wpfrank.com/demo/flickr-album-gallery-pro/" class="wpfrank-link-button wpfrank-try-now">Try Now</a>
|
57 |
+
<a target="_blank" href="https://wpfrank.com/account/signup/flickr-album-gallery-pro" class="wpfrank-link-button wpfrank-buy-now">Buy Now</a>
|
58 |
+
</div>
|
59 |
+
</div>
|
60 |
+
<div class="wpfrank-product">
|
61 |
+
<div class="wpfrank-product-title">WP Lightbox Gallery Pro</div>
|
62 |
+
<img class="wpfrank-product-image" src="<?php echo URIS_PLUGIN_URL . "img/products/WP-Lightbox-Gallery-Pro.jpg"; ?>">
|
63 |
+
<div class="wpfrank-product-tagline">Premium Plugin To Add Photo Galleries with Lightbox On WordPress Website</div>
|
64 |
+
<div class="wpfrank-product-links">
|
65 |
+
<a target="_blank" href="https://wpfrank.com/demo/wp-lightbox-gallery-pro/" class="wpfrank-link-button wpfrank-try-now">Try Now</a>
|
66 |
+
<a target="_blank" href="https://wpfrank.com/account/signup/wp-lightbox-gallery-pro" class="wpfrank-link-button wpfrank-buy-now">Buy Now</a>
|
67 |
+
</div>
|
68 |
+
</div>
|
69 |
+
<div class="wpfrank-product">
|
70 |
+
<div class="wpfrank-product-title">All In One Premium Plugins Bundle</div>
|
71 |
+
<img class="wpfrank-product-image" src="<?php echo URIS_PLUGIN_URL . "img/products/All-In-One Premium-Plugins-Bundle.jpg"; ?>">
|
72 |
+
<div class="wpfrank-product-tagline">All In One Premium Plugins Bundle Package for WordPress Website</div>
|
73 |
+
<div class="wpfrank-product-links">
|
74 |
+
<a target="_blank" href="https://wpfrank.com/demo/" class="wpfrank-link-button wpfrank-try-now">Try Now</a>
|
75 |
+
<a target="_blank" href="https://wpfrank.com/account/signup/wordpress-premium-plugins-bundle" class="wpfrank-link-button wpfrank-buy-now">Buy Now</a>
|
76 |
+
</div>
|
77 |
+
</div>
|
78 |
+
</div>
|
79 |
+
</div>
|
80 |
+
<?php
|
81 |
+
}
|
82 |
+
|
83 |
+
public static function products_assets() {
|
84 |
+
wp_enqueue_style( 'wpfrank-products', URIS_PLUGIN_URL . 'css/wpfrank-products.css' );
|
85 |
+
}
|
86 |
+
}
|
87 |
+
add_action( 'admin_menu' , array( 'WPFURIS_Product_Menu', 'create_menu' ) );
|
88 |
+
?>
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: FARAZFRANK
|
|
3 |
Donate link: https://www.wpfrank.com/
|
4 |
Tags: slider, best slider plugin, image slide show, responsive slider, wordpress image slider plugin
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to:
|
7 |
-
Stable tag: 3.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -127,6 +127,10 @@ Please use WordPress [support forum](http://wordpress.org/support/plugin/ultimat
|
|
127 |
== Changelog ==
|
128 |
For more information, see [WP Frank](https://wpfrank.com/)
|
129 |
|
|
|
|
|
|
|
|
|
130 |
= V 3.2.12 =
|
131 |
- Fixed Pro Banner Placement
|
132 |
|
3 |
Donate link: https://www.wpfrank.com/
|
4 |
Tags: slider, best slider plugin, image slide show, responsive slider, wordpress image slider plugin
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 5.0.1
|
7 |
+
Stable tag: 3.2.13
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
127 |
== Changelog ==
|
128 |
For more information, see [WP Frank](https://wpfrank.com/)
|
129 |
|
130 |
+
= V 3.2.13 =
|
131 |
+
* Added Our Premium Plugins
|
132 |
+
* Fixed bug when updating image URLs after website migration
|
133 |
+
|
134 |
= V 3.2.12 =
|
135 |
- Fixed Pro Banner Placement
|
136 |
|
ultimate-responsive-image-slider.php
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
Plugin Name: Ultimate Responsive Image Slider
|
4 |
Plugin URI: https://wordpress.org/plugins/ultimate-responsive-image-slider/
|
5 |
Description: Add unlimited image slides using Ultimate Responsive Image Slider in any Page and Post content to give an attractive mode to represent contents.
|
6 |
-
Version: 3.2.
|
7 |
Author: WP Frank
|
8 |
Author URI: https://wpfrank.com/
|
9 |
Text Domain: ultimate-responsive-image-slider
|
10 |
Domain Path: /languages
|
11 |
License: GPL2
|
12 |
-
|
13 |
Ultimate Responsive Image Slider is free software: you can redistribute it and/or modify
|
14 |
it under the terms of the GNU General Public License as published by
|
15 |
the Free Software Foundation, either version 2 of the License, or any later version.
|
@@ -203,9 +203,9 @@ class URIS {
|
|
203 |
public function add_all_ris_meta_boxes() {
|
204 |
add_meta_box( __('Add Slides', URIS_TD), __('Add Slides', URIS_TD), array(&$this, 'ris_generate_add_image_meta_box_function'), 'ris_gallery', 'normal', 'low' );
|
205 |
add_meta_box( __('Apply Setting On Ultimate Responsive Image Slider', URIS_TD), __('Apply Setting On Ultimate Responsive Image Slider', URIS_TD), array(&$this, 'ris_settings_meta_box_function'), 'ris_gallery', 'normal', 'low');
|
206 |
-
add_meta_box( __('Upgrade To Pro Plugin', URIS_TD), __('Upgrade To Pro Plugin', URIS_TD), array(&$this, 'ris_upgrade_to_pro_meta_box_function'), 'ris_gallery', 'normal', 'low');
|
207 |
add_meta_box ( __('Copy Slider Shortcode', URIS_TD), __('Copy Slider Shortcode', URIS_TD), array(&$this, 'ris_shotcode_meta_box_function'), 'ris_gallery', 'side', 'low');
|
208 |
add_meta_box('Show US Some Love & Rate Us', 'Show US Some Love & Rate Us', array(&$this, 'uris_Rate_us_meta_box_function'), 'ris_gallery', 'side', 'low');
|
|
|
209 |
}
|
210 |
|
211 |
//Rate Us Meta Box
|
@@ -569,16 +569,15 @@ global $URIS;
|
|
569 |
$URIS = URIS::forge();
|
570 |
|
571 |
// Review Notice Box
|
572 |
-
add_action( "admin_notices", "uris_admin_notice_resport" );
|
573 |
function uris_admin_notice_resport() {
|
574 |
global $pagenow;
|
575 |
$uris_screen = get_current_screen();
|
576 |
if ( $pagenow == 'edit.php' && $uris_screen->post_type == "ris_gallery" ) {
|
577 |
-
require_once ( 'uris-
|
578 |
}
|
579 |
}
|
580 |
|
581 |
-
|
582 |
/**
|
583 |
* upgrade to pro
|
584 |
*/
|
@@ -595,4 +594,5 @@ function uris_pro_SettingsPage() {
|
|
595 |
* URIS Short Code
|
596 |
*/
|
597 |
require_once("ultimate-responsive-image-slider-short-code.php");
|
|
|
598 |
?>
|
3 |
Plugin Name: Ultimate Responsive Image Slider
|
4 |
Plugin URI: https://wordpress.org/plugins/ultimate-responsive-image-slider/
|
5 |
Description: Add unlimited image slides using Ultimate Responsive Image Slider in any Page and Post content to give an attractive mode to represent contents.
|
6 |
+
Version: 3.2.13
|
7 |
Author: WP Frank
|
8 |
Author URI: https://wpfrank.com/
|
9 |
Text Domain: ultimate-responsive-image-slider
|
10 |
Domain Path: /languages
|
11 |
License: GPL2
|
12 |
+
|
13 |
Ultimate Responsive Image Slider is free software: you can redistribute it and/or modify
|
14 |
it under the terms of the GNU General Public License as published by
|
15 |
the Free Software Foundation, either version 2 of the License, or any later version.
|
203 |
public function add_all_ris_meta_boxes() {
|
204 |
add_meta_box( __('Add Slides', URIS_TD), __('Add Slides', URIS_TD), array(&$this, 'ris_generate_add_image_meta_box_function'), 'ris_gallery', 'normal', 'low' );
|
205 |
add_meta_box( __('Apply Setting On Ultimate Responsive Image Slider', URIS_TD), __('Apply Setting On Ultimate Responsive Image Slider', URIS_TD), array(&$this, 'ris_settings_meta_box_function'), 'ris_gallery', 'normal', 'low');
|
|
|
206 |
add_meta_box ( __('Copy Slider Shortcode', URIS_TD), __('Copy Slider Shortcode', URIS_TD), array(&$this, 'ris_shotcode_meta_box_function'), 'ris_gallery', 'side', 'low');
|
207 |
add_meta_box('Show US Some Love & Rate Us', 'Show US Some Love & Rate Us', array(&$this, 'uris_Rate_us_meta_box_function'), 'ris_gallery', 'side', 'low');
|
208 |
+
add_meta_box( __('Upgrade To Pro Plugin', URIS_TD), __('Upgrade To Pro Plugin', URIS_TD), array(&$this, 'ris_upgrade_to_pro_meta_box_function'), 'ris_gallery', 'side', 'low');
|
209 |
}
|
210 |
|
211 |
//Rate Us Meta Box
|
569 |
$URIS = URIS::forge();
|
570 |
|
571 |
// Review Notice Box
|
572 |
+
// add_action( "admin_notices", "uris_admin_notice_resport" );
|
573 |
function uris_admin_notice_resport() {
|
574 |
global $pagenow;
|
575 |
$uris_screen = get_current_screen();
|
576 |
if ( $pagenow == 'edit.php' && $uris_screen->post_type == "ris_gallery" ) {
|
577 |
+
require_once ( 'uris-feature-admin-notice.php' );
|
578 |
}
|
579 |
}
|
580 |
|
|
|
581 |
/**
|
582 |
* upgrade to pro
|
583 |
*/
|
594 |
* URIS Short Code
|
595 |
*/
|
596 |
require_once("ultimate-responsive-image-slider-short-code.php");
|
597 |
+
require_once( 'products.php' );
|
598 |
?>
|
uris-feature-admin-notice.php
CHANGED
@@ -8,7 +8,7 @@ wp_enqueue_style( 'uris-feature-notice-css', URIS_PLUGIN_URL . 'css/uris-feature
|
|
8 |
<div class="wb_plugin_feature_banner default_pattern pattern_ ">
|
9 |
<div class="wb-col-md-6 wb-col-sm-12 box">
|
10 |
<div class="ribbon"><span>Check Pro</span></div>
|
11 |
-
<img class="wp-img-responsive" src="<?php echo URIS_PLUGIN_URL . 'img/ultimate.
|
12 |
</div>
|
13 |
<div class="wb-col-md-6 wb-col-sm-12 wb_banner_featurs-list">
|
14 |
<span class="gp_banner_head"><h2><?php _e( 'Ultimate Responsive Image Slider Pro Features', URIS_TD ); ?> </h2></span>
|
@@ -27,7 +27,7 @@ wp_enqueue_style( 'uris-feature-notice-css', URIS_PLUGIN_URL . 'css/uris-feature
|
|
27 |
<div class="wp_btn-grup">
|
28 |
<a class="wb_button-primary" href="https://wpfrank.com/demo/ultimate-responsive-image-slider-pro/"
|
29 |
target="_blank"><?php _e( 'Check Pro Demo', URIS_TD ); ?></a>
|
30 |
-
<a class="wb_button-primary" href="https://wpfrank.com/account/signup/ultimate-responsive-image-slider-pro
|
31 |
target="_blank"><?php _e( 'Buy Pro', URIS_TD ); ?> $21</a>
|
32 |
</div>
|
33 |
|
8 |
<div class="wb_plugin_feature_banner default_pattern pattern_ ">
|
9 |
<div class="wb-col-md-6 wb-col-sm-12 box">
|
10 |
<div class="ribbon"><span>Check Pro</span></div>
|
11 |
+
<img class="wp-img-responsive" src="<?php echo URIS_PLUGIN_URL . 'img/ultimate.png'; ?>" alt="img">
|
12 |
</div>
|
13 |
<div class="wb-col-md-6 wb-col-sm-12 wb_banner_featurs-list">
|
14 |
<span class="gp_banner_head"><h2><?php _e( 'Ultimate Responsive Image Slider Pro Features', URIS_TD ); ?> </h2></span>
|
27 |
<div class="wp_btn-grup">
|
28 |
<a class="wb_button-primary" href="https://wpfrank.com/demo/ultimate-responsive-image-slider-pro/"
|
29 |
target="_blank"><?php _e( 'Check Pro Demo', URIS_TD ); ?></a>
|
30 |
+
<a class="wb_button-primary" href="https://wpfrank.com/account/signup/ultimate-responsive-image-slider-pro"
|
31 |
target="_blank"><?php _e( 'Buy Pro', URIS_TD ); ?> $21</a>
|
32 |
</div>
|
33 |
|
uris-promote.php
DELETED
@@ -1,36 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
if ( ! defined( 'ABSPATH' ) ) {
|
3 |
-
exit;
|
4 |
-
}
|
5 |
-
wp_enqueue_style( 'uris-feature-notice-css', URIS_PLUGIN_URL . 'css/uris-feature-notice.css', '', '1.0' );
|
6 |
-
?>
|
7 |
-
<div class="wb_plugin_feature notice is-dismissible">
|
8 |
-
<div class="wb_plugin_feature_banner default_pattern pattern_ ">
|
9 |
-
<div class="wb-col-md-6 wb-col-sm-12 box">
|
10 |
-
<div class="ribbon"><span>Check Pro</span></div>
|
11 |
-
<img class="wp-photo-img-responsive" src="<?php echo URIS_PLUGIN_URL . 'img/wpg_xmas-min.jpg'; ?>" alt="img">
|
12 |
-
</div>
|
13 |
-
<div class="wb-col-md-6 wb-col-sm-12 wb_banner_featurs-list">
|
14 |
-
<div class="gp_banner_head"><span><h2><?php _e( 'WP Photo Gallery Pro Features', URIS_TD ); ?> </h2></span></div>
|
15 |
-
<ul>
|
16 |
-
<li><?php _e( 'Multiple Column Layout', URIS_TD ); ?></li>
|
17 |
-
<li><?php _e( 'Multiple Lightbox Effect', URIS_TD ); ?></li>
|
18 |
-
<li><?php _e( '500 Plus Google Fonts', URIS_TD ); ?></li>
|
19 |
-
<li><?php _e( 'Icon on Gallery Image', URIS_TD ); ?></li>
|
20 |
-
<li><?php _e( 'Multiple Image Uploader', URIS_TD ); ?></li>
|
21 |
-
<li><?php _e( 'Hide or Show Gallery Title and Description', URIS_TD ); ?></li>
|
22 |
-
<li><?php _e( 'Multiple Color On Caption', URIS_TD ); ?></li>
|
23 |
-
<li><?php _e( 'Drag and Drop Image Control', URIS_TD ); ?></li>
|
24 |
-
<li><?php _e( 'Widget Gallery Utility', URIS_TD ); ?></li>
|
25 |
-
|
26 |
-
</ul>
|
27 |
-
<div class="wp_btn-grup">
|
28 |
-
<a class="wb_button-primary" href="https://wpfrank.com/demo/wp-photo-gallery-pro/"
|
29 |
-
target="_blank"><?php _e( 'Check Pro Demo', URIS_TD ); ?></a>
|
30 |
-
<a class="wb_button-primary" href="https://wpfrank.com/account/signup/wp-photo-gallery-pro"
|
31 |
-
target="_blank"><?php _e( 'Buy Pro', URIS_TD ); ?> $15</a>
|
32 |
-
</div>
|
33 |
-
|
34 |
-
</div>
|
35 |
-
</div>
|
36 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|