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.

OptionTree

Description

OptionTree attempts to bridge the gap between WordPress developers, designers and end-users by creating fully responsive option panels and meta boxes with an ease unlike any other plugin. OptionTree has many advanced features with well placed hooks and filters to adjust every aspect of the user experience.

Build your Theme Options panel locally with an easy to use drag & drop interface and then export a functioning theme-options.php file for production use that is i18n translation ready, with your custom text domain automatically inserted.

And, in just a few simple lines of code, save settings to the database with a unique array ID so none of your Theme Options conflict with other themes that use OptionTree.

Also, OptionTree now takes full advantage of the new color schemes introduced in WordPress 3.8, it looks and feels built-in.

Theme Integration

If you’re like me, you want to know how everything works. Download and activate the OptionTree Theme and see first hand how to integrate OptionTree into your own project. I’ll walk you through installing OptionTree and you’ll get a chance to see all the various options and filters first hand and in the wild.

Contributing

To contribute or report bugs, please go to the OptionTree Github repository.

Sponsorship

OptionTree is a project partly sponsored by ThemeForest, the largest WordPress theme marketplace on the web.

Option Types

This is a complete list of all the available option types that come shipped with OptionTree.

  • Background
  • Border
  • Box Shadow
  • Category Checkbox
  • Category Select
  • Checkbox
  • Colorpicker
  • Colorpicker Opacity
  • CSS
  • Custom Post Type Checkbox
  • Custom Post Type Select
  • Date Picker
  • Date Time Picker
  • Dimension
  • Gallery
  • Google Fonts
  • JavaScript
  • Link Color
  • List Item
  • Measurement
  • Numeric Slider
  • On/Off
  • Page Checkbox
  • Page Select
  • Post Checkbox
  • Post Select
  • Radio
  • Radio Image
  • Select
  • Sidebar Select
  • Slider
  • Social Links
  • Spacing
  • Tab
  • Tag Checkbox
  • Tag Select
  • Taxonomy Checkbox
  • Taxonomy Select
  • Text
  • Textarea
  • Textarea Simple
  • Textblock
  • Textblock Titled
  • Typography
  • Upload

Screenshots

  • Theme Options
  • Settings
  • Documentation

Installation

Plugin Mode

  1. Upload option-tree to the /wp-content/plugins/ directory
  2. Activate the plugin through the Plugins menu in WordPress
  3. Click the OptionTree->Documentation link in the WordPress admin sidebar menu for further setup assistance.

Theme Mode

  1. Download the latest version of OptionTree and unarchive the .zip directory.
  2. Put the option-tree directory in the root of your theme. For example, the server path would be /wp-content/themes/theme-name/option-tree/.
  3. You must deactivate and/or delete the plugin version of OptionTree.
  4. Add the following code to the beginning of your functions.php.

    `
    /**

    • Required: set ‘ot_theme_mode’ filter to true.
      */
      add_filter( ‘ot_theme_mode’, ‘__return_true’ );

/**
* Required: include OptionTree.
*/
require( trailingslashit( get_template_directory() ) . ‘option-tree/ot-loader.php’ );
`

For a list of all the OptionTree UI display filters refer to the demo-functions.php file found in the /assets/theme-mode/ directory of this plugin. This file is the starting point for developing themes with Theme Mode.

FAQ

Is there a demo theme I can install?

There sure is, and I’m glad you asked. Download and activate the OptionTree Theme and get some experience setting up OptionTree on your own with detailed directions and tips.

I get errors or a blank screen when I activate the plugin. What’s the deal?

The most likely scenario is your theme already has OptionTree installed in Theme Mode. And since the plugin and theme version can’t both be active at the same time without the sky falling on your head, your site has decided to throw in the towel. If that’s not your issue, open up a support request and we’ll figure it out together. UPDATE: As of OptionTree 2.4.0 the plugin version will not conflict with the Theme Mode version if they are both 2.4.0 or higher.

Reviews

August 16, 2021
Hello, This is a useful plugin, do you have any plan for updating it???
June 12, 2021
Muy buenas. Es muy bueno el plugin. Pero genera un aviso de error cuando tengo activado el modo DEPURACIóN del WordPress. El mensaje es el siguiente: Notice: Trying to access array offset on value of type bool in /media/Datos/xampp/htdocs/sitio_de_pruebas/wp-content/plugins/option-tree/includes/class-ot-settings.php on line 396
October 18, 2019
not supported- list-item not working and it is urgent
June 26, 2019 1 reply
Hello Derek Herman, MetaBox + Theme Option combination is best to build with this plugin. are you planing for taxonomy meta create with this plugin ? If yes – after you are KING for this framework because, every WordPress Theme Developer use this plugin after not redirecting to finding another plugin for help. after this feature developed by you. most developer complete solution with your plugin. ?? Thank you for the best creating plugins. i love it.
Read all 105 reviews

Contributors & Developers

“OptionTree” is open source software. The following people have contributed to this plugin.

Contributors

“OptionTree” has been translated into 2 locales. Thank you to the translators for their contributions.

Translate “OptionTree” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

2.7.3

  • Hotfix – Update regex for Object Injection check to include + bypass and PHP serialized classes. props @erwanlr

2.7.2

  • Hotfix – Extend the unfiltered_html iframe capabilities to support additional style attributes.

2.7.1

  • Hotfix – Fix error cannot redeclare _sanitize_recursive(). props @shramee
  • Hotfix – Ensure iframe supports the style attribute for users with unfiltered_html capabilities.
  • Hotfix – Ensure noscript is supported for users with unfiltered_html capabilities.

2.7.0

  • Require PHP 5.3+
  • Fix all PHPCS errors and warnings.
  • Fix a vulnerability where Object Injection could take place if someone has a valid nonce.
  • Force all settings to be sanitized and escaped before saving and during display.
  • Add filter ot_validate_setting_input_safe which is used to validate the input value of a custom setting type. All values must be validated!
  • Add a notice to let users know that a custom setting type is not properly validating saved data and do a best-effort sanitize of the user data before saving it.
  • Fix issue with Composer autoload and only load OptionTree if we have access to WordPress. props @infomaniac50
  • Fix deprecated create_function notice in PHP 7.2+. props @modesthatred
  • Fix notice “Only variables should be passed by reference”. props @SergeAx
  • Add wordpress-plugin project type to composer file. props @egifford
  • Removed translation files.
  • Removed the deprecated XML file import method.
  • Fix SQL syntax issue. props @ryanlabelle
  • Fix metabox radio & checkbox style issues. props @ryanlabelle

2.6.0

  • Fix a reflected XSS vulnerability with the add_list_item & add_social_links Ajax requests.
  • Fix the Google Fonts URL so it passed the W3 Validator. props @BassemN
  • Fix global_admin_css so it’s only enqueued when needed.
  • Fix dynamic.css so that a child theme doesn’t load the styles saved to the parent theme.
  • Add filter ot_recognized_post_format_meta_boxes to support additional post formats meta boxes. props @BassemN
  • Add action ot_do_settings_fields_before & ot_do_settings_fields_after. props @BassemN, @valendesigns
  • Add Text Domain to plugin file to fully support the new translate.www.ads-software.com Language Packs.
  • Fix notice in PHP 7.0.0 props @Zackio

2.5.5

  • Hotfix – Allow a 0 value to be saved with certain option types. Contributors via github @BassemN.
  • Hotfix – Stop media from being attached to the OptionTree post type when uploaded from the media manager or customizer. Contributors via github @earnjam, and @valendesigns.
  • Hotfix – Added filter ot_load_dynamic_css to explicitly turn the feature off if desired.
  • Hotfix – Stopped dynamic.css created with other themes from being loaded elsewhere.

2.5.4

  • Hotfix – Support for WordPress 4.2 term splitting.
  • Hotfix – Removed any potential XSS security issues with add_query_arg by escaping it.
  • Hotfix – Fixed an issue where Visual Composer was indirectly destroying OptionTree meta box values.
  • Hotfix – Fixed an issue where the select field value was not visible. Contributors via github @sabbirk15.

