kkow
Forum Replies Created
-
Hi @stevejburge
Hmm, I tried the troubleshooting steps but am still having an issue. We do use WPEngine so I contacted support to ensure that revisions are enabled, I disabled all plugins except Revisions, checked permissions, and deleted and reinstalled the plugin.
We are a multisite, but it looks like the plugin is supposed to support that, correct? I do have a ‘New Revision’ link when looking at a list of all the posts in the wordpress admin area, but when you go into any single post the button is not there. However, like mentioned before, it is there for custom post types. This really has me stumped. Any other help would be appreciated!
Thank you
Forum: Plugins
In reply to: [SearchWP Live Ajax Search] Add live results in specific div+1 – I would love to see this as well
Update: I did use the Health Check Tool to test the production site with only what was needed: The theme, Yoast SEO, and ACF. Everything else was disabled and the issues persists. I also noticed there is no canonical URL being output either
Hi,
Yes we are currently running the current versions of both Yoast and WordPress. I am unable to test a different theme as the custom taxonomy that this effects is defined in that theme. Strangely enough though, our development and staging sites use the same setup, versions, plugins, etc. and do not have this issue.
Hmm, the issue does seem to be persisting after performing those steps. Any other suggestions? Thanks again!
Forum: Plugins
In reply to: [Custom Permalinks] Permalink FilterHi @sasiddiqui,
Just saw the new version with this update, thank you so much for adding this in!
Best,
KevinForum: Plugins
In reply to: [Contact Form 7] Custom Data Attributes for Individual InputsFor anyone with this or a similar question, I put the following code snippet together. This allows you to add custom attributes that begin with ‘data-‘ to your tags for targeting or adding data later on. Similar to the way classes and ids work it cannot contain spaces or quotes. Hopefully this helps someone and it gets added as a much needed standard feature to the plugin.
function add_cf7_data_attributes( $content ) { $contact_form = WPCF7_FormTagsManager::get_instance(); $tags = $contact_form->get_scanned_tags(); $data_tags = []; // loop through tags and save any data attributes we find along with the corresponding tag name foreach ( $tags as $tag ) { foreach( $tag->options as $attr ) { if ( strpos( $attr, 'data-' ) !== false ) { $data_attr = explode( ':', $attr ); $data_tag = [ 'name' => $tag->name, 'data_attr' => $data_attr[0] . '="' . $data_attr[1] . '"' ]; array_push( $data_tags, $data_tag ); } } } // if we have any data attribute tags from above, search and replace them in the form if ( !empty( $data_tags ) ) { foreach ( $data_tags as $tag ) { $search = 'name="' . $tag['name'] . '" '; $replace = $search . $tag['data_attr'] . ' '; $content = str_replace( $search, $replace, $content ); } } return $content; } add_filter( 'wpcf7_form_elements', 'add_cf7_data_attributes' );- This reply was modified 5 years, 2 months ago by kkow.
Forum: Plugins
In reply to: [Contact Form 7] Custom Data Attributes for Individual InputsThanks @codekraft, but not really what I’m looking for here. Adding anything that way provides no control per input or per form even.
Hi @thingalon,
Apologies for the delay here, after testing out @optimizingmatters solution I was able to get the critical CSS working. I do wish I was able to pull out the critical css and have the remaining be in one consolidated file, but I’m sure you guys are working through a lot as is. I appreciate the support and response from everyone!
From what I can tell, if I disable autoptimize then all stylesheets have an onload=this.media=all, however when autoptimize is added this onload event is not there.
However, either way (activated or not) the defer js option seems to remove all js.
Also, yes JavaScript is enabled in the browser. Thank you!
Hi @pyronaur,
Is there a way to securely share a link so that it’s not public? After enabling all 3 options it appears that now all javascript has been removed from the page completely and never loads.
Thank you!
Forum: Plugins
In reply to: [Contact Form 7] Is it possible to get the spam response?Okay, I figured as much but wanted to double check. Thanks again!
Forum: Plugins
In reply to: [Show Current Template] Additional included template files not showingHi,
I just wanted to include that this issue is also affecting my site as well.