Changeset 1912835
- Timestamp:
- 07/21/2018 05:57:04 PM (8 years ago)
- Location:
- storefront-visual-guide
- Files:
-
- 1 deleted
- 2 edited
-
tags/1.0 (deleted)
-
trunk/readme.txt (modified) (6 diffs)
-
trunk/storefront-visual-guide.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
storefront-visual-guide/trunk/readme.txt
r1912714 r1912835 1 === Storefront Visual Guide === 1 === Storefront Visual Hook Guide === 2 2 3 Contributors: archtkt 3 Tags: storefront, hook, hooks, woocommerce, theme, development, filters, markup, guide4 Requires at least: 4. 04 Tags: storefront, woocommerce, theme, filters, markup 5 Requires at least: 4.6 5 6 Tested up to: 4.9.7 6 7 Stable tag: 4.9.7 … … 17 18 Once installed this plugin adds a drop down menu to the admin bar to select between three options. 18 19 19 1. Storefront Action Hooks: Select this option to see the Storefront hooks in their actual locations.20 2. Woocommerce Action Hooks: Select this option to see the Woocommerce hooks in their actual locations on your current theme.20 1. Storefront Action Hooks: Select this option to see the Storefront theme's hooks in their actual locations. 21 2. Woocommerce Action Hooks: Select this option to see the Woocommerce plugin's hooks in their actual locations on your current theme. 21 22 3. Clear: cleans up the visual hooks if shown. 22 23 … … 31 32 5. Display functions hooked in Woocommerce action hooks. 32 33 33 ** Feel free to ask for new features.**34 **Feel free to ask for new features.** 34 35 35 36 == Installation == … … 38 39 39 40 1. Login to your WordPress Dashboard. 40 2. Navigate to Plugins, and select add newto go to the "Add Plugins" page.41 3. In the right side, enter "Storefront Visual Guide" in the search input bar, and hit your enter key.41 2. Navigate to Plugins, and select "Add new" to go to the "Add Plugins" page. 42 3. In the right side, enter "Storefront Visual Hook Guide" in the search input bar, and hit your enter key. 42 43 4. Click install, and wait for the plugin to download. Once done, activate the plugin. 43 44 44 45 **Install via FTP:** 45 46 46 1. Extract the zip file, login using your ftp client, and upload the entire `storefront- hooks` folder to the `/wp-content/plugins/` directory.47 1. Extract the zip file, login using your ftp client, and upload the entire `storefront-visual-guide` folder to the `/wp-content/plugins/` directory. 47 48 2. Activate the plugin through the 'Plugins' menu in WordPress 48 49 … … 50 51 51 52 = Will this plugin work for themes other than Storefront? = 52 Unfortunately no. This plugin was designed to work for the Storefront theme, utilizing Storefront's action hooks and filters. Activating the plugin while using a different theme will trigger a warning.53 Unfortunately, no. This plugin was designed to work only with the Storefront theme, using Storefront theme's action hooks and filters. Activating the plugin while using a different theme will trigger a warning. 53 54 54 55 = I've activated the plugin, where can I access the settings? = … … 57 58 == Screenshots == 58 59 59 1. Active Storefront Action Hooks in Front Page.60 2. Active Woocommerce Action Hooks in Single Product Page.61 3. Storefront Visual Guide Menu Closeup.60 1. Active Storefront theme's Action Hooks in Front Page. 61 2. Active Woocommerce plugin's Action Hooks in Single Product Page. 62 3. Storefront Visual Hook Guide Menu Closeup. 62 63 63 64 == Changelog == 65 66 = 1.0.1 = 67 * Fixed "Requires at least" version. 64 68 65 69 = 1.0.0 = -
storefront-visual-guide/trunk/storefront-visual-guide.php
r1912714 r1912835 1 1 <?php 2 2 /* 3 Plugin Name: Storefront Visual Guide3 Plugin Name: Storefront Visual Hook Guide 4 4 Description: Find Storefront and Woocommerce hooks (action hooks) quick and easily by seeing their actual locations inside your theme. 5 Version: 1.0. 05 Version: 1.0.1 6 6 Author: Antonio Sánchez (ARCHTKT) 7 7 Author URI: https://archtkt.com … … 75 75 function sfvg_active_notice() { ?> 76 76 <div class="notice notice-warning is-dismissible" > 77 <p><?php _e( '<u>Storefront Visual Guide</u> plugin is currently active. If this is a production site, remember to deactivate after use.', 'storefront-visual-guide' ); ?></p>77 <p><?php _e( '<u>Storefront Visual Hook Guide</u> plugin is currently active. If this is a production site, remember to deactivate after use.', 'storefront-visual-guide' ); ?></p> 78 78 </div> 79 79 <?php } … … 95 95 array( 96 96 'id' => 'sfvg_hooks', 97 'title' => __( 'Storefront Visual Guide', 'storefront-visual-guide' ),97 'title' => __( 'Storefront Visual Hook Guide', 'storefront-visual-guide' ), 98 98 'href' => '', 99 99 'position' => 0,
Note: See TracChangeset
for help on using the changeset viewer.