Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor blakewpe

    (@blakewpe)

    Hey @blackwiredesigns, just following up here. Did you have a chance to capture any screenshots?

    Plugin Contributor blakewpe

    (@blakewpe)

    @blackwiredesigns Thanks for the follow up. Though I am not able to replicate the issue myself. Could you please provide some screen shots of what is going on, and any console logs if they exist when 1.0.1 is installed?

    Plugin Contributor blakewpe

    (@blakewpe)

    Hi @blackwiredesigns,

    Thanks for opening an issue. Sorry to hear you are experiencing issues with the latest release.

    Could you tell me a bit more about your current setup? The following would be helpful in diagnosing what happened:

    • Previous version of the faustwp plugin you were on
    • Do you have any custom menus areas in Faust (besides the default Primary, Footer)?
    • When you say “broke our entire menu system” could you elaborate more on what happened? Did it break the UI in the admin panel? Or was this seen on the headless site?

    Thanks!

    Plugin Contributor blakewpe

    (@blakewpe)

    hi @amit648,

    You can use the following query to get all menu items for a specific menu, in this case “My Menu”. Notice the query requests the parentId field. This will enable you to put together a hierarchical menu by identifying which menu items have a parent or not.

    
    {
      menu(id: "My Menu", idType: NAME) {
        menuItems(first: 9999) {
          nodes {
            id
            label
            parentId
          }
        }
      }
    }
    
Viewing 4 replies - 1 through 4 (of 4 total)