2.5.3

  • Hotfix – Added inherit fallback to the border option type in dynamic.css.
  • Hotfix – Added none fallback to the box-shadow option type in dynamic.css.
  • Hotfix – Added inherit fallback to the colorpicker option type in dynamic.css.
  • Hotfix – Added inherit fallback to the colorpicker-opacity option type in dynamic.css.
  • Hotfix – Added filter ot_insert_css_with_markers_fallback to filter the dynamic.css fallback value.
  • Hotfix – Added filter ot_type_radio_image_attributes to filter the image attributes for each radio choice. Contributors via github @BassemN, and @valendesigns.
  • Hotfix – Refactored ot_insert_css_with_markers to remove confusing & unnecessary PHP statements and fix whitespace.
  • Hotfix – Fixed an issue in ot_insert_css_with_markers where the $option_type variable was not being set properly.
  • Hotfix – Fixed an issue where having multiple Google Fonts option types caused the “Add Google Font” button to insert multiple dropdowns.

2.5.2

  • Hotfix – Added inherit fallback to the link-color option type in dynamic.css.
  • Hotfix – Remove $.browser.msie JS error caused by function being deprecated.
  • Hotfix – Change hover to mouseenter mouseleave to stop jQuery migrate error message.
  • Hotfix – Don’t allow duplicate Google Fonts in the ot-google-fonts-css enqueue.
  • Hotfix – Fixed an issue with the CSS and JavaScript option types not being initiating inside of tabs.
  • Hotfix – Fixed metabox tab styles for mobile.
  • Hotfix – Separate the post formats JS so it does not interfere with the default behavior and loads only as needed.
  • Hotfix – Adding the not-sortable class to the List Item option type will remove the sortable feature for that option.

2.5.1

  • Hotfix – Overhaul the Colorpicker Opacity option type so it saves rgba values, not arrays.
  • Hotfix – Added the ability to set opacity on any colorpicker with the ot-colorpicker-opacity class.
  • Hotfix – Don’t use esc_url_raw to filter the Upload option type when it’s saving an attachment ID. Contributors via github @RistoNiinemets.
  • Hotfix – Show an error message to user if unable to write to the dynamic.css file. Contributors via github @johnh10, and @valendesigns.
  • Hotfix – Force the ot_google_fonts array to be rebuilt when switching between themes.
  • Hotfix – Stop theme check from nagging about using add_menu_page in ot-cleanup-api.php.

2.5.0

  • Added the Google Fonts option type. Contributors via github @maimairel, and @valendesigns.
  • Added the Border option type. Contributors via github @doitmax, and @valendesigns.
  • Added the Box Shadow option type. Contributors via github @doitmax, and @valendesigns.
  • Added the Colorpicker Opacity option type. Contributors via github @doitmax, and @valendesigns.
  • Added the Dimension option type. Contributors via github @doitmax, and @valendesigns.
  • Added the JavaScript option type.
  • Added the Link Color option type. Contributors via github @doitmax, and @valendesigns.
  • Added the Spacing option type. Contributors via github @doitmax, and @valendesigns.
  • Fixed an issue where the Colorpicker was not parsing conditions on change or clear.
  • Fixed the Colorpicker styles on mobile devices.
  • Show the Colorpicker setting ID inside the error message string when the value is invalid.
  • Added an ‘on change’ trigger to the Numeric Slider’s hidden input. Contributors via github @cubell.
  • Stop Theme Check from complaining about the register_post_type() function being used in Theme Mode.
  • Added styles that clean up the appearance of the included Font Awesome icons in section tabs.
  • Fixed jQuery UI style conflicts created by the WP Review plugin.
  • Changed the sanitization function from sanitize_text_field to esc_url_raw for the Upload option type.
  • Added filter ot_dequeue_jquery_ui_css_screen_ids to dequeue jquery-ui-css by screen ID.
  • Added filter ot_on_off_switch_on_value to filter the value of the On button. Contributors via github @BassemN, and @valendesigns.
  • Added filter ot_on_off_switch_on_label to filter the label of the On button. Contributors via github @BassemN, and @valendesigns.
  • Added filter ot_on_off_switch_off_value to filter the value of the Off button. Contributors via github @BassemN, and @valendesigns.
  • Added filter ot_on_off_switch_off_label to filter the label of the Off button. Contributors via github @BassemN, and @valendesigns.
  • Added filter ot_on_off_switch_width to filter the width of the On/Off switch.
  • Added filter ot_type_date_picker_readonly to filter the addition of the readonly attribute.
  • Added filter ot_type_date_time_picker_readonly to filter the addition of the readonly attribute.
  • Added filter ot_admin_menu_priority to filter the admin_menu action hook priority.
  • Added Estonian translation. Contributors via github @tjuris, and @RistoNiinemets.
  • Fixed an issue where changes to theme-options.php required a second page load.
  • Fixed the clean up script, it only displays when there’s something to clean up. No more menu item!
  • Update demo files with the latest option types.
  • Changed where ot_css_file_paths is saved when is_multisite for better dynamic.css file support.
  • Changed the default dynamic.css file path in multisite to be dynamic-{current-blog-id}.css.

2.4.6

  • Hotfix – Added a clean up script to consolidate orphaned media posts and remove the old and unused wp_option_tree table.
  • Hotfix – Fixed an issue where ot_get_media_post_ID() was never able to set the value of the ot_media_post_ID option because it was already set to empty. Causing the ot_create_media_post() function to create multiple media posts.

2.4.5

  • Hotfix – Fixed an issue where ot_get_media_post_ID() was setting the value of the ot_media_post_ID option to null. Causing the ot_create_media_post() function to create multiple media posts. A clean up script will be added to 2.5.0.

2.4.4

  • Hotfix – Fixed undefined index caused by shorthand conditional.
  • Hotfix – Fixed jQuery UI style conflicts created by the Easy Digital Downloads plugin.
  • Hotfix – Added placeholder to background-image. Contributors via github @BassemN.

2.4.3

  • Hotfix – WordPress 4.0 compatible.
  • Hotfix – Fixed an issue where all media was being attached to the default OptionTree media post.
  • Hotfix – Removed the deprecated screen_icon() function.
  • Hotfix – Fixed the ot_line_height_range_interval filter being misnamed as ot_line_height_unit_type. Contributors via github @youri–.
  • Hotfix – Fixed a conflict with “Frontend Publishing Pro” when using the media uploader on the front-end.
  • Hotfix – Increase condition performance. Contributors via github @designst.
  • Hotfix – Add custom style classes to list-item settings. Contributors via github @designst.
  • Hotfix – Check for post_title instead of post_name in ot_get_media_post_ID(). Contributors via github @clifgriffin.
  • Hotfix – Store the return value of ot_get_media_post_ID() in the options table as ot_media_post_ID.
  • Hotfix – Added padding to List Items options to reflect the same UI as individual options. Contributors via github @valendesigns and @designst.
  • Hotfix – Fixed a bug that caused the Social Links option type to not properly import.

2.4.2

  • Hotfix – Fixed a PHP notice that was created when background-size in the Background option type is undefined.
  • Hotfix – Fixed an issue with the Upload option type, in attachment ID mode, not storing its value.
  • Hotfix – Replaced load_template with require throught the documentation.
  • Hotfix – Added a settings ID auto-fill that is based on the text of the settings label in the Theme Options UI Builder. Contributors via github @valendesigns and @Ore4444.
  • Hotfix – Added filter ot_override_forced_textarea_simple to allow the Textarea option type to be moved in the DOM and not replaced with the Textarea Simple option type in meta boxes and list items.

2.4.1

  • Hotfix – Fixed a typo in the demo Theme Options related to the social-links.
  • Hotfix – Fixed the language directory path conflict between IIS and Linux while in Theme Mode.
  • Hotfix – Fixed a style issue where select fields would overflow their parent elements.
  • Hotfix – Fixed a PHP notice that was created when the Measurement option type did not have a saved value.

