This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

Gravity Forms Directory

Description

This plugin requires Gravity Forms

GravityView is the best way to display Gravity Forms entries

We set out to make a better Directory plugin, and we did it: GravityView takes displaying your form entries to the next level. It is easier, more powerful and more customizable than the Directory plugin. You’ll love GravityView.

Check out GravityView or try a demo today!

Turn Gravity Forms into a Directory plugin

Gravity Forms is already the easiest form plugin…now, the Gravity Forms Directory & Addons plugin turns Gravity Forms into a great directory.

  • 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
  • Bulk Approve & Disapprove entries

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

Have an idea or issue with this Gravity Forms add-on plugin?

Screenshots

  • Approving directory entries is very easy
  • When using the Form Editor, your form fields will have a Directory tab for easily modifying your display options.
  • This plugin adds an Edit link to Gravity Form entries
  • Insert a directory
  • How the Gravity Forms widget appears on the widgets page
  • The Gravity Forms Addons settings page, found in the Forms > Directory & Addons menu link
  • How the Gravity Forms ‘Add Fields’ boxes look after plugin is activated

Installation

  1. Upload this plugin to your blog and Activate it
  2. Set it up following instructions below:

To integrate a form with Directory:

  1. Go to the post or page where you would like to add the directory.
  2. Click the “Add Directory” button above the content area.
  3. Choose a form from the drop-down menu and configure settings as you would like them.
  4. Click “Insert Directory”. A “shortcode” should appear in the content editor that looks similar to [directory form="#"]
  5. Save the post or page

How do I select what columns I want to display in the Directory?

  1. Edit the Gravity Forms form you’d like to configure a Directory for
  2. Click “Directory Columns” In the Form Editor toolbar (near the top-center of the page)
  3. 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.
  4. Click the “Save” button
  5. Voila!

More Configuring of Fields & Columns

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

FAQ

To integrate a form with Directory:

  1. Go to the post or page where you would like to add the directory.
  2. Click the “Add Directory” button above the content area.
  3. Choose a form from the drop-down menu and configure settings as you would like them.
  4. Click “Insert Directory”. A “shortcode” should appear in the content editor that looks similar to [directory form="#"]
  5. Save the post or page

Configuring Fields & Columns

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
  • Enable using the field as an advanced search filter

How do I select what columns I want to display in the Directory?

  1. Edit the Gravity Forms form you’d like to configure a Directory for
  2. Click “Directory Columns” In the Form Editor toolbar (near the top-center of the page)
  3. 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.
  4. Click the “Save” button
  5. Voila!

How do Directory Search filters work?

If the field is a text field, a text search input will be added that will search only this field. Otherwise, the field choices will be used to populate a dropdown menu search input.

Example: if the “Vehicle Make” field has choices “Ford”, “Chevy”, and “Toyota”, the search dropdown options will have those items as choices in a dropdown search field. If “Ford” is selected and the search form is submitted, only entries with the Vehicle Make of “Ford” will be shown.

To enable a field as a search filter, view “How do I add a field as a Directory Search filter?” below.

How do I add a field as a Directory Search filter?

  1. Edit the Gravity Forms form you’d like to configure a Directory for
  2. Click the bar on the top of the field to expand the field
  3. Click the “Directory” tab
  4. Check the box that says “Use this field as a search filter”
  5. Click “Update Form” to save the form

How can I translate the plugin?

The plugin is fully translatable. Go here to contribute a translation and we will include it in the next update!

How do I turn off lightbox grouping?

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';
}

How do I hide entries from logged-out users?

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');

How do I sort by a column?

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"]

I want the URL to be different than `/entry/` – can I do that?

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.
}

How do I change who created an Entry?

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

How do I add a date filter?

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"]

How do I find a field ID?

On the Gravity Forms “Edit Forms” page, hover over the form and click the link called “IDs” that appears.

What’s the license?

This plugin is released under a GPL license.

Form submissions are showing as duplicates.

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.

How do I remove referrer information from emails?

Add the following to your theme’s functions.php file:

remove_filter('gform_pre_submission_filter','gf_yst_store_referrer');

How do I use the filters?

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

Plugin filters

  • kws_gf_directory_output, kws_gf_directory_output_'.$form_id – Modify output for all directories or just a single directory, by ID
  • kws_gf_directory_detail, kws_gf_directory_detail_'.$lead_id – Modify output for single entries
  • kws_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 and do_action in the gravity-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;
}

I can’t see the fields in the Add Fields box!

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 "";') );

I don’t want the values to be formatted

Since 3.6.3, the Directory plugin displays formatted values (like currency). To disable that, add the code below to your theme’s functions.php file:

add_filter('kws_gf_directory_format_value', '__return_false' );

Bulk Approval/Disapproval of entries doesn’t work for me!

