Exposed Filter in Views Redirects to Page Display Path Instead of Block Path

Created on 19 July 2024, 9 months ago

Problem/Motivation

When creating a view in Drupal with an exposed filter, and then embedding this view as a block on a specific page, the user is redirected to the page display path of the view when applying the filter, instead of staying on the same page where the block is embedded.

Steps to reproduce

Install Drupal 10.3.1 with the standard profile.
Add a new "Test view" view with default settings (Show: Content of type: All, etc.).
Click "Save and edit".
Add a new filter for Content type and enable the "Expose this filter to visitors, to allow them to change it" option. Save the settings.
Add a new Block display to the view.
Add a new Page display to the view.
Set the path for the Page display to "test-view".
Save the view.
Create a new "Basic page" node with the title "Test page" and the URL alias "Test". Save the node.
Navigate to Structure > Block layout and click "Place block" in the Content region.
Find the "Test view" block and click "Place block".
In the Visibility section, go to the Pages tab and enter "/test". Save the block.
Open the "/test" URL and observe the page with the injected view block containing the exposed Content type filter.
Select any value from the Content type dropdown and press Apply.

Expected Behavior:
The user remains on the same page, and the view block updates to show the filtered results.

Actual Behavior:
The user is redirected to the "/test-view" URL, the path set for the view page display, causing confusion and navigation issues.

🐛 Bug report
Status

Active

Version

10.3

Component
Views 

Last updated about 8 hours ago

Created by

🇺🇸United States xopoc

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

Comments & Activities

  • Issue created by @xopoc
  • 🇮🇳India DimpleL

    Hi, As a workaround, you can use the setting available under Advanced called "Use AJAX." Setting "Use AJAX" to "yes" will resolve the issue for now.

  • Status changed to Closed: works as designed 8 months ago
  • 🇳🇱Netherlands Lendude Amsterdam

    This is by design, Views will look for the first display with a path and use that. You can try #2 or make the block and page be separate Views and not 2 displays on the same View.

  • 🇺🇸United States RichardDavies Portland, Oregon

    I'm sorry, but if this is "works as designed" then I think this is poorly designed. Please explain to me why I'd want the exposed filters in my view block to target another random display in that view. You said it uses the "first" display with a path, but it doesn't use the first display according to the configured display order within the view, it uses the first display defined in the view's YAML config file.

    If this works as expected with a view containing only a single block, then it should work the same with a block in a view that also contains other displays.

  • 🇺🇸United States RichardDavies Portland, Oregon

    There's a similar problem if you enable Views Bulk Operations on a view embedded as a block. The bulk operations also incorrectly target the wrong page path. However, in this case, enabling AJAX doesn't work as a workaround. So you're telling me that now I need to recreate this block in a completely new separate view and reconfigure my pages/blocks just because I've added bulk operations and this is by design?

  • 🇺🇸United States RichardDavies Portland, Oregon

    Reopening because you shouldn't need to completely reconfigure your views just because you add bulk operations to a certain display.

  • Status changed to Active 2 months ago
  • 🇳🇿New Zealand quietone

    Changes are made on on 11.x (our main development branch) first, and are then back ported as needed according to the Core change policies .

  • 🇦🇺Australia NicolasH

    I went through exactly the same issue, including VBO and ajax not resolving this. Only thing to add that I started with an embed display, same thing, then switched to block.

    Also agree with richarddavies that "by design" is a bit of a stretch. I have not come across other situations where different displays inherit properties without there being a way to overwrite it per display. I get that there is no page path on a block or embed where I could possibly overwrite it, but in that case it should be implied, not borrowing from another display without any indication that it's doing so.

    IF a redirect path is required in scenarios like exposed filters and VBO, maybe this could be a setting with replacement patterns? And even if ajax is solving the exposed filters case, most users will see ajax as an option, not a requirement I'd say.

  • 🇮🇳India Ishani Patel

    Hello,
    I've checked the problem and I have an approach for that,
    1) we can enable AJAX for the View
    - In the Advanced section, locate the Use AJAX setting and set it to Yes.
    2) Configure the Exposed Form as a Block
    - Go to the advanced section and set the Exposed form in block to Yes.
    3) Modify the Form's Action Attribute
    - We can Implement hook_form_alter() in the custom module to change the form's action URL and set the form's action to the current
    page's URL.

    Thank you!

Production build 0.71.5 2024