Plugin Directory

Changeset 1912835


Ignore:
Timestamp:
07/21/2018 05:57:04 PM (8 years ago)
Author:
archtkt
Message:

Modification of Readme.txt, Plugin Name, and Requires at least version.

Location:
storefront-visual-guide
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • storefront-visual-guide/trunk/readme.txt

    r1912714 r1912835  
    1 === Storefront Visual Guide ===
     1=== Storefront Visual Hook Guide ===
     2
    23Contributors: archtkt
    3 Tags: storefront, hook, hooks, woocommerce, theme, development, filters, markup, guide
    4 Requires at least: 4.0
     4Tags: storefront, woocommerce, theme, filters, markup
     5Requires at least: 4.6
    56Tested up to: 4.9.7
    67Stable tag: 4.9.7
     
    1718Once installed this plugin adds a drop down menu to the admin bar to select between three options.
    1819
    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.
     201. Storefront Action Hooks: Select this option to see the Storefront theme's hooks in their actual locations.
     212. Woocommerce Action Hooks: Select this option to see the Woocommerce plugin's hooks in their actual locations on your current theme.
    21223. Clear: cleans up the visual hooks if shown.
    2223
     
    31325. Display functions hooked in Woocommerce action hooks.
    3233
    33 ** Feel free to ask for new features. **
     34**Feel free to ask for new features.**
    3435
    3536== Installation ==
     
    3839
    39401. Login to your WordPress Dashboard.
    40 2. Navigate to Plugins, and select add new to 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.
     412. Navigate to Plugins, and select "Add new" to go to the "Add Plugins" page.
     423. In the right side, enter "Storefront Visual Hook Guide" in the search input bar, and hit your enter key.
    42434. Click install, and wait for the plugin to download. Once done, activate the plugin.
    4344
    4445**Install via FTP:**
    4546
    46 1. Extract the zip file, login using your ftp client, and upload the entire `storefront-hooks` folder to the `/wp-content/plugins/` directory.
     471. Extract the zip file, login using your ftp client, and upload the entire `storefront-visual-guide` folder to the `/wp-content/plugins/` directory.
    47482. Activate the plugin through the 'Plugins' menu in WordPress
    4849
     
    5051
    5152= 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.
     53Unfortunately, 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.
    5354
    5455= I've activated the plugin, where can I access the settings? =
     
    5758== Screenshots ==
    5859
    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.
     601. Active Storefront theme's Action Hooks in Front Page.
     612. Active Woocommerce plugin's Action Hooks in Single Product Page.
     623. Storefront Visual Hook Guide Menu Closeup.
    6263
    6364== Changelog ==
     65
     66= 1.0.1 =
     67* Fixed "Requires at least" version.
    6468
    6569= 1.0.0 =
  • storefront-visual-guide/trunk/storefront-visual-guide.php

    r1912714 r1912835  
    11<?php
    22/*
    3 Plugin Name: Storefront Visual Guide
     3Plugin Name: Storefront Visual Hook Guide
    44Description: Find Storefront and Woocommerce hooks (action hooks) quick and easily by seeing their actual locations inside your theme.
    5 Version: 1.0.0
     5Version: 1.0.1
    66Author: Antonio Sánchez (ARCHTKT)
    77Author URI: https://archtkt.com
     
    7575    function sfvg_active_notice() { ?>
    7676        <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>
    7878        </div>
    7979    <?php }
     
    9595            array(
    9696                'id' => 'sfvg_hooks',
    97                 'title' => __( 'Storefront Visual Guide', 'storefront-visual-guide' ),
     97                'title' => __( 'Storefront Visual Hook Guide', 'storefront-visual-guide' ),
    9898                'href' => '',
    9999                'position' => 0,
Note: See TracChangeset for help on using the changeset viewer.