2.4.0

  • Added filter ‘ot_post_formats’ which loads meta boxes specifically for post formats.
  • Added the Social Links option type.
  • Fixed OptionTree being conflicted due to having both the plugin and theme version activated. Contributors via github @valendesigns and @bitcommit.
  • Added an admin notice when the UI Builder is being overridden by custom theme options.
  • Allow the Upload option type to be stored as an attachment ID by adding ot-upload-attachment-id to the elements class attribute. Contributors via github @valendesigns and @krisarsov.
  • Fixed an issue with the CSS option type not showing the Ace editor in a metabox that is broken into tabbed content.
  • Fixed missing option type translation strings. Contributors via github @RistoNiinemets.
  • Replaced mysql functions with the wpdb equivalent. Contributors via github @joshlevinson.
  • Fixed search order of the contains condition string. Contributors via github @designst.
  • Added meta box field wrapper class if a custom field class is defined in the settings. Contributors via github @designst.
  • Added filter ‘ot_type_select_choices’ to dynamically change select choices. Contributors via github @maimairel and @valendesigns.
  • Fixed a bug that added an unnecessary directory separator to the load_theme_textdomain() $path variable. Contributors via github @PatrickDelancy and @valendesigns.
  • Fixed the state of metabox radio buttons after a Drag & Drop event. Contributors via github @themovation and @valendesigns.
  • Fixed conditions not working correctly within list items.
  • Fixed the min-height issue when using tabs in metaboxes.
  • Added filter ot_recognized_font_sizes to dynamically change the font sizes by field ID.
  • Added filter ot_recognized_letter_spacing to dynamically change the letter spacing by field ID.
  • Added filter ot_recognized_line_heights to dynamically change the line heights by field ID.
  • Fixed a style issue where list item labels in metaboxes were not displaying correctly.
  • Fixed an issue where the WooCommerce plugin would alter the style of metabox tabs on product pages.

2.3.4

  • Hotfix – Fixed an issue where condition number values were being treated like strings and not returning a correct boolean response.

2.3.3

  • Hotfix – Fixed subfolder compatibility with versions of Windows that use backslashes instead of forward slashes. Contributors via github @primozcigler and @valendesigns.
  • Hotfix – Fixed missing text domain in demo files. Contributors via github @jetonr.
  • Hotfix – Added filter ot_migrate_settings_id to migrate themes that used option_tree_settings and now use a custom settings ID.
  • Hotfix – Added filter ot_migrate_options_id to migrate themes that used option_tree and now use a custom options ID.
  • Hotfix – Added filter ot_migrate_layouts_id to migrate themes that used option_tree_layouts and now use a custom layouts ID.

2.3.2

  • Hotfix – Fixed an issue with the ot_create_media_post function creating multiple option-tree posts.
  • Hotfix – Change the icon used by the layout management option type to differentiate it from the edit button.
  • Hotfix – Suppress PHP warning in the Background option type “Invalid argument supplied for foreach()”. Contributors via github @tomkwok.
  • Hotfix – Added filter ot_type_date_picker_date_format to change the date format of the Date Picker option type.
  • Hotfix – Added filter ot_type_date_time_picker_date_format to change the date format of the Date Time Picker option type.

2.3.1

  • Hotfix – Fixed a bug with the Gallery option type that would show attachments in the media window when none had been added yet.
  • Hotfix – Added the option to save the Gallery as a shortcode by adding ot-gallery-shortcode to the elements class attribute.
  • Hotfix – Fixed conditions not being effective in List Items directly after clicking “Add New”. Contributors via github @bitcommit.

2.3.0

  • Added the Tab option type.
  • Added Ace Editor to the CSS option type. Contributors via github @imangm and @valendesigns.
  • Added support for WordPress 3.8 color schemes.
  • Added support for RTL languages. Contributors via github @omid-khd and @valendesigns.
  • Added actions before and after the enqueue styles and scripts.
  • Added Date Picker option type. Contributors via github @jetonr and @valendesigns.
  • Added Date Time Picker option type. Contributors via github @jetonr and @valendesigns.
  • Added filter ‘ot_list_item_title_label’ to change the label for a List Item’s required title field.
  • Added filter ‘ot_list_item_title_desc’ to change the description for a List Item’s required title field.
  • Added filter ‘ot_options_id’ to change the ‘option_tree’ option ID to a unique value.
  • Added filter ‘ot_settings_id’ to change the ‘option_tree_settings’ option ID to a unique value.
  • Added filter ‘ot_layouts_id’ to change the ‘option_tree_layouts’ option ID to a unique value.
  • Added filter ‘ot_header_logo_link’ to change the logo link inside the header of OptionTree.
  • Added filter ‘ot_header_version_text’ to change the version text inside the header of OptionTree.
  • Added action ‘ot_header_list’ to add additional theme specific list items to the header of OptionTree.
  • Added filter ‘ot_upload_text’ to change the “Send to OptionTree” text.
  • Added the CSS Class field value to the parent .format-settings div in addition to the class being added to the element. Each class is now appended with -wrap.
  • Added support for Composer. Contributors via github @designst.
  • Added support for adding I18n text domains to the exported theme-options.php file.
  • Fixed a bug that kept the UI from displaying when using the ot_type_background_size_choices filter.
  • Fixed a bug that caused the Gallery option type to save a single space instead of null.
  • Fixed the return value of the Background, Measurement, and Typography option types. They now return null if no values are saved to the array.
  • Fixed a bug that resulted in a PHP warning if the choices array was set to an empty string.
  • Updated the documentation, including this readme.txt and a new demo OptionTree Theme to parallel OptionTree.
  • Added filter ‘ot_type_radio_image_src’ which allows the Radio Image option type source URI to be changed. Contributors via github @bitcommit.

2.2.3

  • Hotfix – Allow empty condition values. For example, field_id:is() or field_id:not() would now be valid syntax.
  • Hotfix – Fixed a bug in the init_upload_fix JavaScript method.
  • Hotfix – Fixed a bug in the url_exists javaScript method. The code will no longer will check if a URL exists on another domain.

2.2.2

  • Hotfix – Added support for both upper and lower case conditions operator.
  • Hotfix – Updated the color and font size of inline code.
  • Hotfix – Fix an issue with IE filter and updated the style of the On/Off option type.
  • Hotfix – Added opacity to radio images to improve distinction. Contributors via github @jetonr.

2.2.1

  • Hotfix – Fixed a UI bug that caused the layouts input to cover the wp menu.
  • Hotfix – Moved the screen shots to the WordPress SVN assets directory.

2.2.0

  • Added the Gallery option type.
  • Added the On/Off option type.
  • Replaced the old Color Picker with the default WP Color Picker.
  • Added UI support for WordPress 3.8. Contributors via github @AlxMedia, and @valendesigns.
  • Added support for conditional toggling of settings fields. Contributors via github @maimairel, @valendesigns, @doitmax, and @imangm.
  • Replaced the OptionTree image icon with a font version.
  • Added ‘background-size’ to the Background option type.
  • Added fallback text when displaying posts without titles in various option types.
  • Added filter ‘ot_recognized_background_fields’ to show/hide fields for background option types.
  • Added filter ‘ot_filter_description’ that allows the theme option descriptions to be filtered before being displayed.
  • Added subfolder compatibility in theme mode. Contributors via github @doitmax, and @valendesigns.
  • Fixed a bug caused by using ‘home_url’ when loading dynamic CSS files.
  • Fixed an issue where you could not save metabox text field values as “0”. Contributors via github @sparkdevelopment, and @valendesigns.
  • Fixed the broken localization directory path in theme mode. Contributors via github @youri–, and @valendesigns.
  • Fixed missing custom class for the Numeric Slider. Contributors via github @doitmax.
  • Added filter ‘ot_type_category_checkbox_query’ which allows you to filter the get_categories() args for Category Checkbox.
  • Added filter ‘ot_type_category_select_query’ which allows you to filter the get_categories() args for Category Select.
  • Added filter ‘ot_type_taxonomy_checkbox_query’ which allows you to filter the get_categories() args for Taxonomy Checkbox.
  • Added filter ‘ot_type_taxonomy_select_query’ which allows you to filter the get_categories() args for Taxonomy Select.
  • Added the ‘ot_echo_option’ function. Contributors via github @joshlevinson.
  • Added filter ‘ot_theme_options_contextual_help’ which allows you to filter the Contextual Help on the Theme Options page.
  • Added filter ‘ot_theme_options_sections’ which allows you to filter the Sections on the Theme Options page. Contributors via github @joshlevinson.
  • Added filter ‘ot_theme_options_settings’ which allows you to filter the Settings on the Theme Options page. Contributors via github @joshlevinson.

