Incorrect page_title title in browser toolbar

Created on 20 June 2016, almost 9 years ago
Updated 26 August 2024, 7 months ago

On a page manager blocks display page, the variant's configured page title is displaying correctly in the page title block (<h1>), but in the <title> is using the Label set for the Page overall, instead of the defined variant title.

This wouldn't be too bad except I can't find a way to change the Page's label within the UI.

I've tracked the issue down to the _title callback in the dynamic route creation of PageMangerRoutes.php, (currently on) line 99:

'_title' => $entity->label(),

Original report by divined:

$request = \Drupal::request();
$route_object = \Drupal::routeMatch()->getRouteObject();
$page_title = \Drupal::service('title_resolver')->getTitle($request, $route_object);

Return page manager name instead of Page title.

πŸ› Bug report
Status

Needs review

Version

4.0

Component

Code

Created by

πŸ‡§πŸ‡¬Bulgaria divined

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡¨πŸ‡­Switzerland wengerk Lausanne

    Rerolled patch for Drupal 10.3.x

  • Pipeline finished with Failed
    7 months ago
    Total: 287s
    #264543
  • Pipeline finished with Failed
    7 months ago
    Total: 652s
    #264540
  • Pipeline finished with Success
    7 months ago
    Total: 338s
    #264570
  • πŸ‡¨πŸ‡­Switzerland wengerk Lausanne

    wengerk β†’ changed the visibility of the branch 2752227-incorrect-pagetitle-title to hidden.

  • πŸ‡¨πŸ‡­Switzerland wengerk Lausanne

    Openned an issue fork to run tests againts patch. I found some mistake on the rerolled patch in #50 and fix thoses issues on the Fork.
    Seems to works now. I just rerolled the patch and change this code.

      public function pageTitle($page_manager_page_variant) {
        if (is_string($page_manager_page_variant)) {
            $page_manager_page_variant = $this->entityRepository->loadEntityByConfigTarget('page_variant', $page_manager_page_variant);
        }
    

    to this

      public function pageTitle(Request $request) {
        $attributes = $request->attributes->all();
        if (!isset($attributes['_page_manager_page_variant'])) {
          return '';
        }
    
        if (is_string($attributes['_page_manager_page_variant'])) {
          $page_manager_page_variant = $this->entityRepository->loadEntityByConfigTarget('page_variant', $attributes['_page_manager_page_variant']);
        } elseif ($attributes['_page_manager_page_variant'] instanceof PageVariantInterface) {
          $page_manager_page_variant = $attributes['_page_manager_page_variant'];
        } else {
          return '';
        }
    
  • πŸ‡ͺπŸ‡ΈSpain guardiola86

    Fix in #51 works

  • πŸ‡¨πŸ‡¦Canada joseph.olstad

    Using page_manager with Drupal 11 I had to make this change:

    Sorry I haven't yet made a patch, but pasting the code:

    diff --git a/src/Controller/PageManagerController.php b/src/Controller/PageManagerController.php
    index 6cd4edb..e952bca 100644
    --- a/src/Controller/PageManagerController.php
    +++ b/src/Controller/PageManagerController.php
    @@ -44,27 +44,26 @@ class PageManagerController extends ControllerBase {
        * @return string
        *   The title for a particular page.
        */
    -  public function pageTitle($page_manager_page_variant) {
    -    if (is_string($page_manager_page_variant)) {
    -      $page_manager_page_variant = $this->entityRepository->loadEntityByConfigTarget('page_variant', $page_manager_page_variant);
    +   public function pageTitle(?PageVariantInterface $page_manager_page_variant) {
    +    if ($page_manager_page_variant === null) {
    +      // Provide a fallback title or throw an exception if a title is required.
    +      return $this->t('Default Page Title');
         }
     
         // Get the variant context.
         $contexts = $page_manager_page_variant->getContexts();
    -    // Get the variant page entity.
     
         $tokens = [];
    -
    -    foreach ($contexts as $key => $context){
    +    foreach ($contexts as $key => $context) {
           $tokens[$key] = $context->getContextValue();
         }
     
         // Get the page variant page title setting.
         $variant_title_setting = $page_manager_page_variant->getPageTitle();
    +
         // Load the Token service and run our page title through it.
         $token_service = \Drupal::token();
    -    return $token_service->replace($variant_title_setting,
    -      $tokens);
    +    return $token_service->replace($variant_title_setting, $tokens);
       }
     
     }
    
    
  • πŸ‡¨πŸ‡¦Canada smulvih2 Canada 🍁

    I was using patch #50 and this was causing an error after logging into my site. Using the latest MR from #51 fixed the issue for me, and now I can login to my site without error. Posting latest patch here so I can use it in my project.

  • πŸ‡ΊπŸ‡ΈUnited States dillix

    @smulvih2 patches is not recommended now, you should add merge request.

  • πŸ‡ΊπŸ‡ΈUnited States dillix

    dillix β†’ changed the visibility of the branch 8.x-4.x to hidden.

  • πŸ‡ΊπŸ‡ΈUnited States dillix
  • πŸ‡ΊπŸ‡ΈUnited States dillix

    MR in #51 doesn't pass tests on phpunit (next major). So we need fix tests.

Production build 0.71.5 2024