Title: rysan's Replies | WordPress.org

---

# rysan

  [  ](https://wordpress.org/support/users/rysan/)

 *   [Profile](https://wordpress.org/support/users/rysan/)
 *   [Topics Started](https://wordpress.org/support/users/rysan/topics/)
 *   [Replies Created](https://wordpress.org/support/users/rysan/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/rysan/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/rysan/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/rysan/engagements/)
 *   [Favorites](https://wordpress.org/support/users/rysan/favorites/)

 Search replies:

## Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Custom Fields Repeater & Flexible Content Fields Collapser] ACF PRO 5.2.7 Temporary Fix & Support Delay](https://wordpress.org/support/topic/acf-pro-527-temporary-fix-support-delay/)
 *  [rysan](https://wordpress.org/support/users/rysan/)
 * (@rysan)
 * [11 years ago](https://wordpress.org/support/topic/acf-pro-527-temporary-fix-support-delay/#post-6260301)
 * This fix works on single wordpress installation, but does not work on multisite.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kirki – Freeform Page Builder, Website Builder & Customizer] The !important directive](https://wordpress.org/support/topic/the-important-directive/)
 *  Thread Starter [rysan](https://wordpress.org/support/users/rysan/)
 * (@rysan)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/the-important-directive/#post-6006900)
 * ok. thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kirki – Freeform Page Builder, Website Builder & Customizer] The !important directive](https://wordpress.org/support/topic/the-important-directive/)
 *  Thread Starter [rysan](https://wordpress.org/support/users/rysan/)
 * (@rysan)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/the-important-directive/#post-6006898)
 * How could I add !important directive to color property?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kirki – Freeform Page Builder, Website Builder & Customizer] Export SCSS](https://wordpress.org/support/topic/export-scss/)
 *  Thread Starter [rysan](https://wordpress.org/support/users/rysan/)
 * (@rysan)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/export-scss/#post-6011908)
 * Awesome! Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kirki – Freeform Page Builder, Website Builder & Customizer] Media queries](https://wordpress.org/support/topic/media-queries-6/)
 *  Thread Starter [rysan](https://wordpress.org/support/users/rysan/)
 * (@rysan)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/media-queries-6/#post-6050086)
 * Looking forward to having this option. Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kirki – Freeform Page Builder, Website Builder & Customizer] Conditional controls](https://wordpress.org/support/topic/conditional-controls/)
 *  [rysan](https://wordpress.org/support/users/rysan/)
 * (@rysan)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/conditional-controls/#post-6049004)
 * Show/hide conditions work!
 * Now, how to make so that default value (#000) is applied only if checkbox has
   been ticked?
 *     ```
       $fields[] = array(
               'type'        => 'checkbox',
               'setting'     => 'cta_border_color_on',
               'label'       => __( 'Include Border', 'tourtiger' ),
               'section'     => 'hero_area_cta',
               'default'     => 0,
               'priority'    => 29,
           );
   
           $fields[] = array(
               'type'        => 'color',
               'setting'     => 'cta_border_color',
               'label'       => __( 'Border Color', 'tourtiger' ),
               'section'     => 'hero_area_cta',
               'default'     => '#000',
               'priority'    => 29,
               'required'  =>  array(
                   array(
                       'setting'   =>  'cta_border_color_on',
                       'operator'  =>  '==',
                       'value' =>  1
                   )
               ),
               'output' => array(
                   array(
                   'element'  => '.btn',
                   'property' => 'border-color',
                   ),
               )
           );
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Styles] Export CSS](https://wordpress.org/support/topic/export-css-or-scss/)
 *  Thread Starter [rysan](https://wordpress.org/support/users/rysan/)
 * (@rysan)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/export-css-or-scss/#post-5998123)
 * I just found this article where, down the page, in comments, there are explanations
   about the reason for embedding CSS in the header,
    [https://poststatus.com/styles-plugin-css-customization/](https://poststatus.com/styles-plugin-css-customization/)
 * Initially I was after another idea, and, that is, getting values from Customize
   page and converting them into SCSS. SCSS allows to play with variables for colors,
   background-colors, fonts etc., and that would be handy to get values from Customize
   page and convert them into SCSS variables. One of the possible formats for exporting
   values from Customizer would be JSON. If I got JSON format like this,
    { “selector-
   name”: { “text”:”Helvetica, sans-serif”, “color”: “#ccc” }, “selector-name-2”:{“
   text”:”Helvetica, sans-serif”, “color”: “#000” } } I could convert JSON to SASS
   with this, [https://github.com/vigetlabs/sass-json-vars](https://github.com/vigetlabs/sass-json-vars)
   and then paste converted SASS variables to WordPress using this plugin, [https://wordpress.org/plugins/wp-scss/](https://wordpress.org/plugins/wp-scss/)
   JSON to SASS conversion would be performed on my local machine, and that is a
   drawback. However, I would do this procedure only once in while, and it would
   be intended for production sites.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Styles] Export CSS](https://wordpress.org/support/topic/export-css-or-scss/)
 *  Thread Starter [rysan](https://wordpress.org/support/users/rysan/)
 * (@rysan)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/export-css-or-scss/#post-5998080)
 * I would like to have the ability to enqueue that CSS rather than keep it as embedded
   CSS.

Viewing 8 replies - 1 through 8 (of 8 total)