Title: webcomm's Replies | WordPress.org

---

# webcomm

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [In the site editor, how can I add a link to the post inside a block?](https://wordpress.org/support/topic/in-the-site-editor-how-can-i-add-a-link-to-the-post-inside-a-block/)
 *  Thread Starter [webcomm](https://wordpress.org/support/users/webcomm/)
 * (@webcomm)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/in-the-site-editor-how-can-i-add-a-link-to-the-post-inside-a-block/#post-18266428)
 * Twenty Twenty-Five
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [In the site editor, how can I add a link to the post inside a block?](https://wordpress.org/support/topic/in-the-site-editor-how-can-i-add-a-link-to-the-post-inside-a-block/)
 *  Thread Starter [webcomm](https://wordpress.org/support/users/webcomm/)
 * (@webcomm)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/in-the-site-editor-how-can-i-add-a-link-to-the-post-inside-a-block/#post-18265445)
 * I decided to stop using the Site Editor and instead used [https://underscores.me](https://underscores.me)
   to generate a starter theme. It’s dramatically easier for me to customize the
   resulting starter theme in code, compared with using the Site Editor GUI.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [After upgrade, I can no longer change user roles or passwords](https://wordpress.org/support/topic/after-upgrade-i-can-no-longer-change-user-roles-or-passwords/)
 *  Thread Starter [webcomm](https://wordpress.org/support/users/webcomm/)
 * (@webcomm)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/after-upgrade-i-can-no-longer-change-user-roles-or-passwords/#post-9555732)
 * Thank you ThemesGrove. That was it. The problem is the result of an old CRM plugin
   called PauPress, more recently renamed PressPoint. I’ll have to check with the
   site owner to see if they want to try upgrading the plugin to a more recent version.
   The older version of the plugin is no longer compatible with recent WP releases.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Autoptimize] Disable Autoptimize for logged-in users / development mode](https://wordpress.org/support/topic/disable-autoptimize-for-logged-in-users/)
 *  [webcomm](https://wordpress.org/support/users/webcomm/)
 * (@webcomm)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/disable-autoptimize-for-logged-in-users/#post-8939529)
 * “what is the best way to put this great plugin into development mode”
 * For local development, in your wp-config-local.php, you can explicitly set the
   $_GET value like so…
 *     ```
       // Disable autoptimize for local development.
       $_GET['ao_noptimize'] = '1';
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[JM Twitter Cards] Warning: Illegal string offset 'twitterImage'](https://wordpress.org/support/topic/warning-illegal-string-offset-twitterimage/)
 *  [webcomm](https://wordpress.org/support/users/webcomm/)
 * (@webcomm)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/warning-illegal-string-offset-twitterimage/#post-8623697)
 * FYI, I was seeing very similar errors in my log today with the 7.7 version of
   the plugin. This is in WP 4.6.1.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to migrate away from godaddy](https://wordpress.org/support/topic/how-to-migrate-away-from-godaddy/)
 *  Thread Starter [webcomm](https://wordpress.org/support/users/webcomm/)
 * (@webcomm)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/how-to-migrate-away-from-godaddy/#post-8535470)
 * Thanks. I discovered that there are godaddy-related mu (“must use”) plugins. 
   I wasn’t familiar with this concept of mu plugins. By renaming the mu-plugins
   directory to mu-plugins_SAVE, I have deactivated the godaddy-related plugins.
   I will have to continue to experiment to see if this causes problems with the
   site.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [wp_query for select field with multiple values?](https://wordpress.org/support/topic/wp_query-for-select-field-with-multiple-values/)
 *  Thread Starter [webcomm](https://wordpress.org/support/users/webcomm/)
 * (@webcomm)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/wp_query-for-select-field-with-multiple-values/#post-6554159)
 * Here’s the solution, which I find quite strange:
 *     ```
       $args = array(
       	'posts_per_page' => 3,
       	'meta_query' => array(
       		'relation' => 'OR',
       		array(
       			'key' => 'myfieldname',
       			'value' => 'myvalue',
       			'compare' => 'LIKE',
       		),
       	),
       );
       $query = new WP_Query($args);
       var_dump($query->have_posts());
       ```
   
 * Surprisingly unintuitive that “LIKE” would be used here. One would definitely
   not use a LIKE query if coding something like this from scratch with PHP/MySQL.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [add_editor_style not working](https://wordpress.org/support/topic/add_editor_style-not-working/)
 *  Thread Starter [webcomm](https://wordpress.org/support/users/webcomm/)
 * (@webcomm)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/add_editor_style-not-working/#post-6461948)
 * Actually, I’ve realized the code works. I just didn’t think it was working, because
   the editor-styles.css is not referenced in the head in the usual way, but instead
   appears only in the tinyMCEPreInit settings.
 * This is all that’s needed:
 *     ```
       add_editor_style('editor-style.css');
       ```
   
 * Along with the editor-style.css file itself.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Twitter] How to get just twitter feed elements?](https://wordpress.org/support/topic/how-to-get-just-twitter-feed-elements/)
 *  [webcomm](https://wordpress.org/support/users/webcomm/)
 * (@webcomm)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/how-to-get-just-twitter-feed-elements/#post-6205989)
 * Hm. So, there’s no way to simply pull some tweets from an account using this 
   plugin? Is there another plugin you recommend for that purpose, or should I use
   the API?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [CSS changes require refreshing browser 4-10 times](https://wordpress.org/support/topic/css-changes-require-refreshing-browser-4-10-times/)
 *  Thread Starter [webcomm](https://wordpress.org/support/users/webcomm/)
 * (@webcomm)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/css-changes-require-refreshing-browser-4-10-times/#post-6269238)
 * RESOLVED, sort of:
    It’s a compass issue. The terminal makes it look like compass
   is changing the CSS files right away, but it isn’t. It takes several seconds.
   I’ve not seen compass work so slowly before this.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [captcha for 2.9.2](https://wordpress.org/support/topic/captcha-for-292/)
 *  Thread Starter [webcomm](https://wordpress.org/support/users/webcomm/)
 * (@webcomm)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/captcha-for-292/#post-1534940)
 * My issue has been resolved. It was a permissions problem on the server. The plugin
   is working.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [captcha for 2.9.2](https://wordpress.org/support/topic/captcha-for-292/)
 *  Thread Starter [webcomm](https://wordpress.org/support/users/webcomm/)
 * (@webcomm)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/captcha-for-292/#post-1534912)
 * Also of note, I’m getting a “you do not have sufficient privileges” page when
   I click on the settings link for this plugin. This despite being logged in as
   an admin. I don’t get that message when I click on the settings links for other
   plugins.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [captcha for 2.9.2](https://wordpress.org/support/topic/captcha-for-292/)
 *  Thread Starter [webcomm](https://wordpress.org/support/users/webcomm/)
 * (@webcomm)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/captcha-for-292/#post-1534911)
 * Here’s a page with a comment form:
    [http://www.funeralprogram-site.com/blog/customer-testimonials/](http://www.funeralprogram-site.com/blog/customer-testimonials/)
 * The plugin is currently deactivated, but here’s what the captcha HTML looks like
   when it’s activated: [http://pastebin.com/YDAThvT1](http://pastebin.com/YDAThvT1)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [captcha for 2.9.2](https://wordpress.org/support/topic/captcha-for-292/)
 *  Thread Starter [webcomm](https://wordpress.org/support/users/webcomm/)
 * (@webcomm)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/captcha-for-292/#post-1534874)
 * I installed Mike’s SI Captcha. The captcha interface is showing on my comment
   forms, but the captcha image isn’t showing up. The image looks like what you 
   get in a browser when the img src is incorrect.
 * I am running PHP 5.2.9. GD is enabled. phpinfo() says the GD version is “bundled(
   2.0.34 compatible)”. The FreeType version is 2.2.1. Everything in the GD section
   of the phpinfo is enabled.
 * Any ideas why the image doesn’t show up?
 * Thank you!
    Ryan
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Prevent drafts from publishing in RSS feed](https://wordpress.org/support/topic/prevent-drafts-from-publishing-in-rss-feed/)
 *  [webcomm](https://wordpress.org/support/users/webcomm/)
 * (@webcomm)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/prevent-drafts-from-publishing-in-rss-feed/#post-975104)
 * To answer my own question… looks like this has been fixed. It’s not a problem
   in 2.8.4.

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

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