Title: simplistik's Replies | WordPress.org

---

# simplistik

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/simplistik/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/simplistik/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/simplistik/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/simplistik/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/simplistik/replies/page/7/?output_format=md)
[→](https://wordpress.org/support/users/simplistik/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Stream] Stream W3 Total Cache/New Relic "breaks" Stream](https://wordpress.org/support/topic/stream-w3-total-cachenew-relic-breaks-stream/)
 *  Thread Starter [simplistik](https://wordpress.org/support/users/simplistik/)
 * (@simplistik)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/stream-w3-total-cachenew-relic-breaks-stream/#post-4672743)
 * [No, but I’ll do that now.](http://wordpress.org/support/topic/w3-total-cache-new-relic-stream?)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Request: Hooking the cell contents](https://wordpress.org/support/topic/request-hooking-the-cell-contents/)
 *  Thread Starter [simplistik](https://wordpress.org/support/users/simplistik/)
 * (@simplistik)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/request-hooking-the-cell-contents/#post-4398471)
 * I didn’t have any intentions of adding it as a plugin.
 * I’m actually using Parsedown [http://parsedown.org/](http://parsedown.org/) to
   do all the heavy markdown lifting (seems to be the most consistent one). So the
   implementation of it is very simple: [https://gist.github.com/simplistik/7901838](https://gist.github.com/simplistik/7901838)
 * I’ve cut out everything that wasn’t necessary, but that is literally how the 
   implementation is happening, and obviously the include path is subject to the
   user’s directory structure.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Request: Hooking the cell contents](https://wordpress.org/support/topic/request-hooking-the-cell-contents/)
 *  Thread Starter [simplistik](https://wordpress.org/support/users/simplistik/)
 * (@simplistik)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/request-hooking-the-cell-contents/#post-4398461)
 * Thanks for the fast response. I get what you’re sayin about the speed issue completely
   understandable. The solution you provided actually works, for some reason it 
   never crossed my mind that the to do a search within the text.
 * For anyone else looking for a similar solution this is the concept being used:
 *     ```
       add_filter('tablepress_cell_content',  'process_markdown');
   
       function process_markdown($text)
       {
           if ( in_array($text, array('#colspan#', '#rowspan#', '#span#')) ) return $text;
   
           $markdown = markdown($text);
   
           return $markdown;
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Extreme newbie – Having trouble with Advanced Custom Fields](https://wordpress.org/support/topic/extreme-newbie-having-trouble-with-advanced-custom-fields/)
 *  [simplistik](https://wordpress.org/support/users/simplistik/)
 * (@simplistik)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/extreme-newbie-having-trouble-with-advanced-custom-fields/#post-4302198)
 * More than likely means it’s hard coded into the page theme and isn’t dynamically
   sync’d with the value in ACF.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Suddenly Cannot Add Image!!](https://wordpress.org/support/topic/suddenly-cannot-add-image/)
 *  [simplistik](https://wordpress.org/support/users/simplistik/)
 * (@simplistik)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/suddenly-cannot-add-image/#post-4301817)
 * Disable all your plugins and activate a default theme and see if you’re still
   not able to upload images.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Login Template of wp-login](https://wordpress.org/support/topic/login-template-of-wp-login/)
 *  [simplistik](https://wordpress.org/support/users/simplistik/)
 * (@simplistik)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/login-template-of-wp-login/#post-4301298)
 * [http://codex.wordpress.org/Plugin_API/Action_Reference/login_form](http://codex.wordpress.org/Plugin_API/Action_Reference/login_form)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Cannot save the latest changes](https://wordpress.org/support/topic/cannot-save-the-latest-changes/)
 *  [simplistik](https://wordpress.org/support/users/simplistik/)
 * (@simplistik)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/cannot-save-the-latest-changes/#post-4190388)
 * Does it work when you activate a default theme without any plugins activated?
   I’d try that first and then work from there. If it works then I’d activate your
   theme, see if it’s the theme that causing the error, still with no plugins active.
   And if that works, then start activating plugins and see which one is hosing 
   your stuff.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WP_DEBUG not showing errors](https://wordpress.org/support/topic/wp_debug-not-showing-errors-2/)
 *  [simplistik](https://wordpress.org/support/users/simplistik/)
 * (@simplistik)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/wp_debug-not-showing-errors-2/#post-4190381)
 *     ```
       define('WP_DEBUG_DISPLAY', true);
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How make email not mandatory](https://wordpress.org/support/topic/how-make-email-not-mandatory/)
 *  [simplistik](https://wordpress.org/support/users/simplistik/)
 * (@simplistik)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/how-make-email-not-mandatory/#post-4190378)
 * I agree. But the concept in it’s rawest form is just to assign email addresses
   associated to your own website, that will never be used to each user :).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How make email not mandatory](https://wordpress.org/support/topic/how-make-email-not-mandatory/)
 *  [simplistik](https://wordpress.org/support/users/simplistik/)
 * (@simplistik)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/how-make-email-not-mandatory/#post-4190372)
 * So you have your own site right, let say the name of your site is “mysite.com”
   well since you control the email addresses associated w/ “mysite.com” you should
   be able to just randomly create an email address that you’d never actually create
   on your server so something like [rXYNhk4y@mysite.com](https://wordpress.org/support/users/simplistik/replies/rXYNhk4y@mysite.com?output_format=md)
   would never be an actual email address.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How make email not mandatory](https://wordpress.org/support/topic/how-make-email-not-mandatory/)
 *  [simplistik](https://wordpress.org/support/users/simplistik/)
 * (@simplistik)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/how-make-email-not-mandatory/#post-4190359)
 * just give them arbitrary emails. since emails aren’t important for your setup
   it shouldn’t matter if they’re gibberish.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type Maker] $wp_rewrite->flush_rules() needs to be removed](https://wordpress.org/support/topic/wp_rewrite-flush_rules-needs-to-be-removed/)
 *  Thread Starter [simplistik](https://wordpress.org/support/users/simplistik/)
 * (@simplistik)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/wp_rewrite-flush_rules-needs-to-be-removed/#post-4178126)
 * Fortunately anything that calls from the options table isn’t dependent on the
   id, so you can actually “dump” your options table and recreate it. I put together
   this relatively easy workflow for my company to fix the inflated increment.
 * 1. Save your DB. Personally, you can just save the wp_options (or whatever you’ve
   prefixed it with).
    2. **Completely Optional:** I recommend just removing any
   transient data from the DB, since it’s all temporary and won’t affect your site,
   you can do that by running this MySQL query:
 *     ```
       DELETE FROM wp_options WHERE option_name LIKE '%transient%';
       ```
   
 * 3. Run this MySQL query which will re-increment your table:
 *     ```
       SET @count = 0;
       UPDATE wp_options SET option_id = @count:= @count + 1;
       ```
   
 * 4. Reset the options increment, run this MySQL query:
 *     ```
       ALTER TABLE wp_options AUTO_INCREMENT = 1;
       ```
   
 * _**Note:**_ wp_options might (should) change depending on what you’ve prefixed
   your tables with.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Post Type Maker] $wp_rewrite->flush_rules() needs to be removed](https://wordpress.org/support/topic/wp_rewrite-flush_rules-needs-to-be-removed/)
 *  Thread Starter [simplistik](https://wordpress.org/support/users/simplistik/)
 * (@simplistik)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/wp_rewrite-flush_rules-needs-to-be-removed/#post-4177940)
 * Good job man, thanks for the timely response 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Featured image stops working with WP 3.5](https://wordpress.org/support/topic/featured-image-stops-working-with-wp-35/)
 *  [simplistik](https://wordpress.org/support/users/simplistik/)
 * (@simplistik)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/featured-image-stops-working-with-wp-35/#post-3266156)
 * That’s not the solution people are looking for racastro. It’s not an issue of
   displaying the image on the front-end, it’s an issue of when you press “Set featured
   issue” on the back-end it doesn’t allow you to select your image out of the NextGEN
   gallery.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can't change the link hover color from black!](https://wordpress.org/support/topic/cant-change-the-link-hover-color-from-black/)
 *  [simplistik](https://wordpress.org/support/users/simplistik/)
 * (@simplistik)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/cant-change-the-link-hover-color-from-black/#post-3121100)
 * style-light.css and page.css are stylesheets … not pages.
 * #eee is getting overridden by the background image sprite, the position of the
   sprite is what is affecting the color of the navigation.

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

1 [2](https://wordpress.org/support/users/simplistik/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/simplistik/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/simplistik/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/simplistik/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/simplistik/replies/page/7/?output_format=md)
[→](https://wordpress.org/support/users/simplistik/replies/page/2/?output_format=md)