wpdv
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] Fatal ErrorSimply delete the plugin and reinstall. Should fix it. See here
Forum: Plugins
In reply to: [TinyPNG - JPEG, PNG & WebP image compression] Possible WooCommerce ConflictJust sent email. Thanks.
Ok. Thank you!!
I have excluded these, and it seems to be working again.
bwg.js,bwg_gallery_box.js,bwg_frontend.js,bwg_embed.js,bwg_editor_button.js,jquery.featureCarousel.jsThis bit seems to have an error ‘Uncaught SyntaxError: Invalid regular expression flags:
{/!* Set active thumbnail.*!/jQuery(".bwg_slideshow_filmstrip_thumbnail_"+bwg).removeClass("bwg_slideshow_thumb_active_"+bwg).addClass("bwg_slideshow_thumb_deactive_"+bwg);jQuery("#bwg_filmstrip_thumbnail_"+bwg_params[bwg]['bwg_current_key']+"_"+bwg).removeClass("bwg_slideshow_thumb_deactive_"+bwg).addClass("bwg_slideshow_thumb_active_"+bwg);jQuery(".bwg_slideshow_dots_"+bwg).removeClass("bwg_slideshow_dots_active_"+bwg).addClass("bwg_slideshow_dots_deactive_"+bwg);jQuery("#bwg_dots_"+bwg_params[bwg]['bwg_current_key']+"_"+bwg).removeClass("bwg_slideshow_dots_deactive_"+bwg).addClass("bwg_slideshow_dots_active_"+bwg);}else{jQuery(".bwg_filmstrip_thumbnail").removeClass("bwg_thumb_active").addClass("bwg_thumb_deactive");jQuery("#bwg_filmstrip_thumbnail_"+bwg_param['bwg_current_key']).removeClass("bwg_thumb_deactive").addClass("bwg_thumb_active");}Definitely a jquery conflict. I am having similar issues. I’d like to know which of your scripts I should exclude from optimization, so that they are not minified? Thanks
Forum: Plugins
In reply to: [One Click Demo Import] Deleting PluginThank you. You too!
Forum: Plugins
In reply to: [Genesis Testimonial Slider] Unable to view WPStudio websiteIt’s a Lets Encrypt cert issue. I just moved a client away from using their certs as we were receiving the same messages on occasion.
Thank you, JS! I will add this after hours and report back. I greatly appreciate your fast reply. Have a wonderful evening!
-PatrickThank you. Clearing the caches did not work through the wp admin. I had to go in through ftp and delete them completely and things are now working. Thank you for your assistance and great plugin! Have a wonderful day
-PatrickThis is displayed in the details of security message if this helps: query_string = v=4.7.0
Here is a screenshot of the activity since yesterday.
Here is another view
Thank you for any assistance you can provide.
- This reply was modified 8 years, 10 months ago by wpdv.
Forum: Plugins
In reply to: [Maintenance] Error On Maintenace PageHi, I replaced all the contents of the Maintenance folder with the exact same contents from the github master file.
The problem I’m having now, is that Chrome for Mac (latest version) show a completely blank page for my homepage. When I view source for the homepage, this is all I get <!– html is corrupted –>
I have cleared all caches and still cannot get Chrome to load the homepage
In Firefox for Mac (latest version), the homepage loads fine.
At this point, I have disabled Maintenance. Any suggestions?
Thank you!
Forum: Themes and Templates
In reply to: [Twenty Seventeen] video cover not working on mobileI’m experiencing the same issue.
Perfect! Thank you! On a different matter, I noticed that the packing slip is not included with the order email sent to the admin. Do I need to upgrade to the paid version for this feature? Let me know. Thanks!
Thank you Ewout. With adding this code in, I get a blank page.
add_filter( 'wpo_wcpdf_filename', 'wpo_wcpdf_custom_filename', 10, 4 ); function wpo_wcpdf_custom_filename( $filename, $template_type, $order_ids, $context ) { $invoice_string = _n( 'invoice', 'invoices', count($order_ids), 'wpo_wcpdf' ); $new_filename = str_replace($invoice_string.'-', '', $filename); return $new_filename; } add_filter( 'wpo_wcpdf_filename', 'wpo_wcpdf_custom_filename', 10, 4 ); function wpo_wcpdf_custom_filename( $filename, $template_type, $order_ids, $context ) { // only single packing slips if (count($order_ids) == 1) { $order_id = array_shift($order_ids); $invoice_date = get_post_meta($order_id,'_wcpdf_invoice_date',true); $invoice_date = empty($invoice_date) ? current_time('mysql') : $invoice_date; $invoice_year = date_i18n( 'Y', strtotime( $invoice_date ) ); $invoice_month = date_i18n( 'F', strtotime( $invoice_date ) ); $invoice_day = date_i18n( 'd', strtotime( $invoice_date ) ); $datestring = "{$invoice_month}_{$invoice_day}_{$invoice_year}.pdf"; $filename = str_replace('.pdf', $datestring, $filename); } return $filename; }If I remove the original code that removes “invoice” from the name, it works, however, it retains “invoice” in the name of the file.
Your thoughts? Thank you very much
- This reply was modified 9 years, 5 months ago by wpdv.