Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #824083

    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.

    #824791

    Hey Guenter,

    I see only one on this page. Do you see more?

    Best regards,
    Victoria

    #830376

    sorry – i used that page to demonstrate something on another thread.

    Look again please

    #831981

    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

    #832309

    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

    #833263

    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

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.