MrFent37
Forum Replies Created
-
I am also seeing the same issue. I just started using Stripe Tax Yesterday, so I started with version 2.0. I only just noticed today after 14 sales went through that the shipping wasn’t included in the total amount sent to Stripe. So even though the WooCommerce orders show the full amount, we didn’t receive that amount in Stripe. So far I’ve lost over $200 worth of shipping fees that we should have received. I’ve installed version 1.2.4, and am waiting for a new sale to see if that fixed it for us. The last reply was a week and 4 days ago, but I’m still seeing 2.0 as the latest version. Frankly I’m shocked that with this known bug, you’re still allowing people to download 2.0.
I made a video to show the issue. https://www.loom.com/share/2dabc9561dd947a99e3c185c78cd39ff
How has this still not been fixed yet? Crashed another one of my websites today.
If I download a fresh copy of the plugin from ww.wp.xz.cn, the function mentioned above isn’t commented out. But if I update from an older version, this is what the function gets updated to:
public function alerts( $alerts = [] ) {
/* The following code originally added license notifications.
It has been commented out to disable license alerts while preserving the code for future reference.
static $showed_invalid_message;
// If user can't manage it, or we already showed this alert abort.
if ( ! current_user_can( 'manage_options' ) || $showed_invalid_message ) {
return $alerts;
}
// If this alert is already in the list of alerts, abort.
foreach ( $alerts as $alert ) {
if ( 'license_not_valid' === $alert['code'] ) {
return $alerts;
}
}
// If this license key is not empty, check if it's valid.
if ( ! empty( $this->license ) ) {
$license = get_option( $this->item_shortname . '_license_active' );
if ( ! is_object( $license ) || 'valid' === $license->license ) {
return $alerts;
}
}
$showed_invalid_message = true;
if ( empty( $this->license ) ) {
$alerts[] = [
'code' => 'license_not_valid',
'message' => sprintf(
/* translators: 1. opening link text, 2. closing link text */
__( 'One or more of your extensions are missing license keys. You will not be able to receive updates until the extension has a valid license key entered. Please go to the %1$sLicenses page%2$s to add your license keys.', 'popup-maker' ),
'<a href="' . admin_url( 'edit.php?post_type=popup&page=pum-settings&tab=licenses' ) . '">',
'</a>'
),
'type' => 'error',
'dismissible' => '4 weeks',
'priority' => 0,
];
} else {
$alerts[] = [
'code' => 'license_not_valid',
'message' => sprintf(
/* translators: 1. opening link text, 2. closing link text */
__( 'You have invalid or expired license keys for Popup Maker. Please go to the %1$sLicenses page%2$s to correct this issue.', 'popup-maker' ),
'<a href="' . admin_url( 'edit.php?post_type=popup&page=pum-settings&tab=licenses' ) . '">',
'</a>'
),
'type' => 'error',
'dismissible' => '4 weeks',
'priority' => 0,
];
}
*/
return $alerts;
}The code is commented out, but not really, because there are two smaller existing comments throughout this function that prevent the whole thing from being commented out
Forum: Plugins
In reply to: [Widgets for Google Reviews] Googe Logo Image Height/Width not setThank you, but is there any reason why using the :not() selector doesn’t work?
Forum: Plugins
In reply to: [WPC Frequently Bought Together for WooCommerce] Add to cart ButtonI also vote for this feature. This would make it more like shopify, as can be seen here:
https://shop.culturesforhealth.com/products/kefir-starter-culture
It needs to have two add to cart buttons! one for just the main product, and another one down below for all of the additional products!
I’ll be happy to consider this resolved once you update the plugin so that it doesn’t require special CSS to fix the issue.
This CSS will also fix the issue if you don’t want to use jQuery Migrate Helper plugin:
@media (max-width: 768px) { .pum-overlay.pum-active, .pum-overlay.pum-active .popmake.active { opacity: 1 !important; display: block !important } }If your issue is on desktop as well as mobile, just get rid of the media query.
- This reply was modified 5 years, 5 months ago by MrFent37.
Their support gave me this CSS, which fixes the issue on mobile:
@media (max-width: 768px) { .pum-overlay.pum-active, .pum-overlay.pum-active .popmake.active { opacity: 1 !important; display: block !important } }any updates on this?
any updates on this?
any updates on this?
Disable on mobile is not enabled. Please thoroughly read my explanation. There are several other people on this support forum who are experiencing similar issues. The problem is with jQuery 3.5.1. You have a major issue going on here.
Sounds like my issue:
https://ww.wp.xz.cn/support/topic/wp-5-6-pop-not-working-when-triggered-from-mobile-menu/
Also this one:
https://ww.wp.xz.cn/support/topic/popup-no-longer-working-after-5-6-update-instagram-feed-pro-conflict/Did you recently update to WP 5.6? If so, see the temporary solution I posted on both of those links.