Plugin Directory

Changeset 2678021


Ignore:
Timestamp:
02/13/2022 06:58:44 PM (4 years ago)
Author:
rimplates
Message:

Docs Link Updated and Bugs fixes

Location:
rimplates/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • rimplates/trunk/README.txt

    r2677655 r2678021  
    55Requires at least: 3.0.1
    66Tested up to: 5.9
    7 Stable tag: 1.0.0
     7Stable tag: 1.0.1
    88Requires PHP: 5.6
    99License: GPLv2 or later
  • rimplates/trunk/admin/class-admin-sidebar-menu-settings.php

    r2677631 r2678021  
    4040            __( '<strong style="color:#FCB214;" class="open-submenu-blank"> Docs / Setup Info</strong>', 'rimplates' ),
    4141            'manage_options',
    42             'https://rimplenet.com/docs'
     42            'https://rimplates.tawk.help'
    4343            );
    4444       
     
    7171      //Works on Plugins Acivation / Deactiavtion Page
    7272      // Build and escape the URL.
    73       $url = esc_url('https://rimplenet.com/docs');
     73      $url = esc_url('https://rimplates.tawk.help');
    7474      // Create the link.
    75       $docs_link = "<a href='https://rimplenet.com/docs'  style='color: #93003c;font-weight: 800;' target='_blank'>" . __( 'Docs / Setup Info' ) . '</a>';
     75      $docs_link = "<a href='https://rimplates.tawk.help'  style='color: #93003c;font-weight: 800;' target='_blank'>" . __( 'Docs / Setup Info' ) . '</a>';
    7676      $donate_link = "<a href='https://rimplenet.com/donate' style='color: #FCB214;font-weight: 800;' target='_blank'>" . __( 'Donate' ) . '</a>';
    7777      // Adds the link to the end of the array.
  • rimplates/trunk/public/templates/default/functions.php

    r2677631 r2678021  
    3333      //Js for bootstrap working
    3434      wp_enqueue_script( 'rimplates-template-default-bootstrap',  plugins_url( '/assets/js/bootstrap.min.js', __FILE__ ), array( 'jquery' ) );
     35
     36      //Js for script
     37      wp_enqueue_script( 'rimplates-template-default-script',  plugins_url( '/assets/js/script.js', __FILE__ ), array( 'jquery' ) );
    3538}
    3639add_action( 'wp_enqueue_scripts', 'add_rimplates_default_template_js' );
  • rimplates/trunk/public/templates/default/index.php

    r2677631 r2678021  
    2525        <!-- Left Sidebar Start -->
    2626        <?php include 'sidebar.php'; ?>
    27         <!-- Left Sidebar End
     27        <!-- Left Sidebar End -->
    2828
    2929         <!-- Page Content Holder -->
  • rimplates/trunk/rimplates.php

    r2677649 r2678021  
    1010 *
    1111 * @link              https://rimplates.com
    12  * @since             1.0.0
     12 * @since             1.0.1
    1313 * @package           Rimplates
    1414 *
     
    1717 * Plugin URI:        https://rimplates.com
    1818 * Description:       Rimplates is a dashboard maker for wordpress. Using this Plugin is simple, install it, RIMPLATES will appear on your admin dashboard menu (with ability to add / create templates, dashboard ~ it supports both admin dashboard & user dashboard). You display the created templates/dashboard with shortcode, Use shortcode [rimplenet-template id=ID], E.g if your ID is 5 , your valid shortcode will be [rimplenet-template id=5]
    19  * Version:           1.0.0
     19 * Version:           1.0.1
    2020 * Author:            rimplates
    2121 * Author URI:        https://profiles.wordpress.org/rimplates/
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'RIMPLATES_VERSION', '1.0.0' );
     38define( 'RIMPLATES_VERSION', '1.0.1' );
    3939
    4040/**
Note: See TracChangeset for help on using the changeset viewer.