Since 4.1, Bulk Approval requires Gravity Forms 2.2.4 (released August 8, 2017). Please update your Gravity Forms.

There’s an incorrect entry count when using Smart Approval

Since 4.1, Smart Approval may return inaccurate entry counts. This will be fixed automatically once Gravity Forms 2.3 is released and installed on your site.

Reviews

October 12, 2017 1 reply
I ave been through the forums and blogs and there is a common issue with the later versions of WP… there seems to be no way to edit an entry in the Gravity Forms database. And it also seems that nobody is chiming in to help people with this problem. Oh well, what a shame. Uninstall
March 9, 2017
I’ve been using gravity forms for a while now and it a great way to make forms and set up conditional logic. But I am not happy with their support. They don’t offer a lot solutions and mostly tell you to install a certain plugin to see if there’s some conflicting plugins or the they ask you to turn off all your plugins to find the issue. These are not reasonable solutions for a large multisite or really any site. I struggled for a few months with an upload issue that could have been resolved in a few days. But the support team never directed to me the correct documentation on the api( which I found on my own months later). They simply told me to hire a backend developer (which we had) and assumed that it was a certificate issue(which I made sure it was not). But overall for a paid service I find it unreliable because I do come across random issues that support isn’t able to help me with.
September 3, 2016
The setting for date format applied via Admin Dashboard is not working properly. I set it as dd-mm-yyyy but then also it shows mm/dd/yyyy. Is there any way to fix this?
December 20, 2016
I’ve been using G-forms as my storefront tool, with payment linked to a PayPal Pro account. It was a bit of a struggle to get these two things connected (not that intuitive on the G-Form end of things) but that part works. What G-Forms does NOT do, however, is push any product data to PayPal. So, on the PayPal side of things, I see that something was purchased by someone on a certain date, but I have no idea WHAT it is! I’ve invested seven months in trying to resolve the issue. I’ve hired two different high-end coders who can’t find a fix. PayPal is set to receive this information, and the folks at Gravity Forms say that it should be moving over – but it isn’t. This, to me, seems like a bug worth G-Form investing some real time in solving, but that hasn’t happened. It has cost me a great deal of time and money. Now I need to find a new payment solution.
December 20, 2016
I have paid my developer license last saturday, nearly one week and cannot contact them, I tried by support tickets, paypal claim, facebook and twitter… nothing!! I didnt get my key so i cannot use my developer license, I had to finish a job within this week and i couldn′t because that. So angry and upset with you guys!!
Read all 35 reviews

Contributors & Developers

“Gravity Forms Directory” is open source software. The following people have contributed to this plugin.

Contributors

Changelog

4.2 on December 7, 2020

New:

  • Compatible with WordPress 5.6
  • Compatible with Gravity Forms 2.5
  • Activation check to verify if Gravity Forms is active
  • Requires WordPress 4.4 or newer

Fixed:

  • Directory Columns window now displays properly
  • Search by substring on directory view works
  • PHP warnings

Improvements:

  • Security improvements
  • Restructured classes and templates
  • Removed redundant code
  • Refactored folder structure

4.1.2 & 4.1.3 on April 2, 2018

  • Fixed: Check whether a function exists that was introduced in Gravity Forms 2.2

4.1.1 on March 30, 2018

  • Fixed: Searching entries using the global search would not filter entries
  • Fixed: Searches with a value of 0 would not filter entries

4.1.0.1 on March 8, 2018

  • Removed test folders containing JSHint files, as suggested by www.remarpro.com

4.1 on March 8, 2018

  • Fixed: No entries are visible when using Smart Approval
    • The Directory may return inaccurate entry counts, but this will be fixed automatically once Gravity Forms 2.3 is released and installed on your site
    • Sorry, but this was necessary!
  • Fixed: Approval column not showing when there was no Approval fields in the form
  • Bulk Approval updates
    • This feature now requires Gravity Forms 2.2.4 (released August 8, 2017)
    • Fixed: Approval now works when selecting all entries in a form
  • Fixed: Creating unreachable database rows when there are no Approval fields in a form

4.0 on March 6, 2018

A big update to make Gravity Forms Directory compatible with Gravity Forms 2.3, and to fix entry approval.

Gravity Forms Directory is not under active development. We’re focusing on GravityView, which is a way better plugin! Try it out for 30 days, if you don’t like it, we’ll give you your money back.

New:

  • Compatible with Gravity Forms 2.3
  • Now requires Gravity Forms 2.2.3.12 or newer
  • Uses Gravity Forms API to fetch entries, instead of direct queries
  • Prevent access to unapproved single entries for users without permission

Fixed:

  • “Edit” action links for entries work again
  • The ability to see the IDs for each field in an entry
  • Bulk Approve and Bulk Disapprove
  • Allow users with gravityforms_edit_entries capabilities to edit entries (previously, only users with gravityforms_directory capability)
  • Searching for 0 values

