User Subscriptions Table Broken
-
Hi !
WordPress Version: 6.7.2
Volunteer Sign Up Sheets: 5.5.2
PTA Extensions in use:- Customizer
- Automated emails
- Custom Fields
- Signup Templates
Description: I’ve encountered a rendering issue with the user subscriptions table on the user’s personal page. The table layout is broken, with rows appearing to be improperly nested in the HTML structure.
Issue Details: When viewing the My Subscriptions section, the table rows are displayed outside of the proper table structure. Examining the HTML, it appears that the rows (
<div class="pta-sus-sheets-row">) are placed outside of the table container (<div class="pta-sus-sheets-table">) rather than being nested within it.The HTML structure currently looks like:
<div class="pta-sus-sheets user"> <div class="pta-sus-sheets-table"> <div class="pta-sus-sheets-row pta-sus-header-row"> <!-- Header columns --> </div> </div> <div class="pta-sus-sheets-row"> <!-- Content row 1 --> </div> <div class="pta-sus-sheets-row"> <!-- Content row 2 --> </div> <div class="pta-sus-sheets-row"> <!-- Content row 3 --> </div> </div>The correct structure should be:
<div class="pta-sus-sheets user"> <div class="pta-sus-sheets-table"> <div class="pta-sus-sheets-row pta-sus-header-row"> <!-- Header columns --> </div> <div class="pta-sus-sheets-row"> <!-- Content row 1 --> </div> <div class="pta-sus-sheets-row"> <!-- Content row 2 --> </div> <div class="pta-sus-sheets-row"> <!-- Content row 3 --> </div> </div> </div>Steps to Reproduce:
- Log in as a user with active subscriptions
- Navigate to the user’s personal page where subscriptions are displayed
- Observe the broken table layout in the My Subscriptions section
Expected Behavior: The subscription table should display correctly with all rows properly aligned in a coherent table structure.
Thanks for your help !
The topic ‘User Subscriptions Table Broken’ is closed to new replies.