Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
667 views
in Q2A Core by
Hi,

I'd like to create a new page, e.g. "Home", then mark it as the homepage so that all "home page" links direct to it.

I realize I can add custom content on the default page.  But I need to install a custom widget on the home page as well.

Can this be done?

Thanks
Q2A version: 1.5

1 Answer

+3 votes
by
selected by
 
Best answer
You just need to edit the qa-config.php by adding such a item to $QA_CONST_PATH_MAP  array:

$QA_CONST_PATH_MAP=array(
    'your-page-url-slug' => '',
)
by
Wow, amazing :)
...