• In the second code box you can see that there is:

    INNER JOIN sys. tp ON [tp].[system_type_id]

    But it shuold be:

    INNER JOIN sys.[types] tp ON [tp].[system_type_id]

    When [] brackets are removed, it will show ..sys.types…

    This behavior should be corrected because [] brackets are commont in T-SQL language and any word can be enclosed within them.

    Thank you

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Andi Dittrich

    (@andi-dittrich)

    Hi,

    it works as expected within the testing environment. since the syntax looks like a wordpress shortcode, i would assume that one of your plugins or themes is adding the shortcode [ types ] to your site.

    there are two possibilities to solve this issue:

    1. find and remove/deactivate the third-party shortcode
    2. escape the shortcode using double brackets [[..types..]]

Viewing 1 replies (of 1 total)
  • The topic ‘When [types] is in the syntaxt it’s not render when displaying the page.’ is closed to new replies.