Trey
Forum Replies Created
-
Hi @ykipp,
I am not able to replicate this on my end. I was able to upload an 11mb XLSX file without issues.
Does this only happen in one specific environment, or does it happen in every environment you test in?
Also, are you able to upload files of that size directly to your Media Library or does that also throw an error?
Hey @heartbreakkid58,
Unfortunately, this isn’t something we can help with because it’s not officially supported (there’s no integration), and Elementor’s data is quite complex, so it’ll likely require custom code and our API.
However, I will leave this thread open for a while in case someone can help out.
Hi @raalknz,
We don’t have an integration with the Pods plugin at this time, so importing their relationship fields isn’t supported out of the box.
Importing Pods data used to be possible with this third-party add-on: https://wordpress.org/plugins/custom-fields-csv-xml-importer/, but it hasn’t been updated in a while, so I’m not sure if it still works. It might be worth contacting the Pods developers to see if they have an updated version.
Hi @heartbreakkid58,
Unfortunately, we don’t currently have an integration with Elementor, and our free plugin does not support importing custom fields (which are needed for some Elementor data), so I’m afraid this wouldn’t be possible right now.
I am marking this as resolved since it’s been inactive for a while. If you still have questions about this, or if you’re still running into the same issue, feel free to follow up in this thread.
If anyone else has questions about this, please open a new topic.
Hi @vimalroy08,
Would it be possible for you to send us the problematic query that you’re using? I did a basic test on PHP 8.3 with this query:
'post_type' => 'post',
'post_status' => 'any'And, it worked without errors.
Forum: Plugins
In reply to: [WP All Import – Property Import for Realia] Edit property frontendHi @cristian200175,
This plugin, “Import Property Listings into Realia”, is an add-on for WP All Import that allows you to import property listings and edit them via imports by updating and re-running the import that created them: https://www.wpallimport.com/documentation/update-import/, or by setting up an import that updates existing items: https://www.wpallimport.com/documentation/update-existing-posts/.
Hey @simon_a6,
If I share on here the URL of the image, and the publish date as seen in the CSV, can you tell me what maybe wrong please?
The free version of WP All Import doesn’t support importing images, unfortunately.
As for the published date, yes, please send us the date as it is seen in the CSV, and a screenshot showing where you’re importing it.
Forum: Plugins
In reply to: [WP All Import – Import Add-On for ACF] term_relationships insert bugHey @monkeypress,
Apologies for the delay, I missed this post. You were right, this line was problematic, and we fixed it in the latest update. Thank you for bringing it to our attention!
Forum: Plugins
In reply to: [CSV Importer] Import CSV in sequenceHey @ingridwp1,
By default, WordPress orders posts by their post date in WP admin, so you can define the order by defining the post dates in the import file with 1 minute apart, like this:
csv_post_title,csv_post_post,csv_post_type,csv_post_excerpt,csv_post_date
Post 1,Content 1,post,Excerpt 1,2026-01-08 2:10pm
Post 2,Content 2,post,Excerpt 2,2026-01-08 2:09pm
Post 3,Content 3,post,Excerpt 3,2026-01-08 2:08pm
Post 4,Content 4,post,Excerpt 4,2026-01-08 2:07pm
Post 5,Content 5,post,Excerpt 5,2026-01-08 2:06pmHey @vnoben,
Thanks for bumping this. This fix is planned for the next release, as long as no major issues are found in testing.
Hey @iali83536,
Thanks for sharing this. Since you’re using our paid (Pro) plugins, please contact us about this issue here: http://www.wpallimport.com/support/. We are only able to help with our free plugins on this forum.
- This reply was modified 5 months ago by Trey.
Hi @iali83536,
That’s odd. Can you please send me a screenshot showing which versions of our plugins you’re using so I can try to reproduce it on my side?
Hi @ateufel,
Since this is an error in WP All Export Pro, can you please send this to use at http://www.wpallimport.com/support/? We can only help with our free plugins on this forum.
Hey @szympekk,
WP All Import searches for “{“, “}”, “[” and “]” to parse import elements and inline XPath/functions, which is why they’re being stripped. You can fix this by escaping all of those characters that are not meant to be elements or functions with backslashes:
<ol>
<li><strong>Example Question 1?</strong>Example answer text.</li>
<li><strong>Example Question 2?</strong>Example answer text.</li>
<li><strong>Example Question 3?</strong>Example answer text.</li>
</ol>
<script type="application/ld+json">
\{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": \[
\{
"@type": "Question",
"name": "Example question?",
"acceptedAnswer": \{
"@type": "Answer",
"text": "Example answer text.{example_variable[1]}"
\}
\},
\{
"@type": "Question",
"name": "Another example question?",
"acceptedAnswer": \{
"@type": "Answer",
"text": "Example {example_variable_2[1]}text."
\}
\}
\]
\}
</script>As for this:
if the JSON-LD script is not placed inside the <!– wp:html –> … <!– /wp:html –> wrapper, the importer automatically wraps the <script> tag inside <p> tags, and the content inside gets converted into <br> elements. This breaks the JSON-LD completely.
I couldn’t replicate it in my tests. Can you provide more details and screenshots showing how I can reproduce the issue on my side?