Vic Drover
Forum Replies Created
-
Oh my word how did I miss that 🙂
When I share it, I don’t see that displayed: https://drops.treefla.me/eDup09ve
- This reply was modified 1 year ago by Vic Drover.
Some progress! I found that disabling this plugin resolves the issue:
https://ww.wp.xz.cn/plugins/duracelltomi-google-tag-manager/
It’s a bit shocking in fact, for a plugin with so many users.
How do you think we should proceed?
- This reply was modified 3 years, 2 months ago by Vic Drover.
I had this issue and the advice provided here worked great: https://woocommerce.com/document/stripe-fixing-customer-errors/#section-1
I needed to clear the payment tokens from my site so users would be prompted to re-enter their CC info to be saved at the new stripe account.Forum: Plugins
In reply to: [Backup, Restore and Migrate your sites with XCloner] Nextcloud webdavThanks for the details!
Forum: Plugins
In reply to: [Backup, Restore and Migrate your sites with XCloner] Change the date formatDo you mean in the
manage backupsarea? Or when creating backup filenames?Let’s be clear here: your shopify onboarding experience makes it very clear that an account is being made at a 3rd-party service. Your WordPress plugin does this automatically without warning. It’s deceptive, creepy, and possibly illegal in some countries.
Just a note: I’ve seen this kinda of syntax for specifying 2 colors: #FFFFFF/#000000
Forum: Plugins
In reply to: [Coupon Generator for WooCommerce] Bait & SwitchJeroen, you are correct: I had confused it with something else. Big apologies and also thanks for a handy little tool.
Hopefully you can post here when the new version is out.
Forum: Plugins
In reply to: [Advanced Custom Fields: Font Awesome Field] Use my own font awesomeVery helpful! TYVM. Excellent work on the plugin. I was using ACF for the first time today and FA showed up in the search results. Very convenient timing as I was just about to start figuring out how to select icons in the editor 🙂
Forum: Plugins
In reply to: [Automatic Featured Images from Videos] Plugin still active?It works great in fact. Might make sense to push a minor release so the plugin directory stops flagging it: http://drops.treefla.me/oRQT
I installed it based on the developer reputation, but lots of users might not realize that.
Great plugin BTW. Much appreciated.
Forum: Plugins
In reply to: TinyMCEComments toolbar buttonsHere are the offending attributes:
div#content-article img, div#content-article img a { border: 1px solid #e0e0e0; margin: 5px 10px 5px 0; padding: 4px; text-decoration: none; background: #fff; }I removed it all and the tinymce buttons show up great on the comments section.
Forum: Fixing WordPress
In reply to: Link to comment pop up from single.phpThis solution works well, but a side-effect is that the page (single.php) does not display any comments on it any more.
After applying the fix above, the solution is to find the following code in single.php:
<?php comments_template(); ?>and replace it with this:
<?php $wp_query->is_single = true; ?><?php comments_template(); ?>