├── README.md ├── branch-readme.md └── plugin.php /README.md: -------------------------------------------------------------------------------- 1 | # Plugins Index 2 | Not all the plugins are displayed here, because some of them are specific to a customer. 3 | 4 | Each branch on this Repository is a plugin, so you can [see them all here](https://github.com/gravityview/gv-snippets/branches/active). 5 | 6 | - ["Delete Entry" Trash Mode](https://github.com/gravityview/gv-snippets/tree/addon/trash-entries)
7 | When using the Delete Entry links, send entries to Gravity Forms Trash instead of permanently deleting them. 8 | - [Disable assigning the new user to the entry](https://github.com/gravityview/gv-snippets/tree/2777-disable-user-assignment)
9 | When an user is created using the User Registration add-on, Disable assigning the new user to the entry 10 | - [Search Mode "All"](https://github.com/gravityview/gv-snippets/tree/addon/2643-search-mode-all)
11 | Change the GravityView search mode to use "All" instead of "Any" 12 | - [Disable Caching](https://github.com/gravityview/gv-snippets/tree/addon/2863-disable-cache)
13 | Disable entry caching in GravityView 14 | - [Disable Field Conditional Logic on Edit](https://github.com/gravityview/gv-snippets/tree/2726-disable-conditional-logic)
15 | Disable the Field Conditional Logic on the Edit Entry View (show all fields, regardless of the selected values) 16 | 17 | ### For GravityView Extensions & Premium Plugins 18 | 19 | - [Use DataTables "Compact" Style](https://github.com/gravityview/gv-snippets/tree/addon/2677-datatables-compact)
20 | Use DataTables "Compact" style. [See example here](https://datatables.net/examples/styling/compact.html) 21 | 22 | ### Modify Gravity Forms 23 | 24 | - [Add Missing Fields to Gravity Forms Export](https://github.com/gravityview/gv-snippets/tree/addon/6031-add-export-fields)
25 | Gravity Forms doesn't include all the entry data in the Entries export. This snipped adds the option to export these entry values: "Is Starred", "Is Read", "Entry Status", "Is Fulfilled", "Currency", "Transaction Type", "Payment Method" 26 | -------------------------------------------------------------------------------- /branch-readme.md: -------------------------------------------------------------------------------- 1 | # How to Use 2 | 1. Download this Plugin using the **Download ZIP** link on the right 3 | 2. Go to your WordPress administration on the **Plugins** » **Add New** 4 | 3. Click on the "**Upload Plugin**" button 5 | 4. Select the ZIP file that you downloaded 6 | 5. Click "**Install Now**" 7 | 6. Hit the link "**Activate Plugin**" -------------------------------------------------------------------------------- /plugin.php: -------------------------------------------------------------------------------- 1 |