Unyson

A WordPress framework that facilitates the development of WP themes

Stars
925
Committers
38

Bot releases are visible (Hide)

Unyson -

Published by over 9 years ago

Unyson -

Published by over 9 years ago

  • Fixed #398
  • Removed option type runnable #399
Unyson -

Published by over 9 years ago

Unyson -

Published by over 9 years ago

Unyson -

Published by over 9 years ago

  • Fixed: Sub-extensions were not loaded #368
  • Fixed: $extension->locate_URI('/...') bug
Unyson -

Published by over 9 years ago

  • Added the possibility to load extensions from any directory

    function _filter_my_plugin_extensions($locations) {
        $locations['/path/to/plugin/extensions'] = 'https://uri.to/plugin/extensions';
        return $locations;
    }
    add_filter('fw_extensions_locations', '_filter_my_plugin_extensions');
    

    Important! Prefix your extension names to prevent conflicts.

  • Removed array_merge($old_opts, $new_opts) from options save #266

  • Tabs, Boxes, Groups, Options are now displayed in the order they are in array (not grouped) #319

  • Option type multi-picker fixes #296

  • Added the possibility to use custom framework-customizations directory name #276

  • Minor fixes

Unyson -

Published by over 9 years ago

  • Fixed qTranslate function name
  • Improved default flash messages display position in frontend
  • Option-type icon: Minor css changes
  • Minor fix on extensions install: The success state was set too early
Unyson -

Published by over 9 years ago

  • Fixed access denied on Theme Settings and Unyson pages when qTranslate is active
  • Made all boxes open when Theme Settings Side Tabs is active (with default tabs only first box is open)
  • Minor fixes
Unyson -

Published by over 9 years ago

  • Improved modal sizes (Set max-width,max-height pixels instead of top,right,bottom,left percents)

  • Added side tabs styles for Theme Settings page.

    To enable, add in {theme}/framework-customizations/theme/config.php

    $cfg['settings_form_side_tabs'] = true;
    
Unyson -

Published by over 9 years ago

  • Added javascript helper fw.soleModal()

  • Added framework/static/js/fw-form-helpers.js

  • Minor fixes

  • Theme Settings form ajax submit #198

    To disable, add in {theme}/framework-customizations/theme/config.php

    $cfg['settings_form_ajax_submit'] = false;
    
Unyson -

Published by over 9 years ago

Made the forms and mailer extensions hidden.

Unyson -

Published by over 9 years ago

  • Added warning on Theme Settings reset ^
  • FW_Form: Form attributes can be changed in the render method
  • Option type slider and range-slider fixes #210
  • Option type typography: Added filter on standard fonts #212
  • Option type radio and checkboxes: Added inline parameter #216
  • Minor internal fixes
Unyson -

Published by over 9 years ago

  • Option type icon: Updated Font Awesome to 4.3.0
  • Option type typography fixes #195
  • Improved hidden standalone extensions auto activation #203
  • Fixed nested array detection in options array #204
  • Do not save the options when the "Reset" button was pressed on the Theme Settings page #197
Unyson -

Published by over 9 years ago

  • Added the FW_WP_List_Table class
  • Option type multi-picker: added support for short-select
  • Option type slider and range-slider design fixes
  • Extension activation fix: Some required extensions were not added for activation
  • Fixed wrong $data['value'] in FW_Option_Type::_render() when form validation fails #188
  • Increase timeout on extensions install #183
Unyson -

Published by almost 10 years ago

Added the possibility to create a link to an extension settings page

fw()->extensions->manager->get_extension_link('{extension-name}')
Unyson -

Published by almost 10 years ago

  • Added the "Reset" button on the Theme Settings page
  • Minor internal fixes
Unyson -

Published by almost 10 years ago

Minor fix for extension download link

Unyson -

Published by almost 10 years ago

Fixed extension download link to not make a request to Github API

Unyson -

Published by almost 10 years ago

Make requests to custom Github API Cache service to prevent Github API rate limit exceeded error #138

Unyson -

Published by almost 10 years ago

  • New extensions: Forms (Contact Forms), Mailer, Social
  • Added option type rgba-color-picker
  • Split the slider option-type into slider and range-slider
  • Internal fixes and improvements