2.1.4

  • Hotfix – Fixed the Numeric Slider not work inside of a newly added List item.
  • Hotfix – Fixed the numeric slider fallback value being set to 0, it now becomes the minimum value if no standard is set.
  • Hotfix – Allow single quotes in std and choice value when exporting theme-options.php. Contributors via github @maimairel.
  • Hotfix – Additional Themecheck bypass for required functions. Contributors via github @maimairel.
  • Hotfix – Fixed post meta information being lost when loading revisions. Contributors via github @live-mesh.
  • Hotfix – Removed template queries in option types. Contributors via github @live-mesh.

2.1.3

  • Hotfix – Loading OptionTree on the ‘init’ action proved to be wrong, it now loads on ‘after_setup_theme’.
  • Hotfix – Layouts were not being imported properly due to using the wrong path variable.

2.1.2

  • Hotfix – Fixed a JS mistake that caused upload in list items and sliders to not open the media uploader until saved first.
  • Hotfix – Load OptionTree on the ‘init’ action, which allows the UI filters to properly function when not in theme mode.

2.1.1

  • Hotfix – The OT_SHOW_SETTINGS_EXPORT constant was incorrectly set to false as the default.

2.1

  • Added support for WordPress 3.6.
  • UI got a small but needed update, and is now more inline with WordPress.
  • Added WPML support for the Text, Textarea, and Textarea Simple option types, and within list items; even after drag & drop.
  • Upload now uses the media uploader introduced in WordPress 3.5. Contributors via github @htvu, @maimairel, and @valendesigns.
  • Added a horizontal Numeric Slider option type. Contributors via github @maimairel and @valendesigns.
  • Added a Sidebar Select option type. Contributors via github @maimairel.
  • Removed additional deprecated assigning of return value in PHP.
  • Fix missing “Send to OptionTree” button in CPT. Contributors via github @jomaddim.
  • Fix option types that use $count instead of an array key to select the option value.
  • Created functions to register the Theme Options & Settings pages, and with better filtering.
  • Added relative path support for Radio Image choices.
  • Added dynamic replacement of ‘OT_URL’ & ‘OT_THEME_URL’ in the Radio Image source path.
  • Make ‘0’ possible as a field value. Validate for empty strings instead of empty(). Contributors via github @maimairel.
  • The ‘ot_theme_options_capability’ filter is now working for different capabilities like editor.
  • The ‘ot_display_by_type’ filter is now being assigned to a value.
  • Added filter ‘ot_show_options_ui’ which allows you to hide the Theme Options UI Builder.
  • Added filter ‘ot_show_settings_import’ which allows you to hide the Settings Import options on the Import page.
  • Added filter ‘ot_show_settings_export’ which allows you to hide the Settings Export options on the Export page.
  • Added filter ‘ot_show_docs’ which allows you to hide the Documentation.
  • Added filter ‘ot_use_theme_options’ which allows you to hide the OptionTree Theme Option page (not recommended for beginners).
  • Added filter ‘ot_list_item_description’ which allows you to change the default list item description text.
  • Added filter ‘ot_type_custom_post_type_checkbox_query’ which allows you to filter the get_posts() args for Custom Post Type Checkbox.
  • Added filter ‘ot_type_custom_post_type_select_query’ which allows you to filter the get_posts() args for Custom Post Type Select.
  • Added filter ‘ot_type_page_checkbox_query’ which allows you to filter the get_posts() args for Page Checkbox.
  • Added filter ‘ot_type_page_select_query’ which allows you to filter the get_posts() args for Page Select.
  • Added filter ‘ot_type_post_checkbox_query’ which allows you to filter the get_posts() args for Post Checkbox.
  • Added filter ‘ot_type_post_select_query’ which allows you to filter the get_posts() args for Post Select.

2.0.16

  • Fixed an urgent JS regression bug that caused the upload option type to break. Code contributed by @anonumus via github.
  • Added ‘font-color’ to the typography filter.

2.0.15

  • Added support for Child Theme mode.
  • Improved handling of standard values when settings are written manually.
  • Add filter for CSS insertion value.
  • Added ‘ot_before_theme_options_save’ action hook.
  • Fix ‘indexOf’ JS error when upload is closed without uploading.
  • Add textarea std value when option type is ‘textarea’, ‘textarea-simple’, or ‘css’.
  • Remove load_template and revert back to include_once.
  • Fixed dynamic.css regression from 2.0.13 that caused the file to not save.

2.0.14

  • Removed deprecated assigning of return value in PHP.
  • Patch to fix PHP notice regression with the use of load_template in a plugin after Theme Check update.
  • Fixed missing required arguments in OT_Loader::add_layout.
  • Removed esc_attr() on font-family check.
  • Added a ‘ot_theme_options_parent_slug’ filter in ot-ui-theme-options.php
  • Fixed WP_Error from the use of wp_get_remote() instead of file_get_contents().

2.0.13

  • Removed almost all of the Theme Check nag messages when in ‘ot_theme_mode’.
  • Fix an issue where Media Upload stopped working on some servers.

2.0.12

  • Added additional filters to the array that builds the Theme Option UI.
  • Made option-tree post type private.
  • Revert capabilities back to manage_options in ot-ui-admin.php.
  • Upload now sends the URL of the selected image size to OptionTree.
  • Added new range interval filter to font-size, letter-spacing, & line-height.
  • Allow Typography fields to be filtered out of the UI.

2.0.11

  • Added filters to the array that builds the Theme Option UI.
  • Added .format-setting-wrap div to allow for complex CSS layouts.
  • Added better namespacing for the Colorpicker option type.
  • Fixed theme-options.php export where it was adding an extra comma.

2.0.10

  • Fixed a bug where the Textarea row count wasn’t working for List Items.
  • Added an apply_filter to the exported theme-options.php file.
  • Added CSS id’s to tabs and settings.
  • Allow “New Layout” section to be hidden on the theme options page via a filter.
  • Fixed a bug where the Colorpicker was not closing in List Items.
  • Change capabilities from manage_options to edit_theme_options.
  • Remove Textblock title in List Items & Metaboxes.
  • Fixed a List Item bug that incorrectly added ID’s based on counting objects – submitted by Spark
  • Fixed incorrect text domain paths for both plugin and theme mode.
  • Fixed a bug with UI Sortable not properly calculating the container height.
  • Fixed Select dropdown selector bug – submitted by Manfred Haltner
  • Fixed Radio Image remove class bug – submitted by designst
  • Added new typography fields – submitted by darknailblue
  • Added dynamic CSS support for new typography fields.
  • Added new filters to typography fields, including low/high range & unit types.

2.0.9

  • Fixed the issue where the Textarea Simple and CSS option types were mysteriously being ran through wpautop.
  • Added missing class setting to Textarea, Textarea Simple, & CSS option types.
  • Fixed theme-options.php exported array where label values were not correct.
  • Change GET to POST for all AJAX calls to fix a bug where some servers would not allow long strings to be passed in GET variables.
  • Added the ‘ot_after_validate_setting’ filter to the validation function.
  • Added $field_id to the ot_validate_setting() for more precise filtering.
  • Added the ot_reverse_wpautop() function that you can run input through just incase you need it.
  • Updated the docs to include information on why WYSIWYG editors are not allowed in meta boxes and that they revert to a Textarea Simple.
  • Update option-tree.pot file.

2.0.8

  • Add auto import for backwards compatibility of old 1.x files.
  • Added the ability to export settings into a fully functional theme-options.php.
  • Fix typo in docs regarding the filter demo code.
  • Removed slashes in the section and contextual help titles.
  • Made colorpicker input field alignment more cross browser compatible.

