Jandal
Forum Replies Created
-
Forum: Plugins
In reply to: [Ally - Web Accessibility & Usability] Design settingsHi, I would like to request this feature as well.
The Icon currently only has a black outline. Some colors need contrast of a white background.
Or give people the ability to adjust the line color of the SVG outline please.Thank you
Hi, have been looking for a temporary fix.
Apparently the main issue stems from an error in 6.7.
Waiting for 6.7.1 to resolve the issue.
Hi, have been looking for a temporary fix.
Apparently the main issue stems from an error in 6.7.
Waiting for 6.7.1 to resolve the issue.
Hi, have been looking for a temporary fix.
Apparently the main issue stems from an error in 6.7.
Waiting for 6.7.1 to resolve the issue.
Forum: Plugins
In reply to: [Translate Multilingual sites - TranslatePress] Not compatible with wp 6.7Hi, have been looking for a temporary fix.
Apparently the main issue stems from an error in 6.7.
Waiting for 6.7.1 to resolve the issue.
Forum: Plugins
In reply to: [WooCommerce] Email verification required at checkoutHi, Thanks for trying to trouble shoot this more.
I’m applying the filter and the commented out the line, and the page is still blocked / filtered.
I have it working on one site with the simple filter to turn it off.And another site is causing issues. I’m plugins and looking for other solutions.
Any insights on more ideas would be helpful.Thank you
Forum: Plugins
In reply to: [WooCommerce] Email verification after woo order from guest ?@didiair the solution worked for 1 website. And NOT for another website.
I’m trying to find a way to solve it for the website it did NOT work for.
Both websites allow customers to checkout as guests. So I don’t know what the issue is. If anyone has an update on why it works for some sites and not others, please share.
Thank you
Forum: Plugins
In reply to: [WooCommerce] Alot of stylesheet requests after update 8.0Interesting, I was looking for something else, but stopped in to read this post.
Here is what I applied recently, took a while to figure out that one needs to “deregister” and “deque” to make this work properly.
//Remove Gutenberg Block Library CSS from loading on the frontend function smartwp_remove_wp_block_library_css(){ wp_deregister_style('wp-block-library'); wp_dequeue_style( 'wp-block-library' ); wp_dequeue_style( 'wp-block-library-theme' ); wp_dequeue_style( 'wc-blocks-style' ); // Remove WooCommerce block CSS } add_action( 'wp_enqueue_scripts', 'smartwp_remove_wp_block_library_css', 100 );
Forum: Plugins
In reply to: [Contact Form 7] Form tel Error with 555 numbersIs there a way to share without making it public?
vinia.co.il
Thanks- This reply was modified 1 year, 9 months ago by Jandal.
I notice they haven’t released an update for it.
@pleazo All I did was take a copy of the old version (2.3.7) and FTP it into the plugin’s directory. Things went back to normal, no obvious issues with the DB having been updated to 2.3.8, thankfully in my case.
I hope they can address this soon. Appears to be targeting specific installs, maybe server or plugin combinations. We do have WooComm installed and a heap of other things.
I haven’t had time to analyze logs to see where the issue is.
Curious to know how you get on.
I’m currently having a problem where about 50% of my payment orders are being recorded. I’m on a .co.il domain. HotJar.com is recording all sales and I can see the user go to every page.So I have some interesting data from HotJar.com tracking.
I have been looking at the users whom completed orders in HotJar and I can see users that
A) Have been tracked by GTM/GA
B) Not been tracked by GTM/GAWhy would they be tracked with HotJar but not GTM/GA?
Forum: Plugins
In reply to: [Advanced Ads –?Ad Manager & AdSense] Count how many users blocking GTM or GAAlso, was looking to see where the block count was kept?
Is there an internal WP dashboard that shows the count users that are blocking GTM / GA / ADS?
Thanks
Actually. Looks like I was provided some wrong information on what was happening.
GTM person has clarified what their issue was.
And have confirmed the amounts are correct as expected in the Analytics reports.Sorry about that, thank you.
Forum: Plugins
In reply to: [Show User Registration Date] sorting featureOk, so I have updated the plugin function.
You can do this in WP-Admin
/wp-admin/plugin-editor.php
Then find the plugin and there is only 1 file to edit. Update the function to the one below.function cmr_suregd_add_upwd_col($columns) { $sort_order = 'desc'; if (isset($_GET['order'])) { $sort_order_old = $_GET['order']; if ($sort_order_old == 'desc') $sort_order = 'asc'; } $columns['user_registered'] = '<a href="/wp-admin/users.php?orderby=user_registered&order='.$sort_order.'">'.'Registration Date'.'</a>'; return $columns; }