Title: zacfor's Replies | WordPress.org

---

# zacfor

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[No unsafe-inline] GTM not passing nonce](https://wordpress.org/support/topic/gtm-not-passing-nonce/)
 *  Thread Starter [zacfor](https://wordpress.org/support/users/zacfor/)
 * (@zacfor)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/gtm-not-passing-nonce/#post-17477122)
 * Right, that’s why I’m so confused. It does seem like GTM is passing the nonce
   to the scripts its loading, but none of the inline styles and scripts are getting
   it, and they aren’t showing up in the Inline whitelist tab.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[No unsafe-inline] GTM not passing nonce](https://wordpress.org/support/topic/gtm-not-passing-nonce/)
 *  Thread Starter [zacfor](https://wordpress.org/support/users/zacfor/)
 * (@zacfor)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/gtm-not-passing-nonce/#post-17473729)
 * I did try that and could not get it to work.
 * This is the site I’m trying to get this working on: [https://www.ecowater.com/](https://www.ecowater.com/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Redirection] Issue Creating Headers](https://wordpress.org/support/topic/issue-creating-headers/)
 *  Thread Starter [zacfor](https://wordpress.org/support/users/zacfor/)
 * (@zacfor)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/issue-creating-headers/#post-16307877)
 * Just realized WP Engine has their own tool for implementing HTTP Headers, so 
   I’ll just use that. Thanks anyway!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Redirection] Issue Creating Headers](https://wordpress.org/support/topic/issue-creating-headers/)
 *  Thread Starter [zacfor](https://wordpress.org/support/users/zacfor/)
 * (@zacfor)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/issue-creating-headers/#post-16306693)
 * Any, really. X-Frame-Options, Referrer-Policy, Strict-Transport-Security, X-XSS-
   Protection, and X-Content-Type-Options. They all exist on production right now,
   and I’m trying to recreate them on staging and add two more. They’re both WP 
   Engine environments, which as far as I can tell are the same. Very strange.
    -  This reply was modified 3 years, 4 months ago by [zacfor](https://wordpress.org/support/users/zacfor/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Notification Bars] Select2 javascript error](https://wordpress.org/support/topic/select2-javascript-error/)
 *  [zacfor](https://wordpress.org/support/users/zacfor/)
 * (@zacfor)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/select2-javascript-error/#post-14568320)
 * I just started seeing this same issue. Only on one of several sites with both
   this plugin and ACF though… curious.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] Converting td to th](https://wordpress.org/support/topic/converting-td-to-th/)
 *  Thread Starter [zacfor](https://wordpress.org/support/users/zacfor/)
 * (@zacfor)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/converting-td-to-th/#post-13583271)
 * Omg, I didn’t see that 🤦‍♂️
 * Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] ADA – scope=”col” on first th](https://wordpress.org/support/topic/ada-scopecol-on-first-th/)
 *  Thread Starter [zacfor](https://wordpress.org/support/users/zacfor/)
 * (@zacfor)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/ada-scopecol-on-first-th/#post-13559434)
 * OOo I came across this: [https://wordpress.org/support/topic/cache-is-not-updated/](https://wordpress.org/support/topic/cache-is-not-updated/)
   and disabled caching which solved the first part of this!
 * Tweaked what I had to the following and now I believe I have what I need for 
   accessibility:
 *     ```
       function ada_tablepress_add_scope(  $tag_attributes, $table_id, $cell_content, $row_number, $col_number, $colspan, $rowspan ) {
       	if ( $row_number === 1 ) {
       		$tag_attributes['scope'] = "col";
       	}
       	if ( $col_number === 1 && $row_number !== 1 ) {
       		$tag_attributes['scope'] = "row";
       	}
       	return $tag_attributes;
       }
       add_filter( 'tablepress_cell_tag_attributes', 'ada_tablepress_add_scope', 10, 7 );
       ```
   
    -  This reply was modified 5 years, 6 months ago by [zacfor](https://wordpress.org/support/users/zacfor/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] ADA – scope=”col” on first th](https://wordpress.org/support/topic/ada-scopecol-on-first-th/)
 *  Thread Starter [zacfor](https://wordpress.org/support/users/zacfor/)
 * (@zacfor)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/ada-scopecol-on-first-th/#post-13558692)
 * I’m also being asked to:
    “In addition, the first cell in each row should be 
   marked up as a <th> and be given a scope of “row.””
 * Could I add this to achieve that?
 *     ```
       if ( $col_number === 1 ) {
       	$tag_attributes['scope'] = "row";
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form Submissions] Export to csv is not working](https://wordpress.org/support/topic/export-to-csv-is-not-working-2/)
 *  [zacfor](https://wordpress.org/support/users/zacfor/)
 * (@zacfor)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/export-to-csv-is-not-working-2/#post-12623824)
 * Whenever I try to export entries I just get an empty CSV
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Customizing Templates](https://wordpress.org/support/topic/customizing-templates-3/)
 *  Thread Starter [zacfor](https://wordpress.org/support/users/zacfor/)
 * (@zacfor)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/customizing-templates-3/#post-12612696)
 * [@deblynprado](https://wordpress.org/support/users/deblynprado/) that did it!
   I thought plugin v 5.X was the same as v2, didn’t realize there was a toggle,
   thanks for clearing that up!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Integration for Salesforce and Contact Form 7, WPForms, Elementor, Formidable, Ninja Forms] Manually submit uncaught form submissions](https://wordpress.org/support/topic/manually-submit-uncaught-form-submissions/)
 *  Thread Starter [zacfor](https://wordpress.org/support/users/zacfor/)
 * (@zacfor)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/manually-submit-uncaught-form-submissions/#post-11421790)
 * Ok, we’ll switch to that moving forward and probably just import missed submissions
   directly into Salesforce.
 * Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TablePress - Tables in WordPress made easy] #colspan# causing issues](https://wordpress.org/support/topic/colspan-causing-issues/)
 *  Thread Starter [zacfor](https://wordpress.org/support/users/zacfor/)
 * (@zacfor)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/colspan-causing-issues/#post-9470535)
 * That makes sense. We’ll tweak our styling.
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Transients Manager] 1 year expiration](https://wordpress.org/support/topic/1-year-expiration/)
 *  Thread Starter [zacfor](https://wordpress.org/support/users/zacfor/)
 * (@zacfor)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/1-year-expiration/#post-8913525)
 * I’m dumb and just missed TLC’s far-future expiration setting.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Event Tracking for Gravity Forms] Editing the onclick](https://wordpress.org/support/topic/editing-the-onclick/)
 *  Thread Starter [zacfor](https://wordpress.org/support/users/zacfor/)
 * (@zacfor)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/editing-the-onclick/#post-6628627)
 * They’re working just fine, thanks for the clarification.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MediaElement.js - HTML5 Video & Audio Player] Audio player not working after update](https://wordpress.org/support/topic/audio-player-not-working-after-update/)
 *  Thread Starter [zacfor](https://wordpress.org/support/users/zacfor/)
 * (@zacfor)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/audio-player-not-working-after-update/#post-3428746)
 * > 1. in the settings section of my dashboard under mediaelements.js I specified
   > that my default audio is audio/mp3
   > 2. I deleted width=”100%” from my shortcode.
 * Interesting, that did not work for me. Guess I’ll just downgrade for the time
   being.

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

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