Hi - I get that we can swap out the default member homepage using a specific page. Is it possible to use a wordpress page as a start page? Thank you.
Hello, You can use the following code snippet in site.php: https://docs.amember.com/docs/Site_php_file PHP: class DashboardController extends Am_Mvc_Controller{ function indexAction() { Am_Mvc_Response::redirectLocation('/any/your/url'); }}Am_Di::getInstance()->router->addRoute('dashboard', new Am_Mvc_Router_Route('member', [ 'module' => 'default', 'controller' => 'dashboard', 'action' => 'index',])); replace /any/your/url in code above with url of your desired page. Best Regards.