Plugin Directory

Changeset 1911795


Ignore:
Timestamp:
07/19/2018 05:43:36 PM (8 years ago)
Author:
naminbd
Message:

Fix some error and release 1.0.1 version

Location:
smart-popup/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • smart-popup/trunk/readme.txt

    r1911472 r1911795  
    1 === Smart Popup  ===
    2 Contributors: naminbd
    3 Tags: popup, modal, facebook popup, video popup, shortcode popup, bootstrap modal, optin, social popup
     1=== WP Smart Tooltip  ===
     2Contributors: naminbd, msisaifulsaif
     3Tags: tips, tooltip, bootstrap tooltip, dictionary, directory, glossary, responsive
    44Donate link: http://nurul.ninja/supportme/
    55Requires PHP: 5.2.4
    6 Requires at least: 4.0
     6Requires at least: 3.0
    77Tested up to: 4.9.1
    88Stable tag: trunk
     
    1313
    1414== Description ==
    15 Smart Popup:: an exclusive popup (Modal) plugin for WordPress. You can show any content in your wordpress post or page as popup. You can add popup with link or button or page/post on load.
    16 You can use some nice theme and customize button and colors. You can able to add your facebook page like and wall or you can add any video from youtube.
    17 You also add shrot code or image or any html in your popup.
    18 
    19 For short code use: [wps-popup id="ID"] (you can see this in popup list, just copy & past)
    20 
     15Easily add Bootstrap tooltip to your site. You can create  custom post and use as tolltip anywhere in your site with short code.
     16Just use like this: [wp-smart-tooltip id="<your-postID-here->"]
     17Post title will show as tooltip text and post content will show as tooltip.
    2118
    2219
    2320
    2421= Features =
    25   * Use Custom post as popup.
    26   * Use anywhere in your site.
    27   * Use popup as Link
    28   * Use Popup as button
    29   * Use Popup on page or post load
    30   * Use time delay for auto loaded popup.
    31   * Customize button color and radius.
    32   * 4 Predefine themes (more coming soon).
    33   * Customize design as your need.
     22  * Use Custom post as tooltip.
     23  * Support any HTML in tooltip content.
     24  * Custom background for tooltip.
     25  * Custom text color for tooltip.
     26  * User define tooltip width.
     27
    3428 
    35 
    36 = 3rd party supported plugins =
    37   * Contact Form 7
    38   * Ninja Forms
    39   * Neo Forms
    40   * WP Forms
    41   * WeForms
    42   * Gravity Forms
    43   * WP Google Maps
    44   * HTML5 Maps
    45   * Shortcode Maker
    46   * Review Builder
    47   * Elementor Builder
    48  
    49 
    50 == Screenshots ==
    51 1. Pop List
    52 2. New Popup - HTML
    53 3. New Popup - Image
    54 4. New Popup - Facebook Page Like
    55 5. New Popup - Short Code
    56 6. New Popup - YouTube Video
    57 7. Individual Popup Setting
    58 8. Popup Theme
    59 9. Popup Settings
    60 10. Popup Short code render in front-end page
    61 11. Short code popup example demo
    62 12. YouTube Video popup example demo
    63 13. Image popup example demo
    64 14. HTML popup example demo
    65  
    66 
    6729== Installation ==
    68 1. Download and install the plugin from WordPress dashboard. You can also upload the entire “Smart Popup” folder to the `/wp-content/plugins/` directory
     301. Download and install the plugin from WordPress dashboard. You can also upload the entire “wp smart tooltip” folder to the `/wp-content/plugins/` directory
    69312. Activate the plugin through the ‘Plugins’ menu in WordPress
    7032
    7133== Changelog ==
     34= 1.0.1 =
     35* Add Alap offset in settings.
    7236
     37= 1.0.1 =
     38* Fixed JavaScript error for auto load popup
     39 
    7340= 1.0.0 =
    7441* Initial release. 
    7542 
    7643
     44== Screenshots ==
     451. Tooltip list in admin area 
     462. How to use tooltip
     473. Settings
     484. Front-end example
    7749
    7850
     
    8052= What about support? =
    8153Create a support ticket at WordPress forum and I will take care of any issue.
    82 = How I add Video From YouTube? =
    83 Select popup type as 'YouTube' than add Video ID in YouTube Settings.
    84 = How I add Facebook Page Likebox? =
    85 Select popup type as 'Facebook' than add your Page URL in Facebook Settings.
    86 = How to hide popup shortcode from Post Excerpt?
    87 You can change settings from settings page for it.
     54= Can I change color and background of tool-tips =
     55Yes, you can change it from settings
     56= How I use this plugin =
     57Please check 'how to use' sub menu form plugin.
     58
  • smart-popup/trunk/smart-popup.php

    r1911472 r1911795  
    22/*
    33 * Plugin Name: Smart Popup
    4  * Version: 1.0.0
     4 * Version: 1.0.1
    55 * Plugin URI: 
    66 * Description: A Complete solution for the popup. You can add a stylish and easily add a popup for page auto load or link on page and post.   
     
    166166        wp_enqueue_script('wps_popup_front', plugins_url('assets/js/script.js', __FILE__), '', false, true);
    167167        wp_enqueue_style('wps_popup_front', plugins_url('/assets/css/style.css', __FILE__));
    168 
     168        wp_enqueue_script('jquery-p-js', "https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js",  array('jquery'),false, false);
     169        wp_enqueue_script('bootstrap-js', "https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js",  array('jquery'),false, false);
     170       
    169171        $act_theme = get_option('wpsp_active_theme');
    170172        wp_enqueue_style('wps_popup_front_theme', plugins_url('/assets/css/theme/' . $act_theme . '.css', __FILE__));
Note: See TracChangeset for help on using the changeset viewer.