Improvements:

  • Update code to use GF_Field instead of array
  • Remove calls to deprecated get_currentuserinfo() function
  • Remove unused code
  • Removed use of global variables
  • Added additional text & URL escaping
  • Update Google Maps links to use HTTPS
  • Security improvements

3.8.1 on August 17, 2016

  • Fixed: Compatibility with Gravity Forms 2.0 Entries screen
    • The “Directory Columns” menu returns to the toolbar
    • Show the “Directory Columns” link when displaying the default form in the admin
    • The “Approved” checkbox now does not break entries layout
  • Fixed: PHP warnings shown when configuring directory columns

3.8 on December 10, 2015

  • Fixed: Gravity Forms 1.9.15 Entries screen conflict
  • Fixed: Post Category display included category ID
  • Fixed: Display of full Name, full Address, Checkbox, and Radio fields
  • Tested with WordPress 4.4

3.7.2 and 3.7.3 on May 29

  • Fixed: Security issue with add_query_arg() function. Please update! Learn about the issue
  • Fixed: Conflict with the Directory tab in the Form Editor when using Gravity Forms 1.9+
  • Updated: Colorbox and Tablesorter scripts

3.7 and 3.7.1 on December 17

  • Fixed: Add load_plugin_textdomain() for translations
  • Fixed: Restored single entry links
  • Fixed: Displaying IP address, other default entry values
  • Fixed: HTML links are no longer displayed as text
  • Fixed: Restored respecting settings for image upload formatting
  • Fixed: Lightboxes no longer work for non-image files
    • Added kws_gf_directory_image_extensions filter to modify what image formats to support
  • Added: Improved support for multiple file uploads
  • Modified: Added support for future Business Hours field
  • Modified: Refactored code; created render_image_link() method to render images

3.6.3 (on October 3, 2014)

  • Modified: Values now using Gravity Forms formatting by default. Most field types won’t change, but some will look different, including pricing fields
  • Modified: Removed wpautop and fulltext parameters – full text, styled using paragraphs is always used
  • Fixed: “Too Few Arguments” PHP warning reported here
  • Fixed: Error on activating the plugin, reported here

3.6.2 (on September 25, 2014)

  • Added: Translation files – the plugin’s now fully translation-ready. Go here to contribute a translation
  • Fixed: Solved PHP warnings (see here)
  • Fixed: Made IDs lightbox fit inside Gravity Forms’ defined height/width settings on Forms page
  • Fixed: Sanitize usernames in Change Entry Creator
  • Fixed: Don’t load lead approval scripts on single entry screen
  • Modified: Improved security for editing entries by improving nonce generation
  • Modified: Rewrote Change Entry Creator as class
  • Modified: Include the Change Entry Creator in core plugin
  • Tweak: Switched to dashicon for insert button icon

3.6.1.1 & 3.6.1.2 (April 10th, 2014)

  • Fixed: Post Image wasn’t showing on the single entry view.
  • Fixed: When updating an entry on the frontend, allow the update of conditional hidden fields with cascade conditions

3.6.1 (March 31, 2014)

  • Fixed: When updating an entry on the frontend, allow the update of conditional hidden fields (if visible)
  • Fixed: Add Directory button (to introduce directory shortcode)
  • Fixed: Colorbox examples’ paths
  • Fixed: Approve toggle icons for entries shown by default (no form selected)

3.6 (March 27, 2014)

  • Updated Colorbox js plugin (v 1.5.5)
    • Fixed: jquery.colorbox-min.js path
  • Updated Tablesorter plugin
    • Now Tablesorter supports more themes using the kws_gf_tablesorter_theme filter:
      • black-ice, blue, bootstrap, bootstrap_2, dark, default, dropbox, green, grey, ice, jui
      • See themes here
  • Fixed: When displaying the post link allow nofollow and target configuration
  • Fixed: Added support for non-standard locations of plugin directories
  • Modified: Removed the default fixed table class, this was conflicting with several WordPress themes’ CSS

3.5.4.5 (March 21, 2014)

  • Fixed: View entry issue when website has too many users caused by entry creator change select box. If more than 300 users, show only administrators.
  • Fixed: Undefined variable notice (line 2606)
  • Added filter to convert the post_title field in a link to the post itself

3.5.4.3 (March 10, 2014)

  • IMPORTANT SECURITY UPDATE – security hole patched. Update as soon as possible. (Thanks, BMoskovits)
  • Fixed: Lightbox entry view now allows wp-content to be a different name
  • Fixed: Static PHP messages on settings page
  • Fixed: Back to Directory link now works with Javascript disabled
  • Fixed: Back to Directory link now displays properly on lightbox entry view. Note: it will link to the originating entry, not a blog archive page if the directory is embedded in a blog post.

