JxnGraphix
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Widgets disappeared (front and back end) after plugin update?Same thing happened to me today. Working locally with MAMP and the theme wouldn’t load. Uninstalled and reinstalled Widgetkit plugin after I found this error:
Fatal error: Class ‘YOOtheme\Framework\Application’ not found in /wp-content/plugins/widgetkit/src/Application.php on line 11
Then the theme loaded but all of the widgets were empty and the below error appeared:
Fatal error: Class ‘Warp\Wordpress\MenuWalker\MenuWalker’ not found in /wp-content/themes/yoo_master2_wp/warp/systems/wordpress/src/Warp/Wordpress/Helper/SystemHelper.php on line 171
***UPDATE***
Using the previous method, the form ignored the reCAPTCHA completely. After waiting 24hrs and integrating the form and using the normal submit button provided by CF7, all is well.
The form worked properly after ignoring CF7’s integration settings and following Google’s directions: google.com/recaptcha
– Register your site
– Complete step 1 and step 2
– DO NOT enter the site key and secret key into CF7’s reCAPTCHA integration pageForum: Plugins
In reply to: [Authorize.net Payment Gateway For WooCommerce] Redirect After PurchaseFound it.
add_action( ‘template_redirect’, ‘wc_custom_redirect_after_purchase’ );
function wc_custom_redirect_after_purchase() {
global $wp;if ( is_checkout() && ! empty( $wp->query_vars[‘order-received’] ) ) {
wp_redirect( ‘https://www.yoururl.com/your-page/’ );
exit;
}
}Forum: Plugins
In reply to: [WooCommerce] WooCommerce Cart WidgetI figured it out. I can be overridden using the same method as the WooCommerce plugin. By placing the template folders inside of a ‘woocommerce’ folder added in the theme’s folder.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Cart WidgetWooCommerce Subscriptions plugin.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Cart WidgetThe effort is for the product page to be inaccessible to users so removing links from the product page wouldn’t be effective. I’ve removed them from the shop page, cart widget and order page. But I still need to remove the links from the subscriptions page.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Cart WidgetNot sure why mini-cart.php wasn’t updating before but it’s working now. I’d still like to know if there is a way to remove ALL product title and image links site wide. Thanks!
Forum: Fixing WordPress
In reply to: Can't Logout 404 ErrorThe logout function is now working properly. Thank you for your help Jan! Changing the name of the .htaccess file proved that this is where the issue stemmed. I replaced the old .htaccess code with the Basic WP .htaccess code from here: and now all is well. The site is still really slow but that’s a whole other issue. Thanks again!
Forum: Fixing WordPress
In reply to: Can't Logout 404 ErrorThat’s what I presumed as well. I spoke with the plugin developers already. That is why I am here. During their trouble shooting they tried disabling everything as well and the problem continued.
The .htaccess was edited initially then edited again to its original WP settings.
Forum: Fixing WordPress
In reply to: Can't Logout 404 ErrorAs I previously stated, I did troubleshoot the problem by disabling ALL plugins and disabling the current theme. After doing so, the errors were still present and the same URLs were seen when attempting to logout.
Forum: Fixing WordPress
In reply to: Can't Logout 404 ErrorThis is definitely a WP issue. I disabled all plugins and switched to a WP theme and the problem still exists. I can only assume that there is no resolution for this error.
Forum: Plugins
In reply to: [WooCommerce] PayPal redirecting users to wrong URL@claudiosanches, this doesn’t solve the issue for my site. When the form submission is disabled, the PayPal payment doesn’t function properly and redirect the user to the PayPal payment page. The icon continues to spin and the page NEVER redirects.
Forum: Fixing WordPress
In reply to: Can't Logout 404 ErrorI was told that this is the place to go for WordPress support and that the response would be timely. Is anyone available to assist?
Forum: Plugins
In reply to: [WooCommerce] PayPal redirecting users to wrong URLI am having the same issue. I originally had “use form submission method” checked because the site wouldn’t allow PayPal to process orders for some users. After un-checking it the cancel function on the PayPal worked properly but once again orders are not able to be processed.