Robert Trevellyan
Forum Replies Created
-
The plugin is still free, but there is a known bug – see https://wp-types.com/forums/topic/invalid-site-key-for-the-current-site-2/
No, the plugin is indeed free, but there is a known bug – see https://wp-types.com/forums/topic/invalid-site-key-for-the-current-site-2/
In which version? I don’t see a release more recent than my report.
That would be excellent, thanks!
For anyone needing a workaround, you can run this php script on your existing installation before migration (posted on stackoverflow.com by hkasera):
<?php $con = mysql_connect('localhost','user','password'); if(!$con) { echo "Cannot connect to the database ";die();} mysql_select_db('dbname'); $result=mysql_query('show tables'); while($tables = mysql_fetch_array($result)) { foreach ($tables as $key => $value) { mysql_query("ALTER TABLE $value CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci"); }} echo "The collation of your database has been successfully changed!"; ?>
Forum: Plugins
In reply to: [Mentionable] how is mentioning Media supposed to work?It would be great if you could get it to work. Showing clients how to insert images is straightforward, but showing them how to link to other media can be a challenge. This would be a big help.
Thanks!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] fuzzy search doesn't match plurals?That looks promising, I will talk to our client about Relevanssi Premium.
OK, thanks for the update and for maintaining this plugin, I install it on every site I build.
The update to 1.2.1 has taken care of the PHP error, but I’m still unable to turn off ‘Use shortcodes in widgets’ and ‘Use deprecated names’.
I’m seeing this error regardless of whether ‘Protect mailto links’ is checked.
In what may be a related issue, the ‘Use shortcodes in widgets’ and ‘Use deprecated names’ options cannot be turned off.
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:false
is 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.