3.5.4.2 (March 10, 2014)

  • Fix broken path to Change Lead Creator plugin

3.5.4.1 (March 10, 2014)

  • Small fix on showing the edit entry link for own user entries
  • Renamed filename from change-lead-creator.php to gravity-forms-lead-creator.php as WordPress activates the first file with plugin info encountered in the directory (ordered by name) – this way, the main file gravity-forms-addons.php will appear first.

3.5.4 (January 23, 2014)

  • Separated Change Entry Creator functionality into a separate, packaged plugin. This will allow you to enable or disable the functionality as you would a plugin.
  • Added a new filter (kws_gf_entry_creator_users) for the Change Entry Creator plugin. This allows you to define what users appear in the dropdown (as an array of WP_User objects). If no users are specified, all users are shown.

3.5.3 (January 13, 2014)

The fixes in this update were submitted by Dylan Bartlett. Thanks, Dylan!

  • Check for ‘page’ request var instead of suppressing error when not set.
  • Add filters & actions to gf_edit_forms only when editing a specific form
  • Fixed: Use correct path to enqueue Colorbox JS
  • Fixed: JS syntax in Search function

3.5.2 (December 30, 2013)

  • Fixed: Fatal error for users using < Gravity Forms 1.8

3.5 & 3.5.1 (December 29, 2013)

  • Added: Advanced search filters! Filter results based on fields of the form. For more information, read the item in the FAQ tab: “How do Directory Search filters work?”
  • Added: Make fields visibile based on whether an user is logged-in and has certain capabilities (“Only visible to logged in users with [Any] role.” setting in the Directory tab)
  • Added: Supports Single Entry links when Previewing posts and pages that have an embedded directory
  • Fixed: Use sort_field_number instead of sort_field for the get_leads() method
  • Fixed: Replaced WP_PLUGIN_URL with plugins_url() to prevent mixed content warnings when editing forms over HTTPS (thanks, dbarlett)
  • Fixed: Now respects shortcode entryback link setting (previously, only the global setting was respected)
  • Updated: Better icon on Edit Form view for Gravity Forms 1.8
  • Updated: Removed remove_admin_only() method and replaced with remove_hidden_fields()

3.4.4 (December 9, 2013)

  • 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

3.4.3 (October 31, 2013)

  • 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

3.4.2 (October 11, 2013)

  • Fixed compatibility with WordPress 3.6+
    • Directory tab restored to form editor
    • Converted jQuery live() to on()
  • Updated Colorbox library

3.4.1 (February 26, 2013)

  • 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

3.4 (February 21, 2013)

  • 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 and kws_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

3.3.1

  • Fixed: Fixed issue where datepicker functionality may not exist.
  • Improved: Plugin now uses WordPress jQueryUI datepicker script, instead of Gravity Forms’.

3.3

  • 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

3.2.2

  • 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

3.2.1

  • Fixed Colorbox not loading properly in certain cases (Issue #656033)
  • Fixed issue where entries appeared not to be approving properly in the admin.

3.2

  • 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 with entrylightbox and lightbox 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
  • 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)

3.1.1

  • Fixes issue where entries not showing on sort

3.1

  • 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 and do_action.

3.0.3

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 of get_bloginfo()
  • Fixed potential incorrect form ID in the link generation to single entries
  • Improved start_date and end_date shortcode generation
  • Fixed Warning: 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

3.0.2

  • 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.

3.0.1

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 and end_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)
  • Removed bulk update Approve and Disapprove options when form not approval-enabled
  • Fixed display of Directory & Addons menu – now showing on all admin pages.

3.0

  • 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. Includes kws_gf_directory_tablesorter_options filter to modify Tablesorter settings.
    • Updated page_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)
  • 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.

2.5.2

  • 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 single dl
  • 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)

2.5.1

  • Added alternating class of even and odd for rows

2.5

  • 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 new hideaddresspieces 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 https://example.example.choicehotels.com/hotel/tx173 becomes choicehotels.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/ becomes example.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 becomes example.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.

2.4.4

  • 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

2.4.3

  • Should fix issue with Approved checkbox not working in some cases where Admin-Only is enabled. Please report if still having issues.

2.4.2

  • Fixed display of textarea entry data for short content (thanks, Tina)

2.4.1

  • 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

