Robert
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Plugins
In reply to: [WooCommerce] Error in order-attribution.jsFor context that error is triggering on the /my-account page.
Forum: Plugins
In reply to: [WooCommerce] Error in order-attribution.jsHi @carolm29,
I’m also seeing this javascript error. See the screenshots below.
Can this be escalated to your development team please for further investigation?
Thanks,
Rob
Forum: Plugins
In reply to: [Duo Two-Factor Authentication] Duo Prompt end of life – March 30, 2024The deadline is approaching soon, should we start looking into your competitors offerings for an alternate solution.
No worries @rainfallnixfig I’ve logged another support ticket here.
We’ve noticed the same issue after upgrading to WooCommerce 6.3.1.
The only solution so far has been to downgrade back to WooCommerce 6.2.2.
Can this be escalated to your developers please?
Forum: Plugins
In reply to: [Recent Tweets Widget] Longer retweets are being truncatedI’ve patched my version of the plugin with this code:
In widget.php:
$tweets_array = array(); for($i = 0;$i <= count($tweets); $i++){ if(!empty($tweets[$i])){ $tweets_array[$i]['created_at'] = $tweets[$i]->created_at; //clean tweet text if(isset($tweets[$i]->retweeted_status) && isset($tweets[$i]->retweeted_status->id)){ $tweets_array[$i]['text'] = sprintf('RT @%s: %s', $tweets[$i]->retweeted_status->user->screen_name, $tweets[$i]->retweeted_status->text); } else{ $tweets_array[$i]['text'] = $tweets[$i]->text; } $tweets_array[$i]['text'] = preg_replace('/[\x{10000}-\x{10FFFF}]/u', '', $tweets_array[$i]['text']); if(!empty($tweets[$i]->id_str)){ $tweets_array[$i]['status_id'] = $tweets[$i]->id_str; } } }
Viewing 6 replies - 1 through 6 (of 6 total)