Changeset 2806059
- Timestamp:
- 10/27/2022 06:05:42 PM (3 years ago)
- Location:
- simple-post-template/trunk
- Files:
-
- 5 edited
-
admin/class-advanced-content-templates-admin.php (modified) (3 diffs)
-
admin/partials/advanced-content-templates-admin-sidecar.php (modified) (1 diff)
-
admin/partials/advanced-content-templates-admin-upgrade.php (modified) (2 diffs)
-
readme.txt (modified) (4 diffs)
-
simple-content-template.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-post-template/trunk/admin/class-advanced-content-templates-admin.php
r1620485 r2806059 122 122 123 123 add_submenu_page( "edit.php?post_type={$this->plugin->post_type}", "Simple Content Templates Settings", "Settings", "manage_options", "sct-settings", array($this, 'admin_settings_page') ); 124 add_submenu_page("edit.php?post_type={$this->plugin->post_type}", "Simple Content Templates Support", "Support", "manage_options", "sct-support", array($this, 'admin_support_page') );125 124 add_submenu_page("edit.php?post_type={$this->plugin->post_type}", "Simple Content Templates Upgrade", "Upgrade", "manage_options", "sct-upgrade", array($this, 'admin_upgrade_page') ); 126 125 … … 128 127 129 128 $wp_tabbed_navigation->add_tab('Settings', menu_page_url('sct-settings', false) ); 130 $wp_tabbed_navigation->add_tab('Support', menu_page_url('sct-support', false ) );131 129 $wp_tabbed_navigation->add_tab('Upgrade', menu_page_url('sct-upgrade', false ) ); 132 130 } … … 140 138 function admin_settings_page() { 141 139 include_once('partials/advanced-content-templates-admin-display.php'); 142 }143 144 /**145 * admin_support_page function146 * @access public147 * @return void148 */149 function admin_support_page() {150 include_once('partials/advanced-content-templates-admin-support.php');151 140 } 152 141 -
simple-post-template/trunk/admin/partials/advanced-content-templates-admin-sidecar.php
r2425232 r2806059 22 22 <h4 style="margin-bottom: 4px;">Advanced Content Templates</h4> 23 23 <p>Want more powerful features like custom fields, featured images, and taxonomies? Go premium!</p> 24 <a class="button-secondary" target="_blank" href="https://www.advancedcontenttemplates.com ?utm_medium=Sidecar&utm_content=<?php echo urlencode( 'Get Advanced Content Templates' ); ?>">Get Advanced Content Templates</a>24 <a class="button-secondary" target="_blank" href="https://www.advancedcontenttemplates.com/?utm_campaign=free&utm_source=wprepo">Get Advanced Content Templates</a> 25 25 26 26 <script> -
simple-post-template/trunk/admin/partials/advanced-content-templates-admin-upgrade.php
r1643070 r2806059 24 24 <p>Advanced Content Templates has tons of bonus features, and it's growing all the time. Join over 300 other pro users and receive:</p> 25 25 <ol> 26 <li>Premium Support</li> 26 27 <li>Featured Images</li> 27 28 <li>Categories, Tags, and Custom Taxonomies</li> … … 31 32 </ol> 32 33 33 <a class="button-primary" target="_blank" href="https://www.advancedcontenttemplates.com ?utm_medium=UpgradeTab&utm_content=<?php echo urlencode("Get Advanced Content Templates Now!"); ?>">Get Advanced Content Templates Now!</a>34 <a class="button-primary" target="_blank" href="https://www.advancedcontenttemplates.com/?utm_campaign=free&utm_source=wprepo">Get Advanced Content Templates Now!</a> 34 35 </div> -
simple-post-template/trunk/readme.txt
r2448078 r2806059 1 1 === Plugin Name === 2 2 Contributors: clifgriffin, nodleredoy 3 Donate link: https://advancedcontenttemplates.com4 3 Tags: post template, content template, post from template, templates, copy, clone, duplicate 5 4 Requires at least: 3.6 6 5 Tested up to: 5.6 7 Stable tag: 2.2. 16 Stable tag: 2.2.2 8 7 9 8 Create content templates for your posts and pages. When creating a new post or page use one of your content templates as the starting point! … … 24 23 **Custom Post Types, Custom Fields, Tags, Categories, Featured Images:** if you need any of these, you should check out the pro version of this plugin, Advanced Content Templates: <a href="https://advancedcontenttemplates.com">Advanced Content Templates</a> 25 24 26 **Support**27 28 If you need support, visit the support tab within the plugin settings.29 30 **Hire Us**31 32 If you need WordPress developers, we're available for hire: [Contact Objectiv](https://objectiv.co/contact/ "Contact Objectiv")33 34 25 = Version History = 26 27 **Version 2.2.2** 28 29 * Update tested to version. 30 * Various small code tweaks. 35 31 36 32 **Version 2.2.1** … … 48 44 49 45 * Update tested to version. 50 * Tweak support to send response to proper place.51 46 * Update vendor assets. 52 47 … … 58 53 59 54 * Prevent conflict resulting in fatal error. 60 * Enable easier support.61 55 62 56 **Version 2.1.6** -
simple-post-template/trunk/simple-content-template.php
r2448078 r2806059 17 17 * Plugin URI: https://www.advancedcontenttemplates.com/ 18 18 * Description: A simple to use content template system. Create similarly structured posts & pages with ease. 19 * Version: 2.2. 119 * Version: 2.2.2 20 20 * Author: Clifton Griffin 21 21 * Author URI: https://objectiv.co … … 24 24 * Text Domain: advanced-content-templates 25 25 * Domain Path: /languages 26 * Tested up to: 5.626 * Tested up to: 6.0.3 27 27 */ 28 28 … … 32 32 } 33 33 34 define( 'CGD_SCT_VERSION', '2.2. 1' );34 define( 'CGD_SCT_VERSION', '2.2.2' ); 35 35 define( 'CGD_SCT_NAME', 'Simple Content Templates' ); 36 36
Note: See TracChangeset
for help on using the changeset viewer.