2.0.7

  • Fixed the load order to be compatible with 1.x version themes that think the get_option_tree() function doesn’t exist yet.
  • Tested and compatible with Cudazi themes, but the nag message is still visible.

2.0.6

  • Run the ‘option_tree’ array through validation when importing data and layouts.
  • Fix a bug where list items and sliders were not allowing the user to select the input field.
  • Add a filter that allows you to not load resources for meta boxes if you’re not going to use them.
  • Update option-tree.pot file.

2.0.5

  • Change the way the ‘option_tree_settings’ array validates. Strip out those damn slashes!

2.0.4

  • Run the ‘option_tree’ array through validation when upgrading from the 1.0 branch to the 2.0 branch for the first time.
  • Fix a typo in the slider array where textarea’s were not saving the first time due to an incorrect array key.

2.0.3

  • Had an incorrect conditional statement causing an issue where the plugin was attempting to create the ‘option-tree’ image attachment page, even though it was already created.
  • The above also fixed a conflict with ‘The Events Calendar’ plugin.

2.0.2

  • Added I18n support, let the translations begin. The option-tree.pot file is inside the languages directory.
  • Trim whitespace on imported choices array.
  • Fixed the CSS insert function not having a value to save.

2.0.1

  • Import from table was not mapping settings correctly. It is now.

2.0

  • Complete rewrite form the ground up.
  • Better Theme Options UI Builder.
  • New in-plugin documentation.
  • Brand new responsive UI.
  • Add new option types, most notable the List Item which should eventually replace the Slider.
  • Added the simpler ot_get_option() function to eventually replace get_option_tree().
  • Added support for Meta Boxes.
  • Added Theme Mode where you can now include the plugin directly in your theme.
  • Better validation on saved data.
  • Simplified the import process.
  • Added support for contextual help.
  • Permanently move the Theme Option to the Appearance tab.
  • Added a ton of filters.
  • Made huge improvements to the code base and tested rigorously.

1.1.8.1

  • Removed get_option_tree() in the WordPress admin area due to theme conflicts.
  • Removed demo files in the assets folder at the request of WordPress

1.1.8

  • Fixed scrolling issue on extra tall pages
  • Added ability to show/hide settings & documentation via the User Profile page.
  • Added Background option type.
  • Added Typography option type.
  • Added CSS option type.
  • Better looking selects with 1=Yes,2=No where ‘1’ is the value and ‘Yes’ is the text in the select.
  • Made the AJAX message CSS more prominent.
  • functions.load.php will now only load option type functions if viewing an OT admin page.
  • Deregistered the custom jQuery UI in the ‘Cispm Mail Contact’ plugin when viewing an OptionTree page.
  • Can now save layouts from the Theme Options page.
  • You can now change the slider fields by targeting a specific “Option Key”
  • Modified upload for situations where you manually enter a relative path
  • Allow get_option_tree() function to be used in WP admin
  • Changed permissions to edit_theme_options

1.1.7.1

  • Revert functions.load.php, will fix and update in next version

1.1.7

  • Added layout (theme variation) support with save/delete/activate/import/export capabilities.
  • Allow layout change on Theme Options page.
  • Full Multisite compatibility by manually adding xml mime type for import options.
  • Replaced eregi() with preg_match() for 5.3+ compatibility.
  • Changed test data in the assets directory for new layout option.
  • Made it so when the slider & upload image changes it’s reflected on blur.
  • Gave the slider image an upload button.
  • Added do_action(‘option_tree_import_data’) to option_tree_import_data() function before exit.
  • Added do_action(‘option_tree_array_save’) to option_tree_array_save() function before exit.
  • Added do_action(‘option_tree_save_layout’) to option_tree_save_layout() function before exit.
  • Added do_action(‘option_tree_delete_layout’) to option_tree_delete_layout() function before exit.
  • Added do_action(‘option_tree_activate_layout’) to option_tree_activate_layout() function before exit.
  • Added do_action(‘option_tree_import_layout’) to option_tree_import_layout() function before redirect.
  • Added do_action(‘option_tree_admin_header’) hook before all admin pages.
  • Fixed bug where users could add a color without a hash.
  • Only load option type function on Theme Options page
  • Loading resources with absolute paths, no longer relative.
  • Fixed a bug with uploader creating extra option-tree draft pages.
  • Fixed slider toggle bug, now the sliders close when you open another or create new slide.

1.1.6

  • Theme Integration added.
  • Made the upload XML file openbase_dir compliant.

1.1.5

  • Fixed multiple sliders issue

1.1.4

  • Patch for get_option_tree() $is_array being false and still returning an array

1.1.3

  • Added Slider option type with filter for changing the optional fields
  • Fixed the text displayed for Measurement option type after options are reset
  • Added filter to measurement units
  • Code cleanup in the option_tree_array_save() function
  • Fixed double quotes on front-end display

1.1.2

  • Fixed double quotes in Textarea option type
  • Added Measurement option type for CSS values
  • Fixed Post option type only returning 5 items
  • Added a scrolling window for checkboxes > 10

1.1.1

  • Fixed the ‘remove’ icon from showing when nothing’s uploaded

1.1

  • Fixed the Undefined index: notices when WP_DEBUG is set to true

1.0.0

  • Initial version
