Robert Trevellyan
Forum Replies Created
-
Forum: Plugins
In reply to: [FoxyShop] help with dkey saved variations in modal product detailsI was finally able to fix this by changing this line
updateVariations(jQuery(this));
to this
jQuery(this).change();Forum: Plugins
In reply to: [FoxyShop] help with dkey saved variations in modal product detailsHere’s my code from the single category page. The
fastIframe:falseis supposed to delay the onComplete event “until iframe’s content has completely loaded.”<script type="text/javascript"> jQuery(".foxyshop_product_list .foxyshop_product_box a").each(function() { jQuery(this).attr("href", jQuery(this).attr("href") + "?modal=true"); }); jQuery(".foxyshop_product_list .foxyshop_product_box a").colorbox({ close:"⇐ Continue Shopping", maxWidth: "100%", fastIframe: false, onComplete: function() { jQuery("form.foxyshop_product").each(function() { updateVariations(jQuery(this)); }); } }); jQuery("form.foxyshop_product").submit(function() { jQuery.colorbox.close(); }); </script>Hi,
I’m not sure I understand what you’re trying to do, but I haven’t tried any kind of bulk operation with Post Expirator.
It might make more sense for you to post your question in the support forum instead of under a review.
Good luck!
Yes, the payment method in question is Cheque, not Check, my mistake.
I just tried version 1.5.2 in my sandbox and both issues I reported appear to have been resolved.
Thanks for the quick fix. I’m very optimistic about OT-CE.
This payment method also suffers from the issue that was reported with BACS, i.e. the customer can view and print their tickets immediately after placing an order, regardless of whether payment has been received.
Forum: Plugins
In reply to: [OpenTickets Community Edition] Set up printable ticketIf you place a test order, you will find a link to the digital tickets in the confirmation email and in your test customer’s My Account area. There will also be a link in the WooCommerce Orders history for that order.
Forum: Plugins
In reply to: [Quick Cache (Speed Without Compromise)] Quick Cache and WooCommerceI have Quick Cache installed on a site that uses WooCommerce (2.1.5). With Quick Cache enabled and source code notes enabled, the cart and checkout pages are definitely cached, which causes problems for customers.
I see there is code in WooCommerce to set the DONOTCACHEPAGE constant, but somehow that isn’t preventing those pages from being cached. I can work around this by using the URI exclude patterns in the Pro version, but it would be great to know that the built-in safeguards were working.
Please let me know if I should report this to WooCommerce instead.
Yes, I found that workaround. I’ll look out for the new version.
Thanks!
Forum: Plugins
In reply to: [Advanced Automatic Updates] no longer receiving update notificationsWorks for me too.
Forum: Plugins
In reply to: [Quick Cache (Speed Without Compromise)] deactivation breaks WordPressIronically enough, that would most likely be a caching issue … or perhaps we were both posting at the same time.
Sorry I didn’t include the fix in my original problem report.
Forum: Plugins
In reply to: [Quick Cache (Speed Without Compromise)] deactivation breaks WordPressYou need to edit wp-config.php and put a line break before the slash on the first line, so it looks like this:
<?php /**Forum: Plugins
In reply to: [Quick Cache (Speed Without Compromise)] deactivation breaks WordPressThe
define('WP_CACHE', true);part should only be present when the plugin is active. My report is about what happens when I deactivate the plugin.Forum: Plugins
In reply to: [Advanced Automatic Updates] no longer receiving update notificationsOK, I’ll try enabling debug emails and see how it goes.
Thanks for the plugin!
Forum: Plugins
In reply to: [BackUpWordPress] wp-cron.php warning on some sitesThis is no longer an issue for me. The explanation is that I was blocking specific IPs that had been attacking my site, and it appears one of the attacking IPs was the address of the site itself (presumably spoofed).
Forum: Plugins
In reply to: [BackUpWordPress] change request: dump database records one per lineAnother reason to do this is that extremely long one-line inserts can break database imports, which would make the backups useless.