it seems that there is no count on that ID’s implemented.
If i use more than one grid-row on one page there are #after_submenu again and again.
Hey Guenter,
I see only one on this page. Do you see more?
Best regards,
Victoria
sorry – i used that page to demonstrate something on another thread.
Look again please
Hi,
That is the default behavior of the builder after adding a grid row element. Line 364 of grid_row.php file.
$output .= avia_section_after_element_content( $meta , 'after_submenu', false);
It closes the grid row container and then create a new section with the “after_submenu” id if there are contents after.
Best regards,
Ismael
yes but this will end in a nonvalide code – duplicate IDs. so – if grid element can have a count (av-layout-grid-1. etc.) why not the after_submenu ?
or change in code from id to class after_submenu
Hi,
Ah. Yes. Thank you for the info. Please replace the line with the following.
$output .= avia_section_after_element_content( $meta , 'after_submenu_' . avia_sc_grid_row::$count, false);
It will append a number after the “after_submenu_” id. We will report the issue to Kriesi.
Best regards,
Ismael