dyamized
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Checkout broke with 8.3.0@kevinplusplus great work!
Forum: Plugins
In reply to: [WooCommerce] Checkout broke with 8.3.0The totals are correct on the Cart page.
I will add that I am using the “woocommerce_checkout” shortcode.
Do you know any changes in 8.3 in regards to calling the ajax “update_order_review”? Is that done differently?
Forum: Plugins
In reply to: [hCaptcha for WP] Issue with Ajax + Invisible hCaptcha + older browserWell, I realize now that this won’t work if the form doesn’t have a submit event handler.
A more generic approach would be to add a requestSubmit polyfill, and use it, or just duplicate what is does.
Here’s an example:
https://github.com/javan/form-request-submit-polyfill/blob/main/form-request-submit-polyfill.js
Forum: Plugins
In reply to: [Ultimate FAQ Accordion Plugin] Escaped XML/HTML gets removed from outputI think you know that you shouldn’t have to write out HTML entities in the VISUAL EDITOR, which is the only way to to do it with your plugin. But it doesn’t seem like you are interested in making it work the way it is supposed to.
Forum: Plugins
In reply to: [Ultimate FAQ Accordion Plugin] Escaped XML/HTML gets removed from outputThis is a very odd response. No other WordPress plugin handles content this way.
I can write any post, page, etc, and if I use the visual editor and add things with “<” characters, that gets escaped in the database. In fact, the same thing happens with your plugin. I can see that the my code is escaped (properly) in the database.When this is rendered, it should be left escaped, so that visually it shows the “<” characters. It should not be converted back to “<” in the raw HTML or stripped from the output.
What you are saying is that it is impossible to write an FAQ response about an HTML or XML topic.
For example: Question: “How do a I specify the title of an HTML page?” Answer: “With the <title> tag, inside of a <head> tag.”
Will you acknowledge that you can’t write this very simple answer with the plugin? And then tell me, with a straight face, that it is a non issue?
Forum: Plugins
In reply to: [Ultimate FAQ Accordion Plugin] Escaped XML/HTML gets removed from outputYou have it absolutely backwards. You are not listening to me.
Please look at this page now:
https://www.dragonframe.com/blog/ufaqs/how-does-dragonframe-store-timeline-frame-edits-edit-decision-list/It shows how I want it to show.
It doesn’t matter what “<test>” is. “<test>” is something that I want to appear, as text, in the final output. It is not an HTML tag, and I do not want it inserted raw into the source output.In my example page, I have xsd elements, such as “<scen:edl>”, that I am trying to show to the user, as text. You can see it.
This page only works and displays “<scen:edl>” properly if I remove the “html_entity_decode” from the file I mentioned.Just try to make an FAQ answer that shows what you just wrote to me: “What is <test>?”
See if it renders.Forum: Plugins
In reply to: [Ultimate FAQ Accordion Plugin] Escaped XML/HTML gets removed from outputThat is not the same issue. But I tested your proposed solution and it did not work.
I am not trying to get html tags into my FAQ answer.
I write an answer in the visual editor. For example: “Here is a line with <test> in it.”
The editor correctly converts the “<” and “>” to html entities and stores it in the database that way. If I switch over to the “Edit as HTML” mode, I see the html entities. This is all correct.However, when I view the FAQ elsewhere, “<test>” is completely removed. The raw html should have “<test>”. Instead, it has nothing.
It should be: “<p>Here is a line with <test> in it.</p>”
It is: “<p>Here is a line with in it.</p>”- This reply was modified 2 years, 1 month ago by dyamized.
Forum: Plugins
In reply to: [Ultimate FAQ Accordion Plugin] Structure data invalid object typeI can’t be certain. I don’t normally look at this. I only did because Google gave me a warning about it.
But the code that generates the schema data was definitely wrong (the first code block I posted above). There’s no way it can be correct. So please look at that, and see if your changes address it.
Forum: Plugins
In reply to: [WooCommerce] Orders not showing in dashboardWell, for us it looks like an update to ‘WooCommerce PDF Invoices’ was the culprit. They got rid of a function that was used in a template we had previously customized. The weird thing was I did not see any PHP errors in the log. So I’m not 100% sure this was the issue, but I fixed the template, and now the orders are switching to the proper when created.
Forum: Plugins
In reply to: [WooCommerce] Orders not showing in dashboardWe just started having the same issue.
The orders have post_status ‘publish’ instead of a ‘wc-‘ status.
This is very serious, as the orders are not getting properly processed.