Title: bahead's Replies | WordPress.org

---

# bahead

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Is there a picture caption fix for 4.9 yet?](https://wordpress.org/support/topic/is-there-a-picture-caption-fix-for-4-9-yet/)
 *  [bahead](https://wordpress.org/support/users/bahead/)
 * (@bahead)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/is-there-a-picture-caption-fix-for-4-9-yet/#post-9722036)
 * I had the same problem. Until there’s a patch, you can edit media.php in /wp-
   includes and change line 1566 from:
 * `. do_shortcode( $content ) . '<figcaption class="wp-caption-text" >' . $atts['
   caption'] . '</figcaption></figure>';`
 * to
 * `. do_shortcode( $content ) . '<figcaption class="wp-caption-text" ' . $style.'
   >' . $atts['caption'] . '</figcaption></figure>';`
 * By inserting $style in the caption, you are inserting the same max-width variable
   into figcaption that is used in figure. Previously, figcaption inherited the “
   width” attribute from figure, but it does not inherit the new “max-width” attribute
   from figure.
 * IMO, this was very poor testing on the part of WP developers, who always seem
   to be in a rush to issue an update without conducting enough QC.
    -  This reply was modified 8 years, 8 months ago by [bahead](https://wordpress.org/support/users/bahead/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Heartbeat Control] v1.2: How do you set the frequency on](https://wordpress.org/support/topic/v1-2-how-do-you-set-the-frequency-on/)
 *  [bahead](https://wordpress.org/support/users/bahead/)
 * (@bahead)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/v1-2-how-do-you-set-the-frequency-on/page/2/#post-9670883)
 * [@jeffmatson](https://wordpress.org/support/users/jeffmatson/) I think I’ve isolated
   the problem. If I disable line 30 in settings.php:
 * `wp_register_style( 'slider_ui', '//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/
   themes/smoothness/jquery-ui.min.css', array(), '1.0' );`
 * the slider appears. I have at least one other plugin already using jquery-ui.
   min.css. A quick search shows Contact Form 7 is already loading it.
 * I have not tested the impact of disabling line 30 but I can confirm that doing
   so displays the slider and allows me to adjust the setting.
    -  This reply was modified 8 years, 9 months ago by [bahead](https://wordpress.org/support/users/bahead/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Heartbeat Control] v1.2: How do you set the frequency on](https://wordpress.org/support/topic/v1-2-how-do-you-set-the-frequency-on/)
 *  [bahead](https://wordpress.org/support/users/bahead/)
 * (@bahead)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/v1-2-how-do-you-set-the-frequency-on/#post-9670753)
 * [@bharatk](https://wordpress.org/support/users/bharatk/) Yes, I said the “generated
   code”. Some other code is hiding the slider. My guess is the maybeHideFrequency
   function in bundle.js, but why this is happening only for me (apparently) is 
   probably a collision with some other jquery plugin I have installed, which I 
   suspect is what [@jeffmatson](https://wordpress.org/support/users/jeffmatson/)
   will suggest. I don’t have the time to troubleshoot, so for the time being I’ll
   just manually display the slider to make the adjustment. Or I’ll revert to the
   previous version.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Heartbeat Control] v1.2: How do you set the frequency on](https://wordpress.org/support/topic/v1-2-how-do-you-set-the-frequency-on/)
 *  [bahead](https://wordpress.org/support/users/bahead/)
 * (@bahead)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/v1-2-how-do-you-set-the-frequency-on/#post-9670638)
 * [@bharatk](https://wordpress.org/support/users/bharatk/) Deleting and re-installing
   the plugin had no effect. The slider option is still not displaying. Same in 
   both Chrome and Firefox. No errors in the console. If I inspect the generated
   code, I see:
 * `<div class="cmb-row cmb-type-slider cmb2-id-rules-0-heartbeat-control-frequency
   cmb-repeat-group-field heartbeat_frequency" data-fieldtype="slider" style="display:
   none;">`
 * If I override this in the console by setting display:block, I can force the slider
   to appear and adjust the setting.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Heartbeat Control] v1.2: How do you set the frequency on](https://wordpress.org/support/topic/v1-2-how-do-you-set-the-frequency-on/)
 *  [bahead](https://wordpress.org/support/users/bahead/)
 * (@bahead)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/v1-2-how-do-you-set-the-frequency-on/#post-9668455)
 * I just updated to v1.2.2 and I’m now experiencing the missing slider issue. So
   the fix outlined above doesn’t seem to be the root cause.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to Disable Visual Editor in The Text Widget](https://wordpress.org/support/topic/how-to-disable-visual-editor-in-the-text-widget/)
 *  [bahead](https://wordpress.org/support/users/bahead/)
 * (@bahead)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/how-to-disable-visual-editor-in-the-text-widget/page/2/#post-9235451)
 * Thank goodness I updated to 4.8 on a staging server first. The visual editor 
   on text widgets is buggy as hell. I’m seeing it insert the code for the “Save”
   button for the widget itself:
 * `<span style=”border-radius: 2px; text-indent: 20px; width: auto; padding: 0px
   4px 0px 0px; text-align: center; font: bold 11px/20px ‘Helvetica Neue’,Helvetica,
   sans-serif; color: #ffffff; background: #bd081c no-repeat scroll 3px 50% / 14px
   14px; position: absolute; opacity: 1; z-index: 8675309; display: none; cursor:
   pointer;”>Save</span>
 * Why the devs thought it was a good idea to make a text widget a non-text widget
   is beyond me. It’s a solution looking for a problem. Introduce a rich text widget
   as a new option. This was poorly conceived and implemented IMO. On a side note,
   I find the constant updates to WP problematic. Security updates, yes, but it’s
   becoming a major task to test any new version as WP becomes more and more complicated.
   </ rant>
    -  This reply was modified 9 years, 1 month ago by [bahead](https://wordpress.org/support/users/bahead/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7 Datepicker] Update notice wpcf7_remove_shortcode](https://wordpress.org/support/topic/update-notice-wpcf7_remove_shortcode/)
 *  [bahead](https://wordpress.org/support/users/bahead/)
 * (@bahead)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/update-notice-wpcf7_remove_shortcode/#post-8741586)
 * The developer needs to replace deprecated CF7 tags. Here are the changes I made
   in my version to resolve the errors when WP_DEBUG is enabled.
 * modules\date.php
    Line 32 //$tag = new WPCF7_Shortcode($tag); $tag = new WPCF7_FormTag(
   $tag);
 * Line 150
    // wpcf7_remove_shortcode(‘date’); wpcf7_remove_form_tag(‘date’); Line
   151 // wpcf7_remove_shortcode(‘date*’); wpcf7_remove_form_tag(‘date*’);
 * modules\datetime.php
 * Line 26
    //$tag = new WPCF7_Shortcode($tag); $tag = new WPCF7_FormTag($tag);
 * modules\time.php
    Line 27 //$tag = new WPCF7_Shortcode($tag); $tag = new WPCF7_FormTag(
   $tag);
    -  This reply was modified 9 years, 6 months ago by [bahead](https://wordpress.org/support/users/bahead/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AMP] amp plugin installed but posts with /amp/ are blank](https://wordpress.org/support/topic/amp-plugin-installed-but-posts-with-amp-are-blank/)
 *  [bahead](https://wordpress.org/support/users/bahead/)
 * (@bahead)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/amp-plugin-installed-but-posts-with-amp-are-blank/#post-7100475)
 * Yup, that’s it. If I comment out the is_valid_template check in line 230-233 
   in class-amp-post-template.php, the AMP version renders as expected.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AMP] amp plugin installed but posts with /amp/ are blank](https://wordpress.org/support/topic/amp-plugin-installed-but-posts-with-amp-are-blank/)
 *  [bahead](https://wordpress.org/support/users/bahead/)
 * (@bahead)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/amp-plugin-installed-but-posts-with-amp-are-blank/#post-7100473)
 * I have the same issue, blank AMP pages, and I’m also running on Windows server.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[EWWW Image Optimizer] FastCGI timeout of WP admin plugin page with v2.4.4](https://wordpress.org/support/topic/fastcgi-timeout-with-v244/)
 *  Thread Starter [bahead](https://wordpress.org/support/users/bahead/)
 * (@bahead)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/fastcgi-timeout-with-v244/#post-6241331)
 * Thanks! I updated to the current version and copied over gifsicle.exe from the
   older version. As you suggested, this resolved the issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[EWWW Image Optimizer] FastCGI timeout of WP admin plugin page with v2.4.4](https://wordpress.org/support/topic/fastcgi-timeout-with-v244/)
 *  Thread Starter [bahead](https://wordpress.org/support/users/bahead/)
 * (@bahead)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/fastcgi-timeout-with-v244/#post-6241175)
 * OK, I’ll follow your troubleshooting suggestions when I get a chance and will
   report back. Thanks for the advice, I am aware of the situation with 2003.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[EWWW Image Optimizer] FastCGI timeout of WP admin plugin page with v2.4.4](https://wordpress.org/support/topic/fastcgi-timeout-with-v244/)
 *  Thread Starter [bahead](https://wordpress.org/support/users/bahead/)
 * (@bahead)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/fastcgi-timeout-with-v244/#post-6241157)
 * I’ll give it a try on my dev server. Unfortunately, IIS/FastCGI error logging
   isn’t much help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-DBManager] Bug – problem with MySQL file path on Windows servers?](https://wordpress.org/support/topic/bug-problem-with-mysql-file-path-on-windows-servers/)
 *  Thread Starter [bahead](https://wordpress.org/support/users/bahead/)
 * (@bahead)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/bug-problem-with-mysql-file-path-on-windows-servers/#post-5762919)
 * Also, the plug-in is incorrectly reporting that the Windows back-up folder is
   not writable. The plug-in is able to move index.php and wp-config into the folder(
   which means it’s writable) and the backup is created in the folder (which means
   it’s writable). The plug-in returns the error message “Database Failed To Backup
   On ‘February 7, 2015 @ 8:38 pm’. Backup Folder Not Writable.” despite the fact
   that the backup is created. I can resolve the error message by giving the “Everyone”
   account modify access to the back-up folder but I’m not about to loosen security
   just to make the plug-in stop reporting a false message.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Better WordPress Google XML Sitemaps (support Sitemap Index, Multi-site and Google News)] External Pages Sitemap – How to include links in higher folder?](https://wordpress.org/support/topic/external-pages-sitemap-how-to-include-links-in-higher-folder/)
 *  Thread Starter [bahead](https://wordpress.org/support/users/bahead/)
 * (@bahead)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/external-pages-sitemap-how-to-include-links-in-higher-folder/#post-5000651)
 * I’ll give it a try, thanks for the suggestion.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Better WordPress Google XML Sitemaps (support Sitemap Index, Multi-site and Google News)] External Pages Sitemap – How to include links in higher folder?](https://wordpress.org/support/topic/external-pages-sitemap-how-to-include-links-in-higher-folder/)
 *  Thread Starter [bahead](https://wordpress.org/support/users/bahead/)
 * (@bahead)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/external-pages-sitemap-how-to-include-links-in-higher-folder/#post-5000649)
 * Khang, I see you’ve now released version 1.3.0. Did you look at this issue at
   all? I understand if you didn’t, as it’s not a major problem and from the release
   notes you’ve had more significant improvements to make. But I just thought I’d
   check.

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

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