WP Engine

Add File to Main Directory of Website

Log into WP Engine Navigate to install create a new SFTP user open FileZilla Connect to server make file/take file on computer and drag it into the main directory of the site using FileZilla Enjoy the feeling of being done

PCI Compliance WP Engine

let them know that WPengine it self is not PCI compliant and that they need to set things up on the site to make them do so. When they do the PCI scan on the site it will always give them a false negative on the scan due to how our hosting is set up […]

No Cache in URL

use /?no-cache at the end of a URL to clear cache. For example https://happilyhorn.com/donut-landing-page/?no-cache

Tickera Change Read More Button Text

To change the Read more… text for the buttons of out of stock ticket types, you can add the following as PHP snippet using Code Snippets plugin: ​ add_filter( ‘woocommerce_product_add_to_cart_text’, ‘tc_change_read_more’ ); function tc_change_read_more( $text ) { global $product; if ( $product && ! $product->is_in_stock() ) { return ‘Out of stock’; } return $text; } […]

GridBuilder Facets Not Working? Try This!

https://facetwp.com/help-center/using-facetwp-with/wp-engine/ https://searchwp.com/v3/docs/kb/attention-wp-engine-customers-no-results-long-query-killed-query-notices/ define( ‘WPE_GOVERNOR’, false ); in wp-config, does this still work

Amazon S3 Make Bucket Public

Paste the following in the bucket policy and update the name of the bucket: { “Version”: “2012-10-17”, “Statement”: [ { “Sid”: “PublicRead”, “Effect”: “Allow”, “Principal”: “*”, “Action”: [ “s3:GetObject”, “s3:GetObjectVersion” ], “Resource”: [ “arn:aws:s3:::DOC-EXAMPLE-BUCKET/*” ] } ] }