Skip to content

Commit

Permalink
Added readme
Browse files Browse the repository at this point in the history
  • Loading branch information
zackkatz committed May 14, 2014
1 parent 4acea3e commit 95e15ea
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 1 deletion.
2 changes: 1 addition & 1 deletion includes/class-admin-add-shortcode.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ function add_shortcode_popup() {
<td><label for="gravityview_view_id"><?php esc_html_e( 'Select a View', 'gravity-view' ); ?></label></td>
<td>
<select name="gravityview_view_id" id="gravityview_view_id">
<option value=""><?php esc_html_e( '-- views --', 'gravity-view' ); ?></option>
<option value=""><?php esc_html_e( '&mdash; views &mdash;', 'gravity-view' ); ?></option>
<?php $views = get_posts( array('post_type' => 'gravityview', 'posts_per_page' => -1 ) );
foreach( $views as $view ) {
echo '<option value="'. $view->ID .'">'. esc_html( $view->post_title ) .'</option>';
Expand Down
50 changes: 50 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
=== GravityView ===
Tags: gravity forms, directory, gravity forms directory
Requires at least: 3.3
Tested up to: 3.9.1
Stable tag: trunk
Contributors: katzwebservices, luistinygod
License: GPL 3 or higher

Beautifully display your Gravity Forms entries.

== Description ==

== Screenshots ==


== Installation ==

1. Upload plugin files to your plugins folder, or install using WordPress' built-in Add New Plugin installer
2. Activate the plugin
3. Follow the instructions

== Frequently Asked Questions ==

== Changelog ==

= 1.0.1 =
* Added: "Getting Started" link to the Views menu
* Fixed: Fatal error for users with Gravity Forms versions 1.7 or older
* Fixed: Entries in trash no longer show in View
* Tweak: When modifying the "Only visible to logged in users with role" setting, if choosing a role other than "Any", check the checkbox.
* Tweak: `gravityview_field_visibility_caps` filter to add/remove capabilities from the field dropdowns
* Added: Translation files. If you'd like to contribute translations, [please sign up here](https://www.transifex.com/projects/p/gravityview/).

= 1.0 =

* Liftoff!

== Upgrade Notice ==

= 1.0.1 =
* Added: "Getting Started" link to the Views menu
* Fixed: Fatal error for users with Gravity Forms versions 1.7 or older
* Fixed: Entries in trash no longer show in View
* Tweak: When modifying the "Only visible to logged in users with role" setting, if choosing a role other than "Any", check the checkbox.
* Tweak: `gravityview_field_visibility_caps` filter to add/remove capabilities from the field dropdowns
* Added: Translation files. If you'd like to contribute translations, [please sign up here](https://www.transifex.com/projects/p/gravityview/).

= 1.0 =

* Liftoff!

0 comments on commit 95e15ea

Please sign in to comment.