- πΊπΈUnited States kiranmayi.acharya
Tried to follow the solution mentioned above, however it seems to be giving a trouble for our websites.
https://screenrec.com/share/LjDY6v1oaZ - πΊπΈUnited States reshma.i
In my case, there is already option "Include the selected below" selected and paragraph types are enabled for the content type. I am not able to update the existing content which have more data added into paragraph types.
I have tried above solution, "Exclude the selected below" and enabled Paragraph types accordingly. but didn't work for me.
I am getting below error for some contents and many paragraph types when editing content,
This entity (paragraph: ID) cannot be referenced.
- Status changed to Active
about 2 years ago 9:06pm 3 April 2023 - Status changed to Fixed
over 1 year ago 8:10pm 2 August 2023 Automatically closed - issue fixed for 2 weeks with no activity.
- Status changed to Fixed
about 1 year ago 3:14pm 23 April 2024 - π¨π¦Canada vamirbekyan Toronto
@reshma.i, hving the same issue. How it was fixed for you?
- πΊπΈUnited States reshma.i
Debugging "This entity (paragraph: ID) cannot be referenced." Error
If you're encountering this error while editing content with Paragraphs, especially after changing paragraph type permissions, consider the following checklist.- Go to: Structure β Content types β [Your Content Type] β Manage fields β [Paragraph field].
- Ensure the "Allowed paragraph types" includes all types currently used in your content.
- If uncertain, switch to "All paragraph types" temporarily to confirm if that resolves the issue.Or
Check for Custom hook_query_alter() In my case issue was with this unwanted hook.
If youβve recently added custom code using hook_query_alter() (or similar), it might be interfering with paragraph loading.Example:
function MYMODULE_query_alter(QueryAlterableInterface $query) { // Check if this is affecting entity reference or paragraphs }