davebonds
Forum Replies Created
-
We are also running into the same issue whenever the hipaaforms.online site is down. This causes 502 bad gateway errors across the admin and frontend of the site. This is causing major problems for our client as they are a reputable medical center. And this is not the first time that has happened, as it also happened about 2 months ago, when this original post was created.
If you can not ensure better uptime on your servers, then I suggest reconfiguring your code to cancel requests when your servers are down.
Never mind, I just found identical post on your support forum and will await the new release version. https://awpcp.com/forum/support-questions/terms-of-service-not-showing-in-version-4/
Thanks!
Forum: Plugins
In reply to: [WooCommerce Square] Price changed, Sale price is added?Thanks! Ticket submitted!
Forum: Plugins
In reply to: [WooCommerce Square] Price changed, Sale price is added?Thanks for following up @dougaitken
Yes the issue occurs with every sync and for all products. And yes the initial sync was from Square -> WooCommerce and it will always be that direction, never the other way.
Your assumption is the same as mine; sale prices should not be added in WooCommerce. I think I see in the code where this is happening but haven’t tried changing it, I’ll leave it up to y’all. ??
- This reply was modified 5 years, 12 months ago by davebonds.
Forum: Plugins
In reply to: [WordPress Live Chat Plugin for WooCommerce - LiveChat] PHP error messageWe had the same issue with this showing in the error logs and thought nothing of it. Then WP Engine contacted us and said it’s a problem.
post was called incorrectly. Product properties should not be accessed directly. Backtrace: do_action('wp_ajax_wc-livechat-check-cart'), WP_Hook->do_action, WP_Hook->apply_filters, call_user_func_array, WooCommerce_LiveChat->check_cart, WooCommerce_LiveChat->get_custom_livechat_data, WooCommerce_LiveChat->get_products_data, WC_Product_Subscription_Variation->__get, WC_Abstract_Legacy_Product->__get, wc_doing_it_wrong. This message was added in version 3.0.
You guys can fix it by changing
class-woocommerce-livechat.php
in theget_products_data()
method by getting a WC_Product object from the cart data usingwc_get_product()
first instead of trying to access it directly.Change:
$url = htmlspecialchars_decode( $product['data']->get_permalink() ); $title = $product['data']->get_title();
To:
$wc_product = wc_get_product( $product['data'] ); $url = htmlspecialchars_decode( $wc_product->get_permalink() ); $title = $wc_product->get_title();
Forum: Plugins
In reply to: [IMPress Listings] Dynamic Ads for FacebookA plugin is now available that will create listing catalogs from your listings to be used for Facebook dynamic ad campaigns – FB Dynamic Ads for Real Estate.
Even with this plugin there are steps required to setup user signals and create audiences that this plugin will not do in its current form, but it is a critical first step.
Forum: Plugins
In reply to: [IMPress Listings] background transparentOr instead of using the included template files, you can create your own page and use the shortcodes provided.
Forum: Plugins
In reply to: [IMPress Listings] Change LanguageThe plugin is translation ready. There is a .pot file in the /languages/ folder ready for translation to any language.
You may want to read about how to translate into your language. This article may be helpful: https://thematosoup.com/translating-wordpress-themes-plugins/
Forum: Plugins
In reply to: [IMPress Listings] Changing Listing Field TitlesHere’s a suggestion… Perhaps you can suggest the fields you’d like to see and they can be added to the plugin in a future update.
Forum: Plugins
In reply to: [IMPress Listings] New to Listings Pages; not getting it rightYour site is also displaying the archive-listing.php from the theme, which means it has not been deleted.
Forum: Plugins
In reply to: [IMPress Listings] New to Listings Pages; not getting it rightCan you post a link to your site? A link to your listing?
Forum: Plugins
In reply to: [Ozh' Tweet Archiver] 3200Just a guess, but I think Ozh may have been using the plugin when a) he had less than 3200 tweets and it’s archived those plus all going forward or b) before Twitter limited the number to 3200 with their new API
Resolved in latest release: 2.0.33
Same here. Multiple client sites. Bad update.
To roll it back to a prior version you’ll need to FTP into your site and delete the /dsidxpress/ folder from your /wp-content/plugins/.
You can then download a previous version from https://www.ads-software.com/plugins/dsidxpress/developers/ and then Upload the new plugin through Plugins > Add New.
Working zip (2.0.30): https://downloads.www.ads-software.com/plugin/dsidxpress.2.0.30.zip
Update: Looks like 2.0.31 has the same issue. Roll back to 2.0.30 for now – but it apparently has issues with WP 3.6 – https://plugins.trac.www.ads-software.com/browser/dsidxpress/#trunk
This has to do with the Genesis framework on your site. What you see is the breadcrumb navigation. You can disable the breadcrumb navigation in Genesis > Theme Settings