/ /website-builder/ /extensions/ /module-integration/ /order-form/

# Page Manager

Lagom WHMCS Client Theme Page Manager empowers you to configure settings for the Lagom WHMCS Client Theme pages, set different templates as well as assign basic SEO tags. Moreover, you will be given full freedom to create your customized templates or page overwrites.

# Main Page

In order to access and start managing the “Page Manager” functionality, follow these steps:

  1. Visit the “RS Themes” addon in your WHMCS admin area.
  2. Open the “Pages” tab.
  1. Categories - Lagom WHMCS Client Theme pages are divided into two categories “Client Area” and “Order Process”. Choose a category that you want to start managing.
  2. Show - when you access “Page Manager” for the first time, the main table will show pages that have at least two different templates to choose from. To display all pages, use the “Show” filter, and select the “All” option.
  3. SEO - display the SEO setting for a specific page. This option can be configured in Page Settings and has 3 different statuses:
    • Gray - SEO settings are disabled.
    • Orange - SEO settings are enabled but at least one field is not completed.
    • Green - SEO settings are enabled and all fields are correctly filled out.
  4. Template - displays the currently selected template for this specific page.

# Page Management

This section will become visible once you click on the “Manage” button in the main table.

# Page Template

The Page Template section shows available templates for the chosen Lagom WHMCS Client Theme page. As presented below, it displays templates available for the “Login” page.

# Template Settings

The Template Settings section presents settings available for the currently managed page template. Please note that this section is not available for all templates.

# Page SEO

This section of our addon allows you to adjust basic SEO settings for each page you manage. Use these tools to improve your page's visibility in search engines or to control access to its content. These settings provide the flexibility to customize how your pages are indexed and presented in search results.

# On/Off switcher

Allows you to enable or disable the SEO option for the selected page. Once enabled, additional configuration will show up.

# Search Engine Indexing

IMPORTANT: After installation of Lagom WHMCS Client Theme, the Page SEO feature is disabled by default which means the default WHMCS system configuration is applied, allowing pages to be indexed by search engines. To prevent pages from being indexed, you need to enable the Page SEO feature and set the "Search Engine Indexing" option to "Disallow". We strongly recommend reviewing and adjusting these settings manually to align with your website's specific SEO requirements.

This option defines if currently managed page should be crawled by the search engine robots. There are two options to choose with:

  1. Allow - When this option is enabled, the index, follow meta tag will be added to the <head> section of your page. This allows search engines to index the page and follow its links. Additionally, if you are using the Lagom WHMCS Website Builder (opens new window), the page will automatically be included in your sitemap for better search engine visibility.
  1. Disallow - When this option is selected, the noindex, nofollow meta tag will be added to the <head> section of your page. This prevents search engine crawlers from indexing the page or following its links. Additionally, if you are using the Lagom WHMCS Website Builder (opens new window), pages with this setting will be excluded from the sitemap, and the noindex, nofollow directive will be added to the robots.txt file. You can read more about it here.

# SEO Title

Important: SEO Title, SEO Description and Social Image options are not available for the following pages since it’s being generated automatically for the following pages:

  • Downloads Categories
  • View Announcement
  • Knowledgebase Article
  • Knowledgebase Categories

You can read more about it here.

Place page title which will be added to the <title> tag in your page HTML code. This title will be used by search engines, while listing your page in search result.

Our addon, will automatically generate additional tags, generated from this title:

  1. og:title - Learn more about Open Graph protocol (opens new window)
  2. twitter:title - Learn more about Twitter Cards (opens new window)

# SEO Description

Enter page description which will be added to the <meta name="description"> tag in your page HTML code. This title will be used by search engines, while listing your page in search result.

Our addon, will automatically generate additional tags, generated from this title:

  1. og:description - Learn more about Open Graph protocol (opens new window)
  2. twitter:description - Learn more about Twitter Cards (opens new window)

# Social Image

Upload graphic or choose from already existing graphics in your media library. Suggested graphic size is 1200x630px.

Selected graphics will be added to following tags:

  1. og:image - Learn more about Open Graph protocol (opens new window)
  2. twitter:image - Learn more about Twitter Cards (opens new window)

# SEO Translation

SEO text fields can be translated into required languages by clicking on "Translate" link, shown next to the field label.

Once "Translation" link is clicked, modal with multiple fields will be shown. Enter translation to required language fields, and click "Save Changes" button. If translation for specific language will not be provided, our system will display "Default" language in HTML code.

# Custom Layout

Custom Layout option give you the possibility to assign different Lagom Layout for managed page, this setting will overwrite settings made in Layout Manager.

  1. On/Off switcher - allows you to enable or disable the Custom Layout option for the selected page. Once enabled, additional configuration will show up.
  2. Main Menu Layout - choose what Main Menu layout should be displayed on currently managed page.
  3. Footer - choose what Main Menu layout should be displayed on currently managed page.

# Example Usage

Below video show example usage of this functionality. As you can see in "Layout" tab Lagom WHMCS Client Theme has "Default" navigation layout assigned for all pages. We'll assign "Left" navigation layout for "Homepage" page:

# Create Page Template

Tailor the client area or the ordering process page to your needs.

# How can I use this function?

  1. Overwrite Lagom WHMCS Client Theme pages. Your changes will not be overwritten by future theme updates.
  2. Perform the modification of already existing templates. Your changes will not be overwritten by future theme updates.
  3. Perform A/B tests by activating different templates for specific pages. Test which page layout meets your customer expectations.

# Modify existing page template

Using this feature, you can customize your already existing page template. Navigate to our Customize Existing Page documentation article find out more.

# Create new page template

This functionality gives you the possibility to customize a page that has only the “default” template. Refer to our Customize Existing Page documentation article for more info.

# Manage Custom Page

Under this section, you can set up custom WHMCS pages that do not exist by default in the Lagom WHMCS Client Theme package.

  1. Log in to FTP/SFTP of your WHMCS server.
  2. Go to the /templates/lagom2/core/pages directory.
  3. Create a new folder with the same file name as the .tpl file of your custom WHMCS page.
  4. Open the newly added folder and create the page.php file.
  5. Paste the below code to the page.php file.
    • display_name - define a page name displayed in the RS theme addon.
    • group - define under which page category this page should be displayed.
<?php
return [
    'display_name' => 'Access Denied',
    'group'        => 'Client Area'
];
  1. Your new page should be now visible in Page Manager.