2.4

  • 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 (https://example.com/directory/entry/[form#]/[entry#]/)
    • Add entry detail links by having Entry ID column added to directory
  • Fixed footer column filters
VIP777 login Philippines Ok2bet PRIZEPH online casino Mnl168 legit PHMAYA casino Login Register Jilimacao review Jl777 slot login 90jili 38 1xBet promo code Jili22 NEW com register Agila Club casino Ubet95 WINJILI ph login WINJILI login register Super jili168 login Panalo meaning VIP JILI login registration AGG777 login app 777 10 jili casino Jili168 register Philippines APALDO Casino link Weekph 50JILI APP Jilievo xyz PH365 casino app 18JL login password Galaxy88casino com login superph.com casino 49jili login register 58jili JOYJILI apk Jili365 asia ORION88 LOGIN We1win withdrawal FF777 casino login Register Jiligo88 philippines 7777pub login register Mwgooddomain login SLOTSGO login Philippines Jili188 App Login Jili slot 777 Jili88ph net Login JILIMACAO link Download Gcash jili login GG777 download Plot777 app download VIPPH register Peso63 jili 365.vip login Ttjl casino link download Super Jili 4 FC178 casino - 777 slot games JILIMACAO Philippines S888 register voslot LOVE jili777 DOWNLOAD FK777 Jili188 app CG777 app 188 jili register 5JILI login App Download Pkjili login Phdream Svip slot Abcjili6 App Fk777 vip download Jili888 register 49jili VIPPH register Phmacao co super Taya777 link Pogo88 real money Top777 app VIP777 slot login PHMACAO 777 login APALDO Casino link Phjili login Yaman88 promo code ME777 slot One sabong 888 login password PHMAYA casino Login Register tg777 customer service 24/7 Pogibet slot Taya777 org login register 1xBet live Acegame888 OKBet registration JILIASIA Promotion Nice88 voucher code AgilaClub Gaming Mnl168 link Ubet95 free 50 PHMAYA casino login JLBET 08 Pb777 download 59superph Nice88 bet sign up bonus Jiliyes SG777 download apk bet88.ph login JILIPARK casino login Register Philippines PHMAYA APK CC6 casino login register mobile PHMACAO com download MWPLAY app JILIPARK Download Jili999 register link download Mnl646 login Labet8888 download 30jili jilievo.com login Jollibee777 open now LOVEJILI 11 18JL casino login register Philippines JILIKO register Philippines login Jililuck 22 WJPESO casino PHMAYA casino login Jili777 login register Philippines Ttjl casino link download W888 login Register Galaxy88casino com login OKBet legit tg777 customer service 24/7 Register ROYAL888 Plot777 login Philippines BigWin Casino real money PHLOVE 18JL PH 18JL casino login register Philippines SG777 Pro Taya777 pilipinong sariling casino Jiligames app MNL168 free bonus YesJili Casino Login 100 Jili casino no deposit bonus FC178 casino free 100 Mwcbet Download Jili888 login Gcash jili download JILIMACAO 123 Royal888 vip 107 Nice888 casino login Register FB777 link VIPPH app download PHJOIN 25 Ubet95 legit phcash.vip log in Rrrbet Jilino1 games member deposit category S888 live login FF777 download FC777 VIP APK ME777 slot Peso 63 online casino OKGames app Joyjili customer service superph.com casino FB777 Pro Rbet456 PH cash online casino Okbet Legit login taruhan77 11 VIPPH 777Taya win app Gogo jili 777 Plot777 login register Bet99 app download Jili8989 NN777 VIP JP7 fuel Wjevo777 download Jilibet donnalyn login Register Bossjili ph download 58jili login registration YE7 login register FC777 new link login 63win register Crown89 JILI no 1 app Jili365 asia JLBET Casino 77PH fun Jili777 download APK Jili8 com log in CC6 casino login register mobile ph365.com promotion phjoin.com login register 77PH VIP Login download Phdream live chat Jlslot2 Me777 download Xojili legit PLDT 777 casino login Super Jili Ace Phdream 44 login Win888 casino JP7 Bp17 casino login TTJL Casino register FB777 slot casino Jili games online real money phjoin.com login register BET99 careers ORION88 LOGIN Plot777 login Philippines Labet8888 login JILI Official Pogibet app download PH777 casino register LOVEJILI app Phvip casino VIP jili casino login PHMACAO app 777pnl legit YE7 casino online Okbet download CC6 bet app 63win club Osm Jili GCash LOVEJILI 11 Www jililive com log in Jili58 casino SuperAce88 JiliLuck Login Acegame 999 777pnl promo code MWPLAY good domain login Philippines Pogo88 app Bet casino login Superph98 18jl app download BET999 App EZJILI gg 50JILI VIP login registration Jilino1 new site pogibet.com casino Jili Games try out Gogojili legit 1xBet Aviator WINJILI ph login Jili168 register How to play Jili in GCash 777pnl PHDream register login JILISM slot casino apk FB777 c0m login EZJILI Telegram MWCASH88 APP download Jili88 vip03 APaldo download 1xBet 58JL Casino 58jl login register Jili scatter gcash OKJL slot jili22.net register login 10phginto APaldo 888 app download 1xBet live FC178 Voucher Code 58jl Jili888 ph Login 365 Jili casino login no deposit bonus JP7 VIP login PHBET Login registration 58jili login registration VVJL online Casino Club app download Jili77 login register Jili88 ph com download KKJILI casino WJ peso app Slot VIP777 BigWin69 app Download Nice88 bet Suhagame philippines Jiliapp Login register Qqjili5 Gogo jili helens ABJILI Casino OKJL download 1xBet login mobile Pogibet 888 777 game Okgames casino login Acegame888 Bet86 promotion Winph99 com m home login JP7 VIP login 20phginto VIPPH register KKJILI casino OKJILI casino Plot777 app download NN777 register bossphl Li789 login Jiligo88 app Mwcbet Download Betjilivip Https www BETSO88 ph 30jili Https www BETSO88 ph Jilievo Club Jili888 register Jili777 download APK JILI77 app download New member register free 100 in GCash 2024 Royal888casino net vip JOLIBET withdrawal MW play casino Jili365 login FB777 Pro Gold JILI Bet99 registration 55BMW red envelope Bet199 login philippines JILI188 casino login register download Phjoin legit or not Bigwin 777 Bigwin pro Apaldo PH pinasgame JILIPARK Login registration JiliApp ph04 Ph143 Jili168 login app Philippines MW Play online casino APK 77tbet register 8k8t Bigwin casino YE7 Download App Ph365 download apk Acejili Ph888 login S888 juan login 63win withdrawal Okbet cc labet 8888.com login password Mwbet188 com login register Philippines MNL168 net login registration kkjili.com download Jili888 Login registration Abc Jili com Download JILIPARK casino login Register Download AbcJili customer service live777. casino Jilievo casino jilievo APP live casino slots jilievo vip Jolibet legit PH888 login Register 888php register 55BMW win Mwbet188 com login register Philippines AbcJili customer service Jili88 ph com app 200Jili App MAXJILI casino ROYAL888 deposit mi777 Jili games free 100 ACEGAME Login Register Jilibet donnalyn login Voslot register Jilino1 live casino 18jl login app apk JILI Vip777 login Phtaya login Super Ace casino login Bigwin 777 Ubet95 free 190 superph.com casino Jili22 NEW com register SG777 win Wjpeso Logo 1xBet login mobile Jili88 casino login register Philippines sign up Okbet cc Agg777 slot login Phv888 login P88jili download jiliapp.com- 777 club Fish game online real money One sabong 888 login password QQJili Taya365 slot mnl168.net login Taya365 download Yes Jili Casino PHMACAO APK free download 365 casino login Bigwin 29 JILISM slot casino apk Wow88 jili777.com ph 888php login 49jili VIP Jilino1 legit SG777 slot Fish game online real money Voslot free 100 18jl login app apk OKJL app Jili22 NEW com register Nice88 free 120 register no deposit bonus Sugal777 app download 288jili PHJOIN VIP com Register Jl77 Casino login KKjili com login Lovejili philippines Pogo88 casino SLOTSGO VIP login password Jili22 net register login password Winph 8 we1win 100 Jili slot 777pnl promo code Sg77701 Bet88 download for Android PH365 casino Royal Club login Jili88 casino login register MWPLAY login register Jilibay Promotion 7SJILI com Register FC777 casino link download Royal meaning in relationship OKBET88 AbcJili customer service 777ph VIP BOSS JILI login Register 200Jili App KKJILI casino login register maxjili Mwcbet legit JILIASIA 50 login Milyon88 com casino login 8k8app17 Royal slot Login Phmacao rest 338 SLOTSGO Ph888 login PHGINTO com login YY777 app Phdream register Jili22 net register login password Lucky Win888 Jiligames API Agila club VIP 77PH VIP Login download Acegame888 register PHMAYA Download Jili88 online casino 7XM Lovejili philippines 63win register Jilimax VOSLOT 777 login 18JL Casino Login Register JILIASIA 50 login 50JILI VIP login registration 7XM com PH Nice888 casino login Register 58jl Jili168 casino login register download Timeph philippines 90jilievo Jili88 casino login register OKBet legit JILI slot game download Bet99 promo code 58jili app 55BMW com PH login password KKjili casino login bet999 How to play Jili in GCash BigWin69 app Download OKJL Milyon88 com casino login phdream 888php register Ph888 PH777 registration bonus JLBET Asia LOVEJILI download Royal Casino login 646 ph login Labet8888 review JLBET Casino Jili888 ph Login Wjpeso Wins JILIMACAO 666 Jiliplay login register JILIAPP com login Download JiliLuck download WIN888 PH JL777 app Voslot777 legit Pkjili login 20jili casino Jolibet login registration Phjoin legit or not Milyon88 com casino register JILI apps download 88jili login register Jili 365 Login register download 11phginto Jili777 vip login Ta777 casino online Swertegames Taya365 download 777PNL online Casino login Mi777 join panalo 123 JILI slot 18jili link Panalo lyrics Jiliplay login philippines yaman88 Bet88 login Jili888 Login registration FF777 TV Ok2bet app Pogibet casino philippines Www jilino1 club WOW JILI secret code AB JILI Jili168 online casino BET99 careers Go88 slot login JILI Vip777 login CG777 Casino link OKBet GCash www.50 jili.com login WINJILI download Lucky bet99 Acegame888 77ph com Login password ACEGAME Login Register ACEGAME casino Swerte88 login password Wj slots casino APALDO Casino Phjoin slot JLBET com JLBET ph Taya777 org login 49jili slot Svip slot Jili77 download APK 200jiliclub Bet199 philippines Jili888 Login registration 88jili withdrawal phjoin.com login register Swerte88 login registration Voslot777 legit Superph11 AAA JILI app download Www jililive com log in VIP777 Casino login download Jili77 download APK Jilibet donnalyn login Register JILICC sign up Pogibet app download www.mwplay888.com download apk Jili68 Jililuck App Download APK Yy777 apk mod Jili77 vipph.com login labet8888.com app Phdream live chat Ph646 login register mobile 7777pub download Jolibet Fortune Tree 90JILI app 18JL login Philippines JLSLOT login password 50JILI fun m.nn777 login 88jili withdrawal PH Cash Casino APK 888PHP Casino LINK Boss jili app download Jili999 login register FB777 download APK Free 100 promotion JILIPARK Download VIP PH casino JILIHOT ALLIN88 login 8K8 com login PHMAYA casino login 58jili withdrawal Ubet95 free 100 no deposit bonus KKJILI online casino M GG777 100jili APP JILI888 slot download PHBET88 Jili Games demo 1xBet OKJL Casino Login Nice888 casino login Register Betso88 App download APK VIP777 app Gcash jili register 1xBet registration 58jili withdrawal Jili63 Suhagame23 218 SLOTSGO AGG777 login Philippines Bay888 login JILIVIP 83444 PHCASH com casino login Jilievo 666 Jili 365 VIP register PHMAYA link PH cash VIP login register Yaman88 casino JP7 VIP We1Win download free rbet.win apk Jili168 casino login register download Milyon88 com casino register 18JL login app 88jili withdrawal AAA Casino jilibet.com register Winjili55 UG777 login app PH777 download Jili365 bet login app Osm Jili GCash 77tbet philippines GI Casino login philippines 88jili login FC178 casino free 100 SG777 Com Login registration Nice88 free 100 Oxjili Royal777 Top777 login FB777 live 200jili login Gogojili legit Yes Jili com login phcash.vip casino Sugal777 app download 58JL app Login Panalo login JILI games APK Lucky99 Slot login Jili scatter gcash 7XM APP download FB JILI casino login download PHMACAO app ROYAL888 Link Alternatif ACEPH Casino - Link 55bmw.com casino Timeph app Osm Jili GCash M GG777 Ubet95 login Jiligo88 CG777 Casino Philippines Tayabet login Boss jili app download YY777 app download Nice88 free 120 register no deposit bonus Bossjili7 XOJILI login 68 PHCASH login ezjili.com download apk Jili 365 VIP APK Milyon88 pro Jili88 casino login register download Jili online casino AgilaPlay Jili scatter gcash 7777pub login CC6 app bonus JK4 online PHJOIN casino Joyjili login register 22phmaya 5JILI Casino login register Betso88 VIP Winph 8 Phmacao rest JILI Slot game download free s888.live legit APALDO Casino link Plot 777 casino login register Philippines Ph646wincom Jili168 login app Philippines KKJILI casino Apaldo PH Phdream live chat Slot VIP777 PH888BET 22 phginto 50JILI APP MWPLAY login register Slotph We1Win apk VIP777 slot login Nice88 PRIZEPH online casino Jilipark App 7XM app for Android Jili58 Jili168 free 100 APALDO 888 CASINO login APaldo download Jiliasia8 com slot game phcash.vip casino OKJL Casino Login YY777 live Jili888 register Winjiliph QQ jili casino login registration Abcjili5 NN777 register Phvip casino Taya 365 casino login OKBet app Osm Jili GCash Nice88 free 100 5JILI Casino login register Bet88 app download 5 55bmw vip Jlph11 JILI slot casino login Nice88 bet sign up bonus JILI Slot game download for Android Abc Jili com Download FF777 TV Peso 63 online casino MILYON88 register free 100 7777pub JILIASIA 50 login CC6 online casino latest version Royal Club apk 1xBet login registration CG777 Casino Philippines 1xBet app Mwcbet net login Password LOVEJILI 21 FBJILI Now use Joyjili Promo code JILI188 casino login register download PHMACAO SuperPH login AGG777 login app Peso 63 online casino filiplay Sugal777 app download Galaxy88casino com login EZJILI Telegram JiliApp ph04 Jilino1 com you can now claim your free 88 PHP download 63win Coupon Code PHDream 8 login register Philippines MNL168 website CC6 online casino register login 3jl app download apk Jlph7 TA777 com Login Register password 5jili11 FF777 casino login Register KKJILI casino login register 10 JILI slot game 3JL login app Jili100 APP Winjili55 Milyon88 info Jilino1 VIP login YE7 bet sign up bonus Apaldo games Wj casino app AbcJili win.ph log in Jili22 VIP 204 SG777 Jl77 Casino login YY777 app download Jilimacao Okjl space Wjevo777 download Ubet95 free 100 no deposit bonus PHMAYA APK Xojili legit 77PH bet login Taya365 pilipinong sariling casino LOVEJILI AAAJILI Casino link Jollibee777 How to play mwplay888 18jl app download jilievo.com login password VIP PH casino mnl168.net login JiliLuck download Win2max casino 777PNL download app Ubet Casino Philippines Win888 Login Jili88 casino login register Philippines sign up Bet99 APK 18JL casino Login register Download Naga888 login JLPH login PHMACAO APK free download How to register Milyon88 Royal888ph com login JiliCC entertainment WINJILI customer service PHBET88 Jili888 Login Philippines SG777 slot FBJILI Jili365 bet login app Ubet95 free 100 no deposit bonus Taya 365 casino login LOVEJILI Jili777 free 150 YE7 casino login register download QQJili 58jili login Download S888 sabong Gi77 casino Login taya777 customer service philippines number 24/7 WINJILI customer service Https www wjevo com promocenter promotioncode Nice99 casino login Phdream 44 login Mi777app 777PNL online Casino login phjl.com casino JILILUCK promo code Pogibet 888 login BigWin Casino legit Jolibet app download Jilli pogibet.com casino JP7 VIP login Ug7772 Phjoy JILIMACAO 123 PH143 online casino jili365.bet download PH cash VIP login register Abc Jili Register Mwgooddomain login 58JL Casino link 365 Jili casino login no deposit bonus JILIEVO Casino 777 60win OKGames casino 49jili VIP kkjili.com app JILIPARK casino login Register Philippines Agila Club casino OKGames GCash OKBet casino online S888 juan login Yaman88 log in Winph99 com m home login Jili88 casino login register Winjiliph CG777 Casino LOGIN Register Ubet Casino Philippines Agilaclub review Is 49jili legit ph646 JLBET link JiliCC entertainment Jilicity withdrawal Ta777 casino online Jili777 login register Philippines JP7 coupon code Milyon88 one Ug7772 Jilibet casino 77PH VIP Login download Jili live login 68 PHCASH 7XM APP download Boss jili login MWCASH88 APP download Jilicity login Acegame888 real money LIKE777 JILILUCK app JiliBay Telegram Bet199 login philippines Ph646wincom PHJOIN login OKGames register JILIASIA withdrawal Panalo login 88jili Login Philippines Wjevo777 download phjl.com casino Fcc777 login Labet8888 login JILI8998 casino login PHJL Login password Jilibay Voucher Code 28k8 Casino P88jili download 49jili apps download Fk777city we1win CG777 Casino login no deposit bonus MW play casino FF777 casino login Register Philippines download JILIAPP com login Download Bet199 PHGINTO com login Bet88 bonus Sw888 withdrawal Vvjl666 Jiliapp 777 Login QQ jili login Jilicity download Jili188 login Philippines Timeph philippines Casino Club app download Nice88 bet login registration Bay888 login PH Cash casino download Jiliko777 Nice88 PH 777pnl Jiliplay login register JILI VIP casino cg777 mwcbets.com login Fbjili2 JILIAPP download 7xm login 77jl.com login JILI Slot game download for Android MWPLAY app superph.com casino Nice88 free 120 WJ peso app Jili58 register 3jl app download apk Betso88 link OKGames login free JILIASIA 888 login 58jl login register Jilibet888 68 PHCASH login Jili88ph net register 55BMW Casino app download APK Abc Jili com Download FB777 register login Philippines Jilievo org m home JiliLuck download jlbet.com login register Jp7 casino login 18JL Casino Login Register YE7 casino APK prizeph Boss jili login Royal logo FC178 casino - 777 slot games Taya777 pilipinong sariling casino Ph888 MWPLAY app @Plot777_casino CG777 login BOSS JILI login Register JILI PH646 login Vvjlstore Mi777 casino login Download Okgames redeem code 50JILI VIP login registration Bet88 login AGG777 login Philippines JILIMACAO Yesjili com legit P88jili com login OKBET88 Gold JILI VIP PH casino VIP PH log in bet88.ph legit kkjili.com app JiliLuck Login JILI Vip777 login 63win withdrawal bet999.ph login m.nn777 login 58JL 8k8app17