WebSprite
Forum Replies Created
-
Circling back on this and wondering if some kind of tweak might be in the works soon? It’s as if the settings are the exact reverse of what they need to be. Resize a jpg, get a bubble warning to regenerate CSS.
I just updated my page builder, theme, Jetpack itself, cacheing plug-in, and purged all caches, including CSS.
No bubble.Update, the card tester came back with a new IP. 1 successful trans, a failure, and then (yay!) rated limited. I hope they give up and go elsewhere before the rate limit expires But I still wish there was a way to reject the successful transaction withs a “suspected fraud” warning.
Thank you for the info about IONOS duplicating the php.ini files. I’ve been using IONOS and Wordfence for several years and only starting in January has Wordfence been reporting these duplicate php files as a “critical error.” All 150+ of them.
Apologies if this is hijacking the OP but I had the same issue with the entire iframe payment form disappearing. It happened whenever the customer used a dropdown selection (for example, to change their country, choose to ship to a different address, etc). The iframe came back only if the customer refreshed the entire page.
After chasing this for days and trying every possible troubleshooting measure (changed theme, deleted and reinstalled the plug-in, turned off all other plugins, different browsers and devices, logged in and not logged in users, clearing caches, downgrading versions or woo and wc payments) and nothing working, and reading dozens of similar issues (most often the solution seemed to be custom coding whatever a DOM is to avoid one part of the code loading before another) that involved the disappearing iframe – disabling early access fixed it.
At the same time, thinking it was unrelated, a new user couldn’t create a customer account in the checkout page. I enabled guest checkout to get around it and focused instead of the disappearing payment form. Well that’s fixed as well. Something in the early access feature loading conflicts with other page events. I wish I knew more tech stuff to explain it better, but just in case anyone else is going through the same headache, they should try disabling early access. Only takes a second to see if that’s the problem.
I had only recently enabled it and it didn’t occur to me it could be the issue until I saw this post.
Edited to add: After the payment formed disappeared the customer saw the error “We could not retrieve data from the specified element. Please make sure the Element you are attempting to use is still mounted.”
- This reply was modified 3 years ago by WebSprite. Reason: Include error message
That will take me a while, but I also received this error message from WordPress right after I installed 9.9.
Your Site is Experiencing a Technical Issue
Error Details ============= An error of type E_COMPILE_ERROR was caused in line 87 of the file .../wp-content/plugins/jetpack/vendor/jetpack-autoloader/class-php-autoloader.php. Error message: require(): Failed opening required '...wp-content/plugins/jetpack/vendor/automattic/jetpack-backup/src/class-rest-controller.php' (include_path='.:/usr/lib/php7.4')
For me it was absolutely the Smush lazy load feature. I only started using it a few weeks ago. Noticed a couple days ago the Like button was not functioning, and the status was “loading.”
Came here, saw the comment from 9 months ago, turned lazy load off for products only (as a test), and voila the functionality per Jetpack/WP came back to products, but none of the other post types. So now I’ve disabled lazy load for the post types I want like functionality on.
Amazing that this bug is still there 9 months later. I do see that Smush says lazy load is still “beta.”
Hi, thanks for the suggestion (it didn’t make any difference, but really I do thank you for the attempt). I did solve the issue and here’s the gist of it for some other user wandering in the weeds.
The issue was indeed the MIME type of epub and mobi. PDF (and the single MP3 on the site) worked fine. They’re registered MIME types in the WP core which I just didn’t think was a coincidence. I had registered EPUB and MOBI through a feature in Media Library Assistant which allowed me to use the file types as downloadable products. For some reason some tweak somewhere in the last 8-10 weeks decided that these file types wouldn’t quite work. They’d still be allowed as products but the generated download link died.
I disabled that feature in MLA and instead added a function into my function.php to register the MIME types there. And now the same download code that gave “no file defined” error works the way it did up until recently.
function yourthemehere_custom_upload_mimes( $existing_mimes ) { // Add webm to the list of mime types. $existing_mimes['epub'] = 'application/epub+zip'; $existing_mimes['mobi'] = 'application/x-mobipocket-ebook'; // Return the array back to the function with our added mime type. return $existing_mimes; } add_filter( 'mime_types', 'yourthemehere_custom_upload_mimes' );
I found the code for the function here: https://andrew.dev/how-to-add-a-new-mime-type-to-wordpress/
Forum: Plugins
In reply to: [List category posts] Pagination links scroll to top of same pagephp can be really frustrating – a slanted quote instead of a plain one can throw the whole site off.
I too would like to hear if you find an alternative. This seems like a basic content management functionality.
Forum: Plugins
In reply to: [List category posts] Pagination links scroll to top of same pageHi Scotty, don’t know if this will help. I saved this info in a text file so I wouldn’t forget what I’d changed in case the plug-in updated. To my knowledge it has not updated. The code still works for me:
$amp . "lcp_page" . $this->catlist->get_instance() . "=". $page /*DOT COMMENTED OUT. */ /* "#lcp_instance_" . $this->catlist->get_instance() COMMENTED OUT UP TO SEMICOLON*/; original code $amp . "lcp_page" . $this->catlist->get_instance() . "=". $page . "#lcp_instance_" . $this->catlist->get_instance();
I put a screen snap of my edited plugin file in my public dropbox. Let me know when you’ve had a chance to pull it to your own drive so I can delete it again. You’ll see in the snap that my php file also says “inactive” so that’s not the issue.
https://dl.dropboxusercontent.com/u/49677933/Capture.JPG
I hope this helps you out.
Forum: Plugins
In reply to: [WooCommerce Cart Tab] Cart Tab option not available in WooCommerce SettingsUsing WooCommerce version 2.6.8, having same issue. The Woo/Settings/Catalog tab is not there. My tab bar reads
General
Products
Shipping
Checkout
Accounts
Emails
Integration
APIUnder Product are sub tabs of General/Display/Inventory/Downloadable, none of which show the interface for this plug-in.
The plug-in works and looks great, but I can’t get to the interface. If it’s default were on the left instead of right I could.
Forum: Plugins
In reply to: [List category posts] Pagination links scroll to top of same pageThank you thank you thank you! The code worked and your details helped me find it easily. I am hoping the next upgrade will tweak this or sort it out, meanwhile, I’ve taken it off auto update.
Thanks again!
Forum: Plugins
In reply to: [List category posts] Pagination links scroll to top of same pageThis is the code I have pasted on a custom-post-type, page-type and post-type entries to no avail in the most recent version of WordPress, testing with Chrome and Firefox:
[catlist fade=true categorypage=yes offset=0 excerpt=yes excerpt_size=30 instance=1 tags="reviews,awards" pagination=yes numberposts=3 orderby=rand]
I’ve tried permutations of numberposts and orderby and instance and excerpt codes as well, altering and removing them. I have wondered if the fact that I’m in a localhost environment is the problem but I don’t see how that would affect the link for next page.
I’ve also looked in vain for anyone posting to a live site running this plugin with pagination so I can actually see what the link ought to be instead of what my site is generating, which might provide a clue. As I said in the previous post, the code generated for page 2 is:
https://localhost/hello-world/?lcp_page1=2#lcp_instance_1
which upon clicking takes you to the first item of the list. Page 3’s code is exactly the same except the 2 is a 3. And so on regardless of how many pages.
Forum: Plugins
In reply to: [List category posts] Pagination links scroll to top of same pageI am also having this issue. The link to more or page 2 etc all go to the current page instead of the right link. I’ve tried simple to complex configurations but I’m stumped.
The link generated for page 2, for example is: