Title: Ryan's Replies | WordPress.org

---

# Ryan

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/users/updraft/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/updraft/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Max Addons for Bricks Builder] Gravity Forms Styler: radio/checkbox options typography](https://wordpress.org/support/topic/gravity-forms-styler-radio-checkbox-options-typography/)
 *  Thread Starter [Ryan](https://wordpress.org/support/users/updraft/)
 * (@updraft)
 * [3 weeks, 5 days ago](https://wordpress.org/support/topic/gravity-forms-styler-radio-checkbox-options-typography/#post-18882544)
 * Hi [@simrandeep](https://wordpress.org/support/users/simrandeep/)
 * Separate would be fantastic. But, even a single option for both is better than
   nothing.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Max Addons for Bricks Builder] Gravity Forms submit button icon?](https://wordpress.org/support/topic/gravity-forms-submit-button-icon/)
 *  Thread Starter [Ryan](https://wordpress.org/support/users/updraft/)
 * (@updraft)
 * [1 month ago](https://wordpress.org/support/topic/gravity-forms-submit-button-icon/#post-18877473)
 * I can use CSS as a workaround, if necessary, but was trying to avoid that.
 * What about using the `gform_submit_button` filter and changing the markup from
   an `<input>` to a `<button>` and inserting the icon HTML? 
   See the first example
   in their doc:[https://docs.gravityforms.com/gform_submit_button/](https://docs.gravityforms.com/gform_submit_button/)
 * **Another Option**
   The Field Icons for Gravity Forms plugin can apparently add
   an icon to the submit button: [https://wpmonks.com/blog/how-to-add-font-awesome-icon-to-gravity-forms-submit-button/](https://wpmonks.com/blog/how-to-add-font-awesome-icon-to-gravity-forms-submit-button/)
    -  This reply was modified 1 month ago by [Ryan](https://wordpress.org/support/users/updraft/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Max Addons for Bricks Builder] Submit button styling doesn’t work with inline submit button](https://wordpress.org/support/topic/submit-button-styling-doesnt-work-with-inline-submit-button/)
 *  Thread Starter [Ryan](https://wordpress.org/support/users/updraft/)
 * (@updraft)
 * [8 months, 2 weeks ago](https://wordpress.org/support/topic/submit-button-styling-doesnt-work-with-inline-submit-button/#post-18619852)
 * I can confirm it is working now. Thank you for the quick fix!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce Admin] Refunds not working in Categories and Products](https://wordpress.org/support/topic/refunds-not-working-in-categories-and-products/)
 *  Thread Starter [Ryan](https://wordpress.org/support/users/updraft/)
 * (@updraft)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/refunds-not-working-in-categories-and-products/#post-12456520)
 * We may have found the cause of this issue. It seems if the refund quantity field
   is left blank when issuing a refund, then the refund is not included in the “
   Products” and “Categories” analytics screens.
 * [Screenshot](https://drive.google.com/file/d/1W5yFj4IxqWyfG9oyHZggkkbTcQExNuvv/view?usp=sharing)
 * That makes sense, I guess, since the refund is not associated with a product.
   But I think it should default to 1 or trigger an error when quantity is left 
   blank to avoid user error.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce Admin] Refunds not working in Categories and Products](https://wordpress.org/support/topic/refunds-not-working-in-categories-and-products/)
 *  Thread Starter [Ryan](https://wordpress.org/support/users/updraft/)
 * (@updraft)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/refunds-not-working-in-categories-and-products/#post-12433385)
 * Thanks for the reply [@nixiack8](https://wordpress.org/support/users/nixiack8/).
   It looks like all of your screenshots are from the old Reports in Woocommerce.
   I’m referring to the new “Analytics” that is part of this WooCommerce Admin plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Stencil] stencil-admin.js loads on frontend](https://wordpress.org/support/topic/stencil-admin-js-loads-on-frontend/)
 *  Thread Starter [Ryan](https://wordpress.org/support/users/updraft/)
 * (@updraft)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/stencil-admin-js-loads-on-frontend/#post-11782882)
 * [@mikesale](https://wordpress.org/support/users/mikesale/) – I ended up having
   to do something like the following to dequeue the scripts:
 *     ```
       add_action( 'wp_print_styles', 'dequeue_scripts', 1000 );
       add_action( 'get_footer', 'dequeue_scripts', 1000 );
       function dequeue_scripts() {
         // If not in admin and current user cannot upload files, dequeue Stencil javascript.
         if( !is_admin() && !current_user_can('upload_files') ) {
           wp_dequeue_script( 'stencil' );
           wp_dequeue_style( 'stencil' );
         }
       }
       ```
   
 * And yes, that’s using the `wp_print_styles` and `get_footer` action hooks. I 
   realize that’s not typically how you dequeue scripts but due to how this plugin
   enqueues scripts using both of those hooks was the only way I could find to completely
   prevent Stencil from loading.
 * Hope this helps you out.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Stencil] stencil-admin.js loads on frontend](https://wordpress.org/support/topic/stencil-admin-js-loads-on-frontend/)
 *  Thread Starter [Ryan](https://wordpress.org/support/users/updraft/)
 * (@updraft)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/stencil-admin-js-loads-on-frontend/#post-11679953)
 * But if the user is not logged in or doesn’t have the WP capabilities to access
   the media library, there shouldn’t be a need to load scripts.
 * How do I dequeue the scripts and styles added by your plugin?
 * This is not working:
 *     ```
       add_action( 'admin_print_scripts', 'my_dequeue_scripts', 1000 );
       function my_dequeue_scripts() {
       	wp_dequeue_script( 'stencil' );
       	wp_dequeue_style( 'stencil' );
       }
       ```
   
 * I tried the following action hooks and none worked:
 * `admin_print_scripts`
    `admin_enqueue_scripts` `wp_print_scripts` `wp_enqueue_scripts`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pods - Custom Content Types and Fields] location and proximity](https://wordpress.org/support/topic/location-and-proximity/)
 *  [Ryan](https://wordpress.org/support/users/updraft/)
 * (@updraft)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/location-and-proximity/#post-5145644)
 * Hey Josh, when you say
 * > “what I should have done is add a filter for location source to the Proximity
   > Facet”
 * do you mean using the `facetwp_index_row` filter as [documented here](https://facetwp.com/add-ons/proximity/)?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pods - Custom Content Types and Fields] Please Do Not Bump Repeated Fields Again!](https://wordpress.org/support/topic/please-do-not-bump-repeated-fields-again/)
 *  [Ryan](https://wordpress.org/support/users/updraft/)
 * (@updraft)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/please-do-not-bump-repeated-fields-again/#post-4585401)
 * Are repeatable fields still on track? I see Pods 2.5 is in beta but haven’t seen
   anything about repeatable fields being in that version.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Janrain Social Login] Insert Janrain Engage into WordPress Theme?](https://wordpress.org/support/topic/insert-janrain-engage-into-wordpress-theme/)
 *  [Ryan](https://wordpress.org/support/users/updraft/)
 * (@updraft)
 * [14 years, 10 months ago](https://wordpress.org/support/topic/insert-janrain-engage-into-wordpress-theme/#post-2181497)
 * Oops, made a mistake in that code. It should be:
 * `<?php echo do_shortcode('[rpxlogin redirect="http://www.janrain.com" prompt="
   Authenticate!" style="large"]'); ?>`
 * using the example rpxlogin shortcode.
 * And I can confirm that it does in fact work.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Janrain Social Login] Insert Janrain Engage into WordPress Theme?](https://wordpress.org/support/topic/insert-janrain-engage-into-wordpress-theme/)
 *  [Ryan](https://wordpress.org/support/users/updraft/)
 * (@updraft)
 * [14 years, 10 months ago](https://wordpress.org/support/topic/insert-janrain-engage-into-wordpress-theme/#post-2181462)
 * `<?php do_shortcode('[enter-shortcode-here]'); ?>`
    Might work. Just add that
   to your theme template.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SimpleModal Login] SimpleModal Login is redirecting me to the standard login page](https://wordpress.org/support/topic/simplemodal-login-is-redirecting-me-to-the-standard-login-page/)
 *  [Ryan](https://wordpress.org/support/users/updraft/)
 * (@updraft)
 * [14 years, 10 months ago](https://wordpress.org/support/topic/simplemodal-login-is-redirecting-me-to-the-standard-login-page/#post-2143153)
 * I’m having a similar problem with the DirectoryPress theme from PremiumPress.
   I’ve deactivated all other plugins and still not working. Any suggestions?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type UI] [Plugin: Custom Post Type UI] with_front property](https://wordpress.org/support/topic/plugin-custom-post-type-ui-with_front-property/)
 *  [Ryan](https://wordpress.org/support/users/updraft/)
 * (@updraft)
 * [15 years ago](https://wordpress.org/support/topic/plugin-custom-post-type-ui-with_front-property/#post-1723129)
 * I would also very much like to see with_front implemented.
    Hey Brad, can we 
   get an update on if/when it will be added to the Custom Post Type UI plugin?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Children, Parents, Custom Menu](https://wordpress.org/support/topic/children-parents-custom-menu/)
 *  [Ryan](https://wordpress.org/support/users/updraft/)
 * (@updraft)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/children-parents-custom-menu/#post-1695818)
 * Looks like you have this working. Would you mind posting the code you used? I’d
   like to do something similar.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Anyone know how to synchronize users across multiple installs?](https://wordpress.org/support/topic/anyone-know-how-to-synchronize-users-across-multiple-installs/)
 *  [Ryan](https://wordpress.org/support/users/updraft/)
 * (@updraft)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/anyone-know-how-to-synchronize-users-across-multiple-installs/#post-1320829)
 * Hey TruSktr,
 * Did you ever figure this out? I’m wondering how to do this as well. Anyone know
   of a plugin or other solution?

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/users/updraft/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/updraft/replies/page/2/?output_format=md)