AI Search
Classic Search
 Search Phrase:
 Search Type:
Advanced search options
 Search in Forums:
 Search in date period:

 Sort Search Results by:

AI Assistant
Notifications
Clear all

[Closed] Forum FAQ page

2 Posts
2 Users
0 Reactions
1,884 Views
SiteBastion
Posts: 41
Topic starter
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
(@sitebastion)
Trusted Member
Joined: 5 years ago
[#16605]

I've lost the forum FAQ page. I cannot find where to edit the page that /%wpforo-faq%/ leads to.

I've looked everywhere, I remember editing it but now I can't find any way to edit it. I've looked everywhere and searched both the documentation this forum for how to edit this.

Help?! (my brain has failed me)

 

Kim


1 Reply
Robert
Posts: 10752
Admin
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
(@robert)
Support Team
Joined: 3 months ago

@sitebastion

1. Create a simple WordPress page for your FAQ.

2. Install this plugin: https://wordpress.org/plugins/insert-pages/

3. Pick the FAQ page shortcode with the page ID, it should look like this: [insert page='ID' display='title|content']

4. Put the shorticde in the code below and insert the code in your active WordPress theme functions.php file:

function wpforo_page_show_faq( $template ){
   if( $template == 'faq' ){
      ?>
      <div class="wpforo-page wpforo-page-faq wpforo-text">
         <?php echo do_shortcode("[insert page='ID' display='title|content']"); ?>
      </div>
      <?php
   }
}
add_action( 'wpforo_page', 'wpforo_page_show_faq', 10 );

Then call this page with URL:

 https://example.com/community/?wpforo=page&view=faq 

You can put it in wpForo Menu, using "Custom Links" menu type in Dashboard > Appearance > Menus admin page. Use the wpForo Navigation menu.


Share: