Tags: gravity forms, gravity form, forms, gravity, form, crm, directory, business, business directory, list, listings, sort, submissions, table, tables, member, contact, contacts, directorypress, business directory, directory plugin, wordpress directory, classifieds, captcha, cforms, contact, contact form, contact form 7, contact forms, CRM, email, enhanced wp contact form, feedback, form, forms, gravity, gravity form, gravity forms, secure form, simplemodal contact form, wp contact form, widget
Requires at least: 3.3
Tested up to: 3.7.1
Stable tag: trunk
Contributors: katzwebdesign, katzwebservices
License: GPLv2 or later
Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=zackkatz%40gmail%2ecom&item_name=Gravity%20Forms%20Addons&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8
Add directory capabilities and other functionality to the great Gravity Forms plugin.
Gravity Forms is already the easiest form plugin...now, the Gravity Forms Directory & Addons plugin turns Gravity Forms into a great directory.
[youtube http://www.youtube.com/watch?v=PMI7Jb-RP2I]
- Completely shortcode based, using the
[directory]
shortcode - Includes built-in searching
- Allow logged-in users to edit their directory listings
- Choose to show entries to only the users who created them
- Sort by column
- Easily re-organize the columns inside Gravity Forms
- Has an option to show only approved listings with an easy approval process
- Show or hide any column
- Display directory & entries as a table (default), list (
<ul>
), or definition list (<dl>
) - Directory features pagination
- Define custom styles inside the shortcode
- Includes lightbox support for uploaded images
- Option to view single entries in their own page or in a lightbox
####Insert a totally configurable table using the editor There are tons of configurable options for how you want the directory to display.
###Improve Gravity Forms Functionality and Usability
- Expand the Add Fields boxes to view all the boxes at once.
- Edit form entries directly from the Entries page (saving two clicks)
- Easily access form data to use in your website with PHP functions - Learn more on the plugin's website
- Gravity Forms Salesforce Add-on - Integrate Gravity Forms with Salesforce.com
- Gravity Forms Highrise Add-on - Integrate Gravity Forms with Highrise, a CRM
- Gravity Forms + Constant Contact - If you use Constant Contact and Gravity Forms, this plugin is for you.
- Gravity Forms Mad Mimi Add-on - Integrate Mad Mimi, a great email marketing company, and Gravity Forms.
- Gravity Forms ExactTarget Add-on - Integrate with ExactTarget, an enterprise-class email marketing service
###1. Approving directory entries is very easy###
###2. When using the Form Editor, your form fields will have a Directory tab for easily modifying your display options.###
###3. This plugin adds an Edit link to Gravity Form entries###
###5. How the Gravity Forms widget appears on the widgets page###
###6. The Gravity Forms Addons settings page, found in the Forms > Directory & Addons menu link###
###7. How the Gravity Forms 'Add Fields' boxes look after plugin is activated###
###8. Go to the post or page where you would like to add the directory.###
###9. Click the "Add Directory" button above the content area.###
###10. Choose a form from the drop-down menu and configure settings as you would like them.###
###11. Click "Insert Directory". A "shortcode" should appear in the content editor that looks similar to [directory form="#"]
###
###12. Save the post or page###
When editing a form, click on a field to expand the field. Next, click the "Directory" tab. There, you will find options to:
- Choose whether you would like the field to be a link to the Single Entry View;
- Hide the field in Directory View; and
- Hide the field in Single Entry View
###13. Edit the Gravity Forms form you'd like to configure a Directory for###
###14. Click "Directory Columns" In the Form Editor toolbar (near the top-center of the page)###
###15. Drag & drop the fields in the order you'd like them to appear in the directory###
* Drag from the right ("Hidden Columns") side to the left ("Visible Columns") side.
###16. Click the "Save" button###
Add the following to your theme's functions.php
file:
` add_filter('kws_gf_directory_lightbox_settings_rel', 'turn_off_directory_lightbox_grouping');
function turn_off_directory_lightbox_grouping() { return 'nofollow'; } `
Turn on the limituser
setting, then add the following to your theme's functions.php
file:
add_filter('kws_gf_treat_not_logged_in_as_user', '__return_false');
The sort
attribute allows you to sort by an ID. To find the field ID, On the Gravity Forms ìEdit Formsî page, hover over the form and click the link called "IDs" that appears.
If you want to sort by last name, you find the last name id (1.6
for example). Then, you add sort="1.6"
to your [directory]
shortcode.
Your shortcode could then look something like [directory form="1" sort="1.6"]
You can! Add the following to your theme's functions.php
file:
` add_filter('kws_gf_directory_endpoint', 'different_directory_endpoint');
function different_directory_endpoint($endpoint) {
** return 'example'; // Use your preferred text here. Note:** punctuation may screw things up.
}
`
You will see a drop-down input titled "Change Entry Creator" in the Edit Entry "Info" box when you are editing an entry on your site. Change the user in the dropdown, then click the Update button to commit the changes.
- Only users with entry entry editing capability will be able to see the drop-down and edit the entry (the gravityforms_edit_entries capability)
- Select a new user from the drop-down, update the entry, and the entry creator will be updated.
- A note will be added to the entry with the following information:
- Who changed the entry creator
- When the change took place
- Who the previous entry creator was
To add a filter by date, you add either a start_date
or end_date
parameter--or both--in YYYY-MM-DD
format. Here's an example:
[directory form="14" start_date="1984-10-22" end_date="2011-09-07"]
On the Gravity Forms "Edit Forms" page, hover over the form and click the link called "IDs" that appears.
This plugin is released under a GPL license.
This is a known issue. If the submission page has both a form in the content and the same form on the sidebar widget, the entry will be submitted twice. We're working on a fix.
Add the following to your theme's functions.php
file:
remove_filter('gform_pre_submission_filter','gf_yst_store_referrer');
If you want to modify the output of the plugin, you can do so by adding code to your active theme's functions.php
file. For more information, check out the add_filter() WordPress Codex page
kws_gf_directory_output
,kws_gf_directory_output_'.$form_id
- Modify output for all directories or just a single directory, by IDkws_gf_directory_detail
,kws_gf_directory_detail_'.$lead_id
- Modify output for single entrieskws_gf_directory_value
,kws_gf_directory_value_'.$input_type
,kws_gf_directory_value_'.$field_id
- Modify output for fields in general, or based on type (text
,date
,textarea
, etc...), or based on field id.kws_gf_directory_th
,kws_gf_directory_th_'.$field_id
,kws_gf_directory_th_'.sanitize_title($label)
- Modify the<th>
names en masse, by field ID, or by field name (lowercase like a slug)kws_gf_directory_lead_image
,kws_gf_directory_lead_image_icon
,kws_gf_directory_lead_image_image
,kws_gf_directory_lead_image_'.$lead_id
- And many more - search for
apply_filters
anddo_action
in thegravity-forms-addons.php
file
// This replaces "John" in a first name field with "Jack" add_filter('kws_gf_directory_value_text', 'john_to_jack'); function john_to_jack($content) { return str_replace('John', 'Jack', $content); } // This replaces the "Email" table column header with "asdsad" add_filter('kws_gf_directory_th', 'email_to_asdsad'); function email_to_asdsad($content) { return str_replace('Email', 'asdsad', $content); } // This replaces "Displaying 1-20" with "asdsad 1 - 20" add_filter('kws_gf_directory_output', 'displaying_to_asdasd'); function displaying_to_asdasd($content) { return str_replace('Displaying', 'asdsad', $content); } // This replaces images with the Google icon. // You can modify all sorts of things using the $img array in this filter. add_filter('kws_gf_directory_lead_image', 'kws_gf_directory_lead_image_edit'); function kws_gf_directory_lead_image_edit($img = array()) { // $img = array('src' => $src, 'size' => $size, 'title' => $title, 'caption' => $caption, 'description' => $description, 'url' => $url, 'code' => ""); $img['code'] = ''; return $img; }
The code is meant to expand all the field boxes so you don't need to click them open and closed all the time. This works normally in Safari and Chrome (read: good browsers :-P). For some other browsers, it breaks the whole page.
To fix this issue, add this to your theme's functions.php
file:
add_filter('kws_gf_display_all_fields', create_function('$content', 'return "";') );
*** Fixed:** Entry approval error ticket
*** Fixed:** Images in the directory now open using lightbox again
*** Fixed:** Show Form IDs functionality
*** Fixed:** Broken link to SimpleModal script on Forms page (ticket)
*** Fixed:** Compatibility with Gravity Forms 1.8's new icon set
*** Updated:** Now uses latest Colorbox script
*** Fixed:** PHP 5.4 warnings
*** Fixed:** Editing Lists field type
*** Fixed:** Directory Columns window now displays properly
*** Fixed:** File Upload display in single entry
*** Fixed:** Notice: Trying to get property of non-object[...]on line 4051
error
*** Known issue:** Compatibility with editing entries in forms with Quiz and Poll types
- Fixed compatibility with WordPress 3.6+
- Directory tab restored to form editor
- Converted jQuery
live()
toon()
- Updated Colorbox library
*** Fixed:** Issue where entries would be hidden if both "Show only entries that have been Approved" and "Smart Approval" aren't checked
*** Fixed:** Insert Directory button image path fixed
*** Fixed:** PHP warning
*** Modified:** Single Entry view now uses <th>
instead of <td>
for headings
*** Removed:** The removed checkbox for Yoast Widget in settings
*** Added:** Finally: A Directory Columns interface! Read the FAQ "How do I select what columns I want to display?" to set up.
** - Includes field summary option:** instead of each individual checkbox or field value, you can choose to diplay the whole shebang. You can now have a column for "Address" and "Name" instead of "First Name" and "Last Name"!
*** Added:** When leads are approved or disapproved, a note is added to the lead with who took the action and when.
*** Added:** new setting entrydetailtitle
, which allows you to easily overwrite the Entry View table heading
*** Added:** Support for "List" input types
*** Added:** Ability to change who created an Entry.
- Added
kws_gf_directory_lead_being_edited
andkws_gf_directory_form_being_edited
filters to allow users to modify what fields should be shown for editing. *** Added:**kws_gf_date_format
filter for Directory date format
*** Added:**kws_gf_directory_tick
filter for changing the check mark in the directory
*** Modified:** Improved "Add Directory" button to match WordPress 3.5.
*** Modified:** Removed a few options to simplify the plugin (icon
,showrowids
)
*** Modified:** "Un-approve" is now proper English: Disapprove
*** Modified:** "Entry Links" Lightbox view now has back links
*** Modified:** Updated Colorbox to latest version
*** Fixed:** Approve checkbox works again.
*** Fixed:** Added support for the User Registration Add-on's password field.
*** Fixed:** Entry Date field displays properly
*** Fixed:** Expand All Menus works properly again
*** Fixed:** Issue in Entries view where approval "tick" images would be too agressive and take over a couple of columns
*** Fixed:** Many admin issues where things were broken.
*** Removed:** Redundant widget file
*** Removed:** No longer uses Gravity Forms CSS file on directory view
*** Fixed:** Fixed issue where datepicker functionality may not exist.
*** Improved:** Plugin now uses WordPress jQueryUI datepicker script, instead of Gravity Forms'.
*** Next up:** improved management of directory column order and visibility!
*** Fixed:** Pagination doesn't work when embedding forms in a page and using permalinks
*** Fixed:** Back links would always link to the homepage when permalinks are turned off
*** Fixed:** Issue with removing certain fields in the edit screen
*** Fixed:** Searches on pages without permalinks enabled now won't go to the home page
*** Fixed:** Messed up datepicker fields when working with other plugins using date pickers (support topic)
*** Fixed:** Messed up menu links when navigating from a single entry view
*** Fixed & Improved:** Added support for order details in entry view
*** Fixed:** Incorrect instructions in the Add Directory form. "Allow administrators to edit entries they created." should have been "Allow administrators to edit all entries."
*** Fixed:** Issue with full text not showing up in the Directory, even when fulltext
was enabled
*** Fixed:** compact
now properly implemented. This is to better inform content filters.
*** Fixed:** Editing an entry in a lightbox now works properly
*** Improved:** Added ids to the directory <th>
, as requested
*** Improved:** Cleaned up some code
*** Improved:** Lead detail editing
- For sites that have "pretty permalinks" turned off
- Fixed issue with "Back to Directory" links not working
- Fixed search
- Fixed bug where "Hide This Field in Directory View" wasn't working properly
- Added a check so that both Thickbox and Colorbox don't open entry if both scripts are loaded
- Fixed Colorbox not loading properly in certain cases (Issue #656033)
- Fixed issue where entries appeared not to be approving properly in the admin.
- Added
limituser
option - a new option to show only entries users have created. You can also hide entries from not-logged-in users (see FAQ). - Updated lightbox to use Colorbox, vastly superior lightbox to Thickbox.
- Now uses
lightboxsettings
shortcode attribute (but is backward compatible withentrylightbox
andlightbox
settings) - Added
kws_gf_directory_colorbox_settings
filter to allow you to modify the settings - Groups images, websites, and entries separately by default. Use
kws_gf_directory_lightbox_settings_rel
filter to modify (see FAQ) - Choose from multiple styles
- Now uses
- Added
list
input type support - Fixed bugs/issues
- Fixed 404 errors in Single Entry View after de-activating then re-activating plugin. Now properly generates rewrite rules.
- Fixed header code 404 when viewing entries in lightbox mode
- Front-end editing of certain types of input types failed because
GFFormDisplay
class wasn't defined. - Fixed issue where scripts were not always printing in the
<head>
- Fixed fatal error when outputting
date_created
field (issue #649652)
- Fixes issue where entries not showing on sort
- Added much-requested option for front-end User editing of entries. Must be enabled (off by default).
- Added option for front-end Administrator editing of entries (except for approval status). Must be enabled (off by default).
- Fixed issue where multiple-word searches were being converted into one word.
- Removed
?row=#
for the back-link to the directory. There was no need for it to get the lead ID. - Added actions and filters for the new editing capabilities. Check out the code if you a) know what this means, and b) want to see. Search for
apply_filters
anddo_action
.
Sorry for the many updates in one day, but I can only fix many bugs as they get reported.
- Fixed "close thickbox" button image path for IIS (Windows) servers by using
site_url()
instead ofget_bloginfo()
- Fixed potential incorrect form ID in the link generation to single entries
- Improved
start_date
andend_date
shortcode generation *** FixedWarning:** require_once(directory.php): failed to open stream: No such file or directory
warning when using lightbox to view single entries. - Fixed non-javascript links to sort by column
- Fixed "This form does not have any entries yet." issue - the filtering code was not compatible with Gravity Forms 1.5, only 1.6 beta. This has been resolved.
This release should fix some major issues users were having with 3.0. Sorry for the problems.
- Fixed issue where Directory Fields buttons weren't being rendered (the JavaScript hadn't been loaded)
- Fixed issue with support for Members plugin
- Added improved support for filter by date
- Added
start_date
andend_date
settings to Insert Directory form with datepicker - Now allows for sorting using the query string (for example, adding
?start_date=YYYY-MM-DD
to the directory URL)
- Added
- Removed bulk update Approve and Disapprove options when form not approval-enabled
- Fixed display of Directory & Addons menu - now showing on all admin pages.
- Completely revamped the admin approval process! Now approving an entry is as easy as checking a box in the Entries view.
- Supports bulk approve and disapprove
- Added "Directory Fields" in the Form Editor
** - "Approved" field:** Add this to your form to have a pre-configured admin-only checkbox.
** - "Entry Link" field:** Use this text as a link to the single entry view - Added "Directory" tab to fields in the Form Editor
- Use Field As Link to Single Entry
- Text for Link to Single Entry
- Use field values from entry
- Use the Field Label as link text
- Use custom link text.
- Hide Field in Directory View
- Hide Field in Single Entry View
- Added a how-to video and improved instructions on settings page
- Improved how settings work & some new settings
- Added "Smart Approval" - Automatically convert directory into Approved-only mode when an Approved field is detected
- Added configuration for default directory settings on the Directory & Addons settings page
- Added
jstable
setting to enable javascript sorting using the Tablesorter script. Includeskws_gf_directory_tablesorter_options
filter to modify Tablesorter settings. ** * Updatedpage_size
setting:** setting a page size of 0 now shows all entries. - Added credit link setting for directories
- Fixed bugs & issues
- Fixed search and entry counts for Approved-only directories
- Improved internationalization support
- Structural & display improvements
- Added proper enqueuing of scripts and styles with
enqueue_files
function. - Hides search and page count when there are no results
- Restructured plugin to use the
GFDirectory
class. - Added a host of new actions and filters to allow for inserting custom content throughout the directory
- Added support for custom endpoints (instead of
entries
...see FAQ for more information)
- Added proper enqueuing of scripts and styles with
- And much, much more!
Note: This update has only been tested with WordPress 3.2 and Gravity Forms 1.5.2.8 and Gravity Forms 1.6 beta.
- Fixed broken image for lightbox close button (issue #570042)
*** Fixed definition list (DL) display mode:** each entry in directory view is now wrapped with a
dl
; single-entry view entries are now wrapped with singledl
*** HTML generation fix:**<liclass
now<li class
(thanks @lolawson) - Improved JavaScript table sorting function (thanks to feedback from heavymark)
- Added option to use links to sort tables instead of JavaScript (
jssearch
, under Formatting Options)
- Added alternating
class
of even and odd for rows
- Improved directory shortcode insertion by checking values against defaults; now inserts into code only non-default items (the default shortcode is now 20 characters instead of 815!)
*** Added formatting options for directory & entries:** display as table (default), list (
<ul>
), or definition list (<dl>
) - Added
kws_gf_directory_defaults
filter to update plugin defaults. - Added address formatting using
appendaddress
setting. This will add a column to the output with a combined, formatted address. Use newhideaddresspieces
setting to turn off the individual address pieces. Instead of having Street, City, State, ZIP, now there's one column "Address" - Added
truncatelink
option (explained below) - Added URL formatting filters to modify how links are truncated so you can choose to display the anchor text exactly as you want (the URL itself won't change). The link text
http://example.example.choicehotels.com/hotel/tx173
becomeschoicehotels.com
, but will still link to the full URL. ** - Don't show http(s):**kws_gf_directory_anchor_text_striphttp
** - Strip www:**kws_gf_directory_anchor_text_stripwww
** - Show root only, not the linked to page (example.com/inner-page/
becomesexample.com
):**kws_gf_directory_anchor_text_rootonly
** - Strip all subdomains, including www:**kws_gf_directory_anchor_text_nosubdomain
** - Hide "query strings" (example.com?search=example&action=search
becomesexample.com
):**kws_gf_directory_anchor_text_noquerystring
- Submit a form using the keyboard, not just clicking the button
*** Added filter to change directory pagination settings (results page links):**
kws_gf_results_pagination
- Fixed issue with malformed pagination link URLs
- Improved "Expand All Menus" checkbox layout *** Discovered an issue:** pagination on approved-only entries doesn't work well. To compensate, you could set your page size to a large number that contains all the entries. This likely will not be fixed soon.
- Added administration menu for Gravity Forms Addons, allowing you to turn off un-used or un-desired functionality. Access settings either using Forms > Addons link or Forms > Settings > Addons.
- Choose to turn off referrer information, directory functionality, the Addons widget, and Gravity Forms backend modifications
- Should fix issue with Approved checkbox not working in some cases where Admin-Only is enabled. Please report if still having issues.
- Fixed display of textarea entry data for short content (thanks, Tina)
- Included entry-details.php file, required for lightbox viewing
- Fixed issue with single-entry lightbox view - no longer shows admin-only columns if admin-only setting is turned off.
- Fixed Multi-blog single entry view, canonical link and chortling generation
- Added single-entry viewing capability
- View single entry details on either a separate page or in a lightbox
- Entries in separate page have their own permalink (http://example.com/directory/entry/[form#]/[entry#]/)
- Add entry detail links by having Entry ID column added to directory
- Fixed footer column filters
*** Fixed:** Entry approval error ticket
*** Fixed:** Images in the directory now open using lightbox again
*** Fixed:** Show Form IDs functionality
*** Fixed:** Broken link to SimpleModal script on Forms page (ticket)
*** Fixed:** Compatibility with Gravity Forms 1.8's new icon set
*** Updated:** Now uses latest Colorbox script
*** Fixed:** PHP 5.4 warnings
*** Fixed:** Editing Lists field type
*** Fixed:** Directory Columns window now displays properly
*** Fixed:** File Upload display in single entry
*** Fixed:** Notice: Trying to get property of non-object[...]on line 4051
error
*** Known issue:** Compatibility with editing entries in forms with Quiz and Poll types
- Fixed compatibility with WordPress 3.6+
- Directory tab restored to form editor
- Converted jQuery
live()
toon()
- Updated Colorbox library
*** Fixed:** Issue where entries would be hidden if both "Show only entries that have been Approved" and "Smart Approval" aren't checked
*** Fixed:** Insert Directory button image path fixed
*** Fixed:** PHP warning
*** Modified:** Single Entry view now uses <th>
instead of <td>
for headings
- A major update with big fixes and additions. Read the changelog for more information.
*** Fixed:** Fixed issue where datepicker functionality may not exist.
*** Improved:** Plugin now uses WordPress jQueryUI datepicker script, instead of Gravity Forms'.
*** Next up:** improved management of directory column order and visibility!
*** Fixed:** Pagination doesn't work when embedding forms in a page and using permalinks
*** Fixed:** Back links would always link to the homepage when permalinks are turned off
*** Fixed:** Issue with removing certain fields in the edit screen
*** Fixed:** Searches on pages without permalinks enabled now won't go to the home page
*** Fixed:** Messed up datepicker fields when working with other plugins using date pickers (support topic)
*** Fixed:** Messed up menu links when navigating from a single entry view
*** Fixed & Improved:** Added support for order details in entry view
*** Fixed:** Incorrect instructions in the Add Directory form. "Allow administrators to edit entries they created." should have been "Allow administrators to edit all entries."
*** Fixed:** Issue with full text not showing up in the Directory, even when fulltext
was enabled
*** Fixed:** compact
now properly implemented. This is to better inform content filters.
*** Fixed:** Editing an entry in a lightbox now works properly
*** Improved:** Added ids to the directory <th>
, as requested
*** Improved:** Cleaned up some code
*** Improved:** Lead detail editing
- For sites that have "pretty permalinks" turned off
- Fixed issue with "Back to Directory" links not working
- Fixed search
- Fixed bug where "Hide This Field in Directory View" wasn't working properly
- Fixed Colorbox not loading properly in certain cases (Issue #656033)
- Fixed issue where entries appeared not to be approving properly in the admin.
- Added
limituser
option - a new option to show only entries users have created. You can also hide entries from not-logged-in users (see FAQ). - Updated lightbox to use Colorbox, vastly superior lightbox to Thickbox.
- Now uses
lightboxsettings
shortcode attribute (but is backward compatible withentrylightbox
andlightbox
settings) - Added
kws_gf_directory_colorbox_settings
filter to allow you to modify the settings - Groups images, websites, and entries separately by default. Use
kws_gf_directory_lightbox_settings_rel
filter to modify (see FAQ) - Choose from multiple styles
- Now uses
- Fixed issue where lightbox scripts weren't outputting
- Fixed issue where front-end editing of certain types of input types failed because
GFFormDisplay
class wasn't defined. - Fixed 404 errors in Single Entry View after de-activating then re-activating plugin. Now properly generates rewrite rules.
- Fixed header code 404 when viewing entries in lightbox mode
*** Fixes issue where entries not showing on sort - Note:** this only affected users using versions of Gravity Forms older than 1.6.
- Added much-requested option for front-end User editing of entries. Must be enabled (off by default).
- Added option for front-end Administrator editing of entries (except for approval status). Must be enabled (off by default).
- Fixed issue where multiple-word searches were being converted into one word.
- Shortened changelog to only show versions after 2.4
- Fixed "close thickbox" button image path for IIS (Windows) servers by using
site_url()
instead ofget_bloginfo()
- Fixed potential incorrect form ID in the link generation to single entries
- Improved
start_date
andend_date
shortcode generation *** FixedWarning:** require_once(directory.php): failed to open stream: No such file or directory
warning when using lightbox to view single entries. - Fixed non-javascript links to sort by column
- Fixed "This form does not have any entries yet." issue - the filtering code was not compatible with Gravity Forms 1.5, only 1.6 beta. This has been resolved.
- Fixed issue where Directory Fields buttons weren't being rendered (the JavaScript hadn't been loaded)
- Fixed issue with support for Members plugin
- Added improved support for filter by date
- Added
start_date
andend_date
settings to Insert Directory form with datepicker - Now allows for sorting using the query string (for example, adding
?start_date=YYYY-MM-DD
to the directory URL)
- Added
- Removed bulk update Approve and Disapprove options when form not approval-enabled
- Fixed display of Directory & Addons menu - now showing on all admin pages.
- Completely revamped the admin approval process! Now approving an entry is as easy as checking a box in the Entries view.
- Supports bulk approve and un-approve
- Added "Directory Fields" in the Form Editor
** - "Approved" field:** Add this to your form to have a pre-configured admin-only checkbox.
** - "Entry Link" field:** Use this text as a link to the single entry view - Added "Directory" tab to fields in the Form Editor
- Use Field As Link to Single Entry
- Text for Link to Single Entry
- Use field values from entry
- Use the Field Label as link text
- Use custom link text.
- Hide Field in Directory View
- Hide Field in Single Entry View
- Added a how-to video and improved instructions on settings page
- Improved how settings work & some new settings
- Added "Smart Approval" - Automatically convert directory into Approved-only mode when an Approved field is detected
- Added configuration for default directory settings on the Directory & Addons settings page
- Added
jstable
setting to enable javascript sorting using the Tablesorter script. Includeskws_gf_directory_tablesorter_options
filter to modify Tablesorter settings. ** * Updatedpage_size
setting:** setting a page size of 0 now shows all entries. - Added credit link setting for directories
- Fixed bugs & issues
- Fixed search and entry counts for Approved-only directories
- Improved internationalization support
- Structural & display improvements
- Added proper enqueuing of scripts and styles with
enqueue_files
function. - Hides search and page count when there are no results
- Restructured plugin to use the
GFDirectory
class. - Added a host of new actions and filters to allow for inserting custom content throughout the directory
- Added support for custom endpoints (instead of
entries
...see FAQ for more information)
- Added proper enqueuing of scripts and styles with
- And much, much more!
Note: This update has only been tested with WordPress 3.2 and Gravity Forms 1.5.2.8 and Gravity Forms 1.6 beta.
- Fixed broken image for lightbox close button (issue #570042)
*** Fixed definition list (DL) display mode:** each entry in directory view is now wrapped with a
dl
; single-entry view entries are now wrapped with singledl
*** HTML generation fix:**<liclass
now<li class
(thanks @lolawson) - Improved JavaScript table sorting function (thanks to feedback from heavymark)
- Added option to use links to sort tables instead of JavaScript (
jssearch
, under Formatting Options)
- Added alternating
class
of even and odd for rows
- Improved directory shortcode insertion by checking values against defaults; now inserts into code only non-default items (the default shortcode is now 20 characters instead of 815!)
*** Added formatting options for directory & entries:** display as table (default), list (
<ul>
), or definition list (<dl>
) - Added
kws_gf_directory_defaults
filter to update plugin defaults. - Added address formatting using
appendaddress
setting. This will add a column to the output with a combined, formatted address. Use newhideaddresspieces
setting to turn off the individual address pieces. Instead of having Street, City, State, ZIP, now there's one column "Address" - Added
truncatelink
option (explained below) - Added URL formatting filters to modify how links are truncated so you can choose to display the anchor text exactly as you want (the URL itself won't change). The link text
http://example.example.choicehotels.com/hotel/tx173
becomeschoicehotels.com
, but will still link to the full URL. ** - Don't show http(s):**kws_gf_directory_anchor_text_striphttp
** - Strip www:**kws_gf_directory_anchor_text_stripwww
** - Show root only, not the linked to page (example.com/inner-page/
becomesexample.com
):**kws_gf_directory_anchor_text_rootonly
** - Strip all subdomains, including www:**kws_gf_directory_anchor_text_nosubdomain
** - Hide "query strings" (example.com?search=example&action=search
becomesexample.com
):**kws_gf_directory_anchor_text_noquerystring
- Submit a form using the keyboard, not just clicking the button
*** Added filter to change directory pagination settings (results page links):**
kws_gf_results_pagination
- Fixed issue with malformed pagination link URLs
- Improved "Expand All Menus" checkbox layout *** Discovered an issue:** pagination on approved-only entries doesn't work well. To compensate, you could set your page size to a large number that contains all the entries. This likely will not be fixed soon.
- Added administration menu for Gravity Forms Addons, allowing you to turn off un-used or un-desired functionality.
- Should fix issue with Approved checkbox not working in some cases where Admin-Only is enabled. Please report if still having issues.
- Fixed display of textarea entry data for short content (thanks, Tina)
- Included entry-details.php file, required for lightbox viewing
- Fixed issue with single-entry lightbox view - no longer shows admin-only columns if admin-only setting is turned off.
- Fixed Multi-blog single entry view, canonical link and chortling generation
- Added single-entry viewing capability
- View single entry details on either a separate page or in a lightbox
- Entries in separate page have their own permalink (http://example.com/directory/entry/[form#]/[entry#]/)
- Add entry detail links by having Entry ID column added to directory
- Fixed footer column filters
- Upload this plugin to your blog and Activate it
- Set it up following instructions below:
###8. Go to the post or page where you would like to add the directory.###
###9. Click the "Add Directory" button above the content area.###
###10. Choose a form from the drop-down menu and configure settings as you would like them.###
###11. Click "Insert Directory". A "shortcode" should appear in the content editor that looks similar to [directory form="#"]
###
###12. Save the post or page###
###13. Edit the Gravity Forms form you'd like to configure a Directory for###
###14. Click "Directory Columns" In the Form Editor toolbar (near the top-center of the page)###
###15. Drag & drop the fields in the order you'd like them to appear in the directory###
* Drag from the right ("Hidden Columns") side to the left ("Visible Columns") side.
###16. Click the "Save" button###
When editing a form, click on a field to expand the field. Next, click the "Directory" tab. There, you will find options to:
- Choose whether you would like the field to be a link to the Single Entry View;
- Hide the field in Directory View; and
- Hide the field in Single Entry View