Malaking puwang ng bass splash review Bakit pinapayagan ng pamahalaan ang operasyon ng mga monopolyo How to play Super Ace jili Nice88 club withdrawal Esball online casino com registration Nuebe Gaming legit HB888 Casino real money Casino bonus no deposit free spins 2021 12 Titans Greek mythology online slot machines for real money free play Mines jili login download Allin88 ph login Casino Guru gratis Vegas World login Apanalo online game no deposit bonus 77ph Himala himala wikipedia 啶掂啷嵿ぐ啶ぞ啶?啶曕啶ぞ 啶灌? 啶す 啶囙い啶ㄠぞ 啶栢い啶班え啶距 啶曕啶啶?啶灌啶むぞ 啶灌? Mnl168 online casino register philippines login Bally slot machine value Jili live casino no deposit bonus Gcash gambling reddit philippines tamabetcasino Jili magic lamp app Mwplay888 net download for android Vegas Live Slots hack APK Clive and jill sidequest ffxvi Jiliasia online casino Online bingo jili withdrawal Chili for a crowd Silver Palate Jili168 register philippines Jili mk casino Jili cc download for android Habanero online casino games philippines Philucky withdrawal format 377 jili login register philippines Jili slots download Bsa387 login password Ginto Casino link 49jili login to my account login philippines app Royal777 casino no deposit bonus 8 juli feiertag wikipedia Ano ang mga flash game sa hollywoodbets app download Game of Thrones Slots referral code Igt address manila Zynga slots free coins cheat android Jilicash real money withdrawal Paano gumagana ang mga online slot machine login Ezwin online casino philippines Peso88 login register Jili kaganapan login register Winning plus 8 login philippines masuwerteng iikot ang mga nakakalokang slot 123jili app Login casino games online unblocked Transaction password USDT Baccarat games online real money Appointment slots vs appointment schedule quick hit slots commercial actor Multiclass spell slots table Slot schedule template 啶灌啶曕啶?啶曕ぞ 啶い啷嵿い啶?啶曕た啶むえ啶?啶灌啶むぞ 啶灌 Jili jackpot 777 download for android latest version Million 888 casino login register Tongits go apk unlimited money latest version Pinakamahusay na jili slot game download YE7 Download App BET99 Quebec Free 100 online casino registration facebook page 2021 slots no deposit bonus Online gambling philippines real money Jilibet casino login philippines Super Royal 777 Slots go casino login Register Youtube ng slots today Peso 888 apk Mini777 register download PG gaming casino login Wizard of Oz free coins gamehunters Philippine News today live 247Spin free 100 spin the wizard of oz slots free coins E2 jili casino login Konjac jelly Japan Big bet review korean Online casino Philippines News 7 Juli 2024 memperingati Hari Apa Jili 747 casino login Winph 777 login philippines app benefits of online casino games Wild aces online casino real money Mwcash88 Bonus hunter cc email Maduna clan names FF16 change party members Online casino games real money free spins no deposit Dbx casino real money philippines Okada online casino apk latest version Skype Download for PC Jilibet donnalyn login Register online casino 777 Pub download old version Spaghetti Jollibee price Jili no 1 login register Jiliasia app apk Super slots apk old version 646 casino login Register Philippines Listahan ng laro ng skillz login Totoong online pokies philippines release the kraken clash of the titans (1981) Casinos online real money philippines Phil168 APK Download Chumba Casino login Www 49 jili casino login password Fb jili casino login download apk Jlbet slot login Jili 777 lucky slot login register philippines apk Pagcor logo meaning Hard Rock online casino login 77ph com login password download Ano ang gamot sa mataas ang sugar Online casino download APK Geely Emgrand price Philippines BLBET Tapwin 2024 download apk Lodi 646 casino login ph Royal558 download Abc jili register philippines download LVJILI login Royal fishing jili download for android Free60 casino philippines Kk jili libre 58 real money download PHFUN login Nice88 download free ios Best penny slot machines to play at the casino for beginners portal.pagcor.ph sitemap online casino games no deposit bonus Unlapi AAA Jili login Bongobongo ug Casino Jili x yb download apk do 888 casino register Cash Rush slots 777 apk latest version Free online casino games win real money no deposit Philippines Fortune 888 login password Slots casino login no deposit bonus 49 jili time philippines download Nuebe register login Jili fishing game download free Win99 casino philippines Bingo Super Star download 55bmw win withdrawal Jili kilig login download Superball Keno online Hacksaw slots real money Pagcor address philippines 188 jili demo account hack Vegas online casino games free play Jili 49 net casino login philippines 777 jili jackpot apk latest version Fc slot demo free download Jili under maintenance today download android 3 patti slots patti online play Jili bingo download for android Smbet register philippines Osm jili register mobile number philippines MWGAMING 188 register Nuebe agent login philippines Online casino color games philippines Is Winford Casino open today Jili update today WK777 slot Jili casino review philippines slotomania online Lucky jili slots login register mobile 188 jili casino login download philippines Baccarat game strategy reddit Jili22 promotion How to withdraw in jili slot online 1xslots login Mnl168 online casino register philippines login Paano maglaro ng slot gambling login casino for real money online Best online casino Philippines reddit Jili deposit 50 withdrawal limit Nextbet philippines registration 168jili login registration Www royal888casino net register Double Win Withdrawal App Fisheries department officials 777 Lucky JILI Slots Casino APK download Nz online casino games real money 888php withdrawal Jili mines predictor apk Online casino jackpot slots free play yy777cam Jili one login download mainstream records lee young-ji 77ph com download free 49 jili years login register Jili slot club jackpot 777 download free money philippines Www betvisa games app 1888 jili casino withdrawal online July 10 religious holiday Labet88 login registration 2021 Osm jili casino online games philippines download Money 888 login download Empire slot machine download Ireland online casino games free play Kk jili casino login registration download apk 1000 free games to play with friends Poseidon god son Jili lucky slot app download Big baller club casino login registration philippines Fish Hunter - Shooting Fish Pnp 888 jili slot game login app Limbo game download for PC Highly Compressed Jili jackpot 777 download apk ios slot machine free games free spins deposit bonus Jackpot meter app for android Instant withdrawal betting app Dama N.V. casinos no deposit Bonus Joy 7 casino login free chips Eliakim Sadoki Hadaa Ya Walimwengu Gemdisco login 08 jili register app Jollibee slot casino login philippines register online Award winning chili recipe Allrecipes Helens Slot APK old version Mga kahinaan ng mga pragmatic slot machine login Jili pulang sobre register online Jili777 free 150 no deposit bonus Philippines Jili no 1 com withdrawal philippines Slot online game free real money Jackpot joker jili demo free download Best pg slot game free no download Wagi77 login Philippines Rich9 pinakamainit na laro login Fortune gaming88 login philippines Royal Slot Login Fun facts about July 19th Geely gx3 fiche technique philippines IND slots APK yono Ox jili slot withdrawal What happened on October 7 Al Jazeera 777 pub com login download Nice88 app 99 Fortune Casino login Register Tmtplay888 Jiliplay login download Love jili vip login password 888bet registration online Dragon vs Tiger hack apk Lucky JILI slots login register Kpl casino Online casino game for real money free play 777pub open now promo Video poker jacks or better strategy chart Jili 365 casino login register philippines no deposit bonus download Free slots com party bonus Animal Husbandry Minister Bihar list 188 JILI casino login registration Philippines Anuani ya katibu tawala mkoa wa dar es salaam NetBet registration Fg777 register philippines 90 jili live login download One slot game download Agent GEMDISCO Jili 999 com withdrawal Jilimk casino log in no deposit bonus tg777 login register philippines Pagcor login philippines List of licensed POGO in Philippines 2023 How many cannabinoid receptors are there in the human body Q25 jili download ios Ff777 vip login Jili 49 dot com registration philippines Ano ang speed roulette review Ph joy vip login registration philippines 4 ram slots which ones to use Mga puwang ng video youtube Jackpot Party Instagram free coins www.free facebook.com log in Betvisa download for android 49jili pogcor Betso888 login download Jollibee slot login Fruit Theme Birthday Party Wjslot claim form Nextbet Live Casino Lotto go Jili volatility calculator philippines Teenage Kraken Salish Matter Lucky 777 online casino login philippines Slotomania 777 casino real money Mega ace jili demo apk latest version Falcon Play customer service www.666.com games Bingo Jili PH Slots earning app real money no deposit Canara Bank Internet banking PIN generation 8K8 vip login Philippines No 1 jili app for android free download Gonzo's Quest max win 9 Pots of Gold land and win What does Mr Mike Slots do for a living Jili fc slot real money no deposit bonus Ph macao jili register download limbo apk + obb download Swcup6 net live login Register philippines Free slots 8888 no deposit philippines Jili tadhana slots download free Free casino slots 3 lines no download Jili okbet real money philippines Jili88 ph com register login password Slots earning app real money download Jili apps download free for android ios Kurdish traditional dress Labet88 online casino Ez jili telegram ios 94067 water heater door installation Real Boxing 3 download Best casino online Wishbone Games Nextbet login mobile registration Jili no 2 login no deposit bonus Poder Judicial Superace88 club login registration link Triple match 3d master mod apk Sino ang cowboy slots wife Jili 5678 casino login poker star Apanalo casino app login KK JILI casino login app apk Www gibson casino www gibsoncasino com login APEX slot download Best free slot machines play for free no deposit Mining Telegram group link Jili t7 real money Jili369 app download Progressive jackpot meter link Lampara ng genie philippines Best free slots with bonus Asia JILI casino register 888 ladies slots login UNO Spin Millionaire Dimm slots reddit King game app download apk Yy777 index login No deposit slots real money Yeriko by injili bora choir session 49 jili road register philippines Jili slot 777 login register online no deposit bonus philippines 啶啶?啶曕 啶啶班が啶?啶曕ぐ啶ㄠ 啶曕 啶夃お啶距く GGBet welcome bonus Is the 49ers coach a Christian Sino ang may akda ng medusa Ace Super ph casino Login games.747 games.ph/launchgame open now Tiktok video Zili 7 Gold Fruits slot Peraplay APK download Labet88 register philippines app Love jili vip login philippines Slots download free Jili slot jackpot login register Junglee Rummy APK Paddy power virtue Welke dag is het vandaag in belgie Nn777 login philippines app Pb777 login id and password free Sweet Bonanza free spins no deposit Online slots casino 888 real money no deposit online casino games real money Osm jili casino Megaways slots login Konami free slots no download Big Bass Hold and Spinner Megaways demo Jili 888 register Jili mines download free Best free video poker no download fishing slot casino - free 100 000 coins Jili22 NEW com register Big Bass Bonanza Geely subsidiaries in philippines State fish of bihar in english Game of Thrones Slots Casino free coins hack Lucky jili casino login registration philippines apk Mga laro ng slot na nagbabayad ng totoong pera apk Niceph casino real money Fortune Dragon PG slot demo Reference generator Jili88ph net register download FG7777 Jili super win apk best online casino games to win money Bagong jili register app 777sm vip login Jl bet slot register Jili casino sign up bonus no deposit philippines Phlove Casino Login Register Jili slot online real money Ez jili code free download Cannabinoids structure How does Dragon Link slot work 188 jili casino download free Which casino has the most winners in Vegas Goldfish slots apk Fisheries, Bihar gov in Medusa megaways real money Mwcash88 casino login Best time to play crazy time reddit Voslot jili register philippines Ang tao ba ay nagmula sa unggoy PHL63 login register Demo Jili Golden Empire Download app and get bonus Pogibet free 100 philippines 22FUN APK Lucky JILI Casino login registration Win win Game zambia online app download Win100 com casino group win100 originals win100 originals register Mlbb Win Rate Calculator APK Mi777 casino login philippines register Do888 casino login no deposit bonus Jill Scott net worth 8 jili slot download for android 55X Casino Login Register Philippines Ug777 app download apk for android 94067 water heater door replacement Loveph casino Tianjin University of Science and Technology How to play Fortune Gems online Earn money online Philippines legit Xo jili com register philippines Cruise casino in Goa Play slot machines for free online no deposit Is golden Cowboy good tds online casino games volatility Tmtplay casino login register mobile 啶戉え啶侧ぞ啶囙え 啶曕啶膏啶ㄠ 啶椸啶?啶曕啶膏 啶栢啶侧啶? EZJILI Login Register Game room online casino games real money Casino dealer Reddit ph Slots jackpot meter philippines app Pldt 777 real money withdrawal Jackpot World redeem code free 2024 Jilibay free 68 no deposit bonus Bet88 ph app download for android OKBet rewards app Julie emergency contraception reviews 啶ぞ啶椸啶?啶う啶侧え啷?啶曕ぞ 啶膏す啶?啶夃お啶距く Mega win login Best online casino games real money app Jiliasia ace download Jili 178 real money app Pag-IBIG membership Double DaVinci Diamonds free slot game jili 711 Slot virtual real money free Jili tongits withdrawal limit Okbet casino login philippines download Sabong derby 2023 Full Video MONOPOLY Slots download White part of eye swollen like jelly home remedies Ez jili codes 2021 Wjslot com rewards login How many evolutions can you have in a deck Clash Royale Online casino jili login register House of Fun VIP PLUS download SM Megamall 3 day sale 2024 dates Phil163 login Simple chili recipe Jili slot machine apk latest version Jili188 login download Boss88 Slot Login Jili go login philippines Online casino games with free signup bonus philippines Jili mines download apk Fc slot online philippines Y777 jili real money withdrawal Win99 online casino login register Lucky jili slots login register mobile philippines BetVictor UK Jilino1 new site Jili no minimum deposit philippines 2020 Royal777 login register philippines Forgot transaction password in phdream Casino plus jili slot real money Win99 slot games free apk Nn777 slot jili real money 38jili login GO Keyboard APK betBonanza mobile login registration Dragon cash vs Dragon Link 8k8 online casino games downloadable content philippines Best slots to play on FanDuel reddit balato8aa Crown89ph casino login Online casino builder Wjevo22 app irich slots&games casino 777 Boxing king casino real money Jili22 vip202 download online casino games with no minimum deposit Mega Wheel game download Jili apps download for android free Diablo 4 enchantment slot not working Online lucky sweepstakes no deposit bonus 747 online casino games philippines Super ace demo game online free Spin and win cash in Uganda withdrawal PG Soft Wild Bounty Showdown 777sky slot Jiliapp download latest version Www royal888casino net register Royal slots real money login ????? ?? ???? ??? ???? ????? ????? Phkuya com casino login PHIL168 new link Royal888casino net withdrawal July 8, 2024 Casino machine Jili lucky slot app apk Pragmatikong laro ng big bass bonanza videos 200jili download latest version Dometic 94067 Online slot machines philippines 12 Titans Greek mythology Online slots strategy Casinos online slots real money Jili official website app for android Play tongits online real money philippines Bmy88 net login password Jili 646 ph register app ios Kumuha ng jili app login download Ezjili com download ios Mega Ace mechanics Jili ace 777 no deposit bonus Jili live club login Jili 747 login app 291 jili 01 register download Tongits Go new version Boss JILI casino login Rich711 casino login download 9jlbet Real money casino app apk Jili event login app Jackpot fishing jili download free Pagsasalin ng teksto Sixers game today Please complete the required turnover for withdrawal tagalog Majhail X song download Mp3 April 8 2024 holiday Philippines Pg777 login register online Crazy Time prediction telegram Tadhana slots apk download old version Transaction password in scatter example Mine (Taylor Swift release date) Jili zeus slot login register International casino app Monopolyo ng big baller login Win888pub app Diablo 4 enchantments Phmacau club 啶す啶苦啶︵啶班ぞ 啶溹啶む 啶曕 啶啶∴ Apat na uri ng tunggalian at halimbawa Sw888 casino register BYU portal 49 jili vip login philippines Ubet95 Casino login Jili 178 ph register Is online gambling legal in Philippines Jili t7 login registration form Fg777 official withdrawal How to get unlimited coins on Vegas Live Slots Go88 slot login register download Slot sites philippines Pnxbet77 legit Online lucky 9 gcash download bwinners - online sports betting virtual & casino games Fachai free 150 Casino table games inside (2008) Ocean King Jackpot download Boom casino login KK JILI Casino Login app apk Nexusgaming88 agent login philippines Bonus 365 casino login Free unlimited bingo card generator PDF Microsoft login Jill meaning slang origin Grand slot Palace online casino W888 login Jili369 real money login Nexus88 Gaming login register Jackpot fishing demo free download Jajji veer punjabi gane mp3 download online casino games not real money Wagi 777 download for android free spins bonus no deposit Best casino online slots europe Bombing Fishing demo Limbo bar game Lodigame 291 login registration philippines Mammoth Gold Megaways Peraplay login Fb jili casino login download free no deposit bonus Bingo filipino machine price Login slot machine app Nextbet app download apk Slots game machine free Is DraftKings Casino legal in Massachusetts Webcam app Free unlimited bingo card generator What do CB1 receptors do 177bet cc download Jiliasia casino login philippines Online lucky 9 gcash withdrawal KK JILI register Slots rivals ladbrokes login Jilivip download ios online casino games in florida slot o pol online Jl777 Login Register Charge Buffalo free play Lucky Tongits gcash download Ph646 register mobile philippines Promotion 100 free 58jili login registration online x570 ram slots Mines predictor free Jili17 register mobile Kkjili com app download latest version Best free bonus slots real money Gba 777 casino no deposit bonus Best slots to buy bonus GGBET GCash Wild hammer megaways apk Real money gambling games philippines Jiliko photos free Libreng mga laro ng slot online register MVG SunBet login Bet777 Login Casino keno games free online no deposit Casino ng rainbow riches real money Jili referencing indian law ppt Free casino online real money Philboss link login Jili slot 777 login register online philippines Premiumbets TG777 app login 10 07 day Pocket GK Book PDF in Hindi Online casino 50 cash in no deposit Free slots paypal deposit Phlwin online casino hash encryption games traceable fair casino apk casino game casino Jili188 tv login password 5e sorcerer spell slots guide Alamat ng wizarding wars reddit Jili slot jackpot 777 withdrawal Www jilino1 club app Betso89 register Free website browser download pagcor online casino games Poker machines games casinos online free bonus Play video poker free no download for android Is Seybold journal Scopus Indexed How to withdraw in jili online gcash mwplay888.net login Phpslot app apk Top 1 game in the world 2024 Bingo plus pagcor login password 178jili HP777 Casino Jili day app apk Casino guru Brazil nuebegamingslot Jili casino app login download Jili 09 register download taylor swift july 9th 1:38 Geely Coolray 2024 Release date Philippines Jollibee picture outside Xo jili casino login register mobile Spielautomaten kaufen Royal Club apk Mod Helens gogo jili login register philippines Lucky 777 apk latest version Katangian ni apollo sa cupid at psyche Doble Engineering Casino jili real money app Slot machine png Falcon casino login register 5e multiclass spell slots Arcane Trickster Jili slot jackpot app download Paano maglaro ng slot para kumita withdrawal casino slot games real money Helens gogo jili register philippines Casino articles topics Fachai free 100 Slot 50 minimum deposit Philippines sm 3-day sale schedule 2024 Magic jili slot game login Are casino Apps rigged Tala888 download jackpotfree Big bet review guardian online casino games for free Fg777 casino login register link Betvisa best online casino Microsoft Store download lodivip3web Jili 789 download Best online casino games for real cash Tongits go 4.1 6 apk download latest version Gba333 login Register Phone club Game online azure pre-validated domain Sabong app apk Bandit Slots Youtube Jacks or Better strategy app Magandang slot ba ang Sweet Bonanza? 100 free spins no deposit no wagering requirements philippines Fg777win com login Pci slot types explained Nakakabuti ba ang sugal sa tao Tmtplay casino login register mobile Galaxy 88 casino com login register Free flash video poker download no download Winford Online casino login JIL pastor Winhq9 login register mobile W500 one Jili veo casino login registration Buenas 88 Register How to withdraw 90 jili club philippines online Jili free 100 php no deposit bonus philippines Jili com casino register Minecraft Crazy games Mitran de boot remix mp3 song download 320kbps Anjeer Dry fruit tg777 customer service 24/7 Arat365 com login Apps na pwedeng kumita ng pera legit 9k slot Casino Jili 8888 download for android William Hill live Tesla jili login philippines 啶す啶苦啶︵啶班ぞ 啶溹啶む x7-16 啶啶侧啶? Okada Online Casino download ios Lucky Neko demo play Jili lucky download for pc Original Buffalo wings recipe 777 jili Casino real money Betsson Group Glassdoor 40 jili casino login philippines app 777ku login App Byu jili register download Yesjili com login philippines Jackpot fishing game real money Ubet95 app apk 888 casino app store download Betway zambia online live sports betting download jili 80 iRich kh free download Mga nakakatawang palaro Top online slots online lucky 777 slot game download 50 deposit game online 49 jili games Online casino game with real money Freeplay Casino no deposit bonus Jili 646 777 login register philippines link Kk jili login register online philippines Anti epidemic online casino gcash login Gold 168 Casino login Royal777 register JILI6 promo code Philippines Lodislot 777 casino online real money Ijility maumelle ar Mnl168 download for android Bet 888 login philippines Boeing Secure Login 188 JILI Casino login Jili asya download Mr joker Photo Dinosaur tycoon jili ios download Jili777 login register Philippines 49 jili games download Wow888one philippines Phl63one philippines Mega Medusa Casino login Win888 casino register online Pldt 777 real money withdrawal solaire online casino games MNL63 free 100 No Deposit Jili caishen casino irich slots&games casino 777 Free slots poker online real money Casinos online for real money philippines Royal Club login app download free Online casino free real money DO888 online casino JILI188 app Charge buffalo jili download free Jili free 100 no turnover philippines no deposit bonus Gogosolot online Casino Login Superjilli ph Jili365 bet login sign up philippines Jili x super ace download 5 jili casino login register online Lolliplay login no deposit bonus Pldt jili slot download ios New online casino free chip no deposit Is transaction password and atm pin same sbi mega joker spielautomat Baccarat Strategy book Sweet Bonanza Candyland live Jili 337 withdrawal fee Baccarat Evolution Jili games download for pc slots with real money online 5jl Casino Login Super Ace slot demo SWERTRES sureball hearing today Philippines youtube Jili big win login register Online casino games no deposit free spins philippines Top online slots online lucky 777 slot game download Big baller Club info login Non working holiday Pasig 45 days from july 9, 2024 777 10 jili casino register download jackpot giant slot 90 jili register download JL777 Casino Tp777 com login register mobile Casino tr c tuy n login Gogo jili app download apk mod Legends Slot Bingo JILI 52 Club APK Jilievo888 com login register online Lucky jili real money 888bets mozambique app download Happy jackpot slots Fairground Slots no deposit bonus Wild ace demo download New Vegas slots luck Casino mania bonus Huff and more Puff slot machine for sale baccarat game how to play Jili ph register online Jolibet withdrawal Football teams Premier League sissi slot machine free play Jili vip login register philippines download app ios Transaction password in tagalog example brainly Play free casino games online without downloading for android ELK casino games Libreng computer video poker download Winph6aa philippines Jlbetslot 49 jili casino slots login Jili app casino download apk for android Mnl168 online casino register philippines apk Jili 80 login register Jili free withdrawal app Maaari ba tayong maglaro ng monopoly online play SYNOT Interactive Playzone cashback labet88.com app Jili49 login register Jili asia com casino login download Gold slots casino sa facebook login Jili balita withdrawal fee Gamezy Rummy Jili day register online 90jili game club download PH Macao game 777sky casino philippines Ibetph web casino Best online casino games philippines gcash 247 slots login Elf bingo jili online registration Funny captions for online casino games 777 lucky slot no deposit bonus OKBet App download apk Z25 Gaming P88 jili login app Jili77win philippines DuckyLuck Casino Ttjl casino link app 55jili login Cali 777 com login password LIMBO APK download latest version 200jili login philippines 646 jili 01 login app FB JILI Login Golden Wealth Baccarat live Panaloka login registration Tala0888 download apk GemDisco Login register Lion dance history Ezjili login register mobile Royal777 register Jili 337 login register philippines download Fishing era poppo How to play jackpot fishing app Libreng jili games login Swerte ng buto 77ph1 com login password How do i install tongits go on android Joy jili casino login register philippines free chips Slot machine 777 login Jili online slot apk Jili ko o casino login register APK injector Slot Pragmatic Play Gogo JILI Casino login 50 minimum Z790 ram slots for gaming Tongits Go update download How to compute special non working holiday Philippines 777 Casino 77 free spins login MWGAMING Login Password How to play taya 777 online How does Lee Young ji know English Phdream88 login app 63jili download ios ME777 Casino Login Philippines Baba Slots online casinoplusslot How to play jili super ace online Unibet sign up bonus 60 jili login download no deposit bonus Philippine online casino no deposit bonus pxbetgamingslot Online casino games that pay real money no deposit 49jili flag login password Jili 2024 login register Paano maglaro ng jili super ace login download Vip jili login philippines app Jili bingo download for android 9Y game City Jili jackpot lucky casino real money no deposit bonus Easy money jackpot fishing philippines Casino free games slots machine no deposit Slots7 Casino free spins Winjili ph login registration Jili games free 100 download apk Jiliplay999 com login Hot chilli megaways review Jili games apk latest version ang mga slot ay nagsusugal Nice 888 login philippines Playzone Casino FC jackpot Casino login Spin jackpot YONO apk Juegos de casino gratis sin descargar ni registrarse Gold slots casino sa facebook withdrawal Jili 168 login registration link Mitran De Junction Te Mp3 Song Download pagalworld Lovejili app for android apk download Helens gogo jili casino login Transaction password in scatter example mainit na jili casino Casino online free credit no deposit How do i install tongits go on iphone Boombet casino 100 JILI casino no deposit bonus Peso88aa philippines Jiliko gcash withdrawal Jili veo login philippines Jili slot game download apk latest version Macau casino online login philippines online casino Katangian ni sita sa rama at sita 49jili login to my account philippines app Forgot transaction password Fg777app download Baccarat in casino online 98 jili casino login register philippines download app Marvelbet apps download apk for android Xo jili app login Speed roulette strategy betway zambia live soccer online casino games Casino 777 lucky jili slots real money yakuza: like a dragon slots high payout token Wild Coaster PG slot Turkish Airlines flights Bet jili app download for iphone Why do slot machines have bingo cards Ez jili code philippines DOUBLE Jackpot Slot MACHINE for sale play free online casino games Bet777 Login app Supabets mobile app download Winning plus 40 apk Play top Dollar slot machine online free no download Jackpot meter jili download apk Plot 777 casino login register link Best time to play jili slot on sunday reddit