Add text above account sidebar menu

Hi,

Please try this PHP snippet:

add_filter(
 'hivepress/v1/templates/user_account_page',
 function($template){
  $menu = hivepress()->template->fetch_block($template, 'user_account_menu');
  return hivepress()->template->merge_blocks(
   $template,
   [
    'page_sidebar' => [
     'blocks' => [
      'custom_menu_block' => [
       'type' => 'container',
       '_order' => 10,
       
       'attributes' => [
        'class' => [ 'hp-widget', 'widget', 'widget--sidebar', 'widget_nav_menu' ],
       ],
       
       'blocks' => [
        'custom_text' => [
         'type' => 'content',
         'content' => '<p>Custom text</p>',
         '_order' => 5,
        ],
        
        'user_account_menu' => [
         'type'       => 'menu',
         'menu'       => 'user_account',
         '_order'     => 10,
        ],
       ],
      ],
     ],
    ],
   ]
  );
 },
 1000
);
1 Like