everville
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Square] Square API not allowing card information to be enteredBoth of the sites have the SG Optimizer plugin. You need to go into that plugin and disable the “Minify JavaScript Files” option. Loading the “wc-square.min.js” file deferred breaks the checkout. This also applies to users of Autoptimize. However, with Autoptimize it can be excluded from the concatenation.
Here’s how to disable…
https://www.siteground.com/tutorials/wordpress/sg-optimizer/frontend-optimization/Forum: Plugins
In reply to: [WP Donate] AuthNet SDK certificate PEM file outdatedYou should start by editing your wp-config.php file and either adding or modifying the WP_DEBUG flag. If you set it to
trueit should display the error on the screen and then you can debug the problem from there. Post it here if you need help with it. Most hosts disable error reporting by default to prevent information disclosure and thus you’ll get a white screen.define( 'WP_DEBUG', true );It is possible that the error will still not display after doing that. If so, it is a 500 server error and is occurring during the PHP “startup”. This means the problem has to be found in the server logs.
Set that debug flag back to false once you are done.
Forum: Plugins
In reply to: [qTranslate Plus] Does QTranslate Plus work with qTranslate Slug?It does not work out of the box. You have to refactor it for the different function names used by qtranslate-xp.
Forum: Plugins
In reply to: [Advanced Editor Tools] Advanced link popup drop downs emptyI fixed it by modifying tiny_mce_popup.js
Replace…
tinymce.dom.Event._add(document, "focus", function () {
With…
tinymce.dom.Event.add(document, "focus", function () {