zacfor
Forum Replies Created
-
Forum: Plugins
In reply to: [No unsafe-inline] GTM not passing nonceRight, 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
In reply to: [No unsafe-inline] GTM not passing nonceI 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/
Forum: Plugins
In reply to: [Redirection] Issue Creating HeadersJust realized WP Engine has their own tool for implementing HTTP Headers, so I’ll just use that. Thanks anyway!
Forum: Plugins
In reply to: [Redirection] Issue Creating HeadersAny, 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.
Forum: Plugins
In reply to: [WP Notification Bars] Select2 javascript errorI just started seeing this same issue. Only on one of several sites with both this plugin and ACF though… curious.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Converting td to thOmg, I didn’t see that 🤦♂️
Thank you!
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] ADA – scope=”col” on first thOOo I came across this: 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.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] ADA – scope=”col” on first thI’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
In reply to: [Contact Form Submissions] Export to csv is not workingWhenever I try to export entries I just get an empty CSV
Forum: Plugins
In reply to: [The Events Calendar] Customizing Templates@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!
Ok, we’ll switch to that moving forward and probably just import missed submissions directly into Salesforce.
Thank you!
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] #colspan# causing issuesThat makes sense. We’ll tweak our styling.
Thanks!
Forum: Plugins
In reply to: [Transients Manager] 1 year expirationI’m dumb and just missed TLC’s far-future expiration setting.
Forum: Plugins
In reply to: [Event Tracking for Gravity Forms] Editing the onclickThey’re working just fine, thanks for the clarification.
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.