Title: Using Email Address Encoder with TablePress
Last modified: October 30, 2018

---

# Using Email Address Encoder with TablePress

 *  Resolved [danielbaniel](https://wordpress.org/support/users/danielbaniel/)
 * (@danielbaniel)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/using-email-address-encoder-with-tablepress-2/)
 * Hello, I was wondering if it was possible to encode email addresses that are 
   within a cell in TablePress. The tables are placed on a page within a custom 
   field via shortcode. It works with regular content in the same field, just not
   the TablePress content. I am having trouble figuring out the correct filter hook
   to make it happen. I’ve tried the following:
 * add_filter( the_content, ‘eae_encode_emails’ );
    add_filter(‘acf/load_value’,‘
   eae_encode_emails’); add_filter(‘tablepress_table_output’, ‘eae_encode_emails’);
 * Is this the best way to accomplish this? Any suggestions to best handle this 
   scenario?
 * Thanks!

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

 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/using-email-address-encoder-with-tablepress-2/#post-10831542)
 * Hi,
 * thanks for your post, and sorry for the trouble.
 *     ```
       add_filter('tablepress_table_output', 'eae_encode_email');
       ```
   
 * should actually work fine. Alternatively (but then maybe a bit slower) try
 *     ```
       add_filter('tablepress_cell_content', 'eae_encode_email');
       ```
   
 * Note that you might be seeing cached table output, so that you might have to 
   simply save your table again, to clear the cache.
 * Regards,
    Tobias
 *  Thread Starter [danielbaniel](https://wordpress.org/support/users/danielbaniel/)
 * (@danielbaniel)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/using-email-address-encoder-with-tablepress-2/#post-10831625)
 * The cached table output is exactly what was happening. I came to that conclusion
   pretty shortly after posting, thanks a lot for confirming! I appreciate your 
   fast response and the work you’ve done on this plugin.
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/using-email-address-encoder-with-tablepress-2/#post-10831759)
 * Hi,
 * no problem, you are very welcome! 🙂 Good to hear that this helped!
 * Best wishes,
    Tobias
 * P.S.: In case you haven’t, please [rate TablePress](https://wordpress.org/support/plugin/tablepress/reviews/)
   here in the plugin directory. Thanks!

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

The topic ‘Using Email Address Encoder with TablePress’ is closed to new replies.

 * ![](https://ps.w.org/tablepress/assets/icon.svg?rev=3192944)
 * [TablePress - Tables in WordPress made easy](https://wordpress.org/plugins/tablepress/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/tablepress/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/tablepress/)
 * [Active Topics](https://wordpress.org/support/plugin/tablepress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/tablepress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/tablepress/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * Last activity: [7 years, 9 months ago](https://wordpress.org/support/topic/using-email-address-encoder-with-tablepress-2/#post-10831759)
 * Status: resolved