Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Eliot sir!

    Works! – just like you said. Thank you for the prompt response.

    Similar question:

    I have a [-loop] within a [loop] which works fine. The outer loop is for cycling through “research areas” and the inner loop is “publications.” So in the inner [-loop], I am pulling the list of publications for each research area. The problem is that the list of publications generated by the inner [-loop] are not sorting properly according to their “date_published” custom field. BTW, sorting worked fine in another page where the query involved a single [loop].

    p.s. i am using [c] together with easy bootstrap shortcode. below is my page”

    [loop type="research_area" ]
    [ebs_panel style="panel-default" class="ceage_projects"]
      [ebs_panel-header]
        [field title]
      [/ebs_panel-header]
    
      [ebs_panel-content]
             [ebs_table width="100%" style =" table-hover" responsive ="false" class="presentation_table"]
               [ebs_table_head]
                 [ebs_th_column]Date[/ebs_th_column]
                 [ebs_th_column]Publication Title[/ebs_th_column]
               [/ebs_table_head]
               [ebs_table_body]
                [pass field_loop="connected_publications"]
                 [-loop type="publication" id="{FIELD}" orderby="meta_value_num" key="publication_date" order="DESC"]
                   [ebs_table_row]
                      [ebs_row_column][field publication_date date_format="m/Y"][/ebs_row_column]
                      [ebs_row_column]<a href="[field url]">[field title]</a> </br> &lsqb;[field type]&rsqb;[/ebs_row_column]
                   [/ebs_table_row]
                 [/-loop][/pass]
               [/ebs_table_body]
             [/ebs_table]
      [/ebs_panel-content]
    [/ebs_panel]
    [/loop]
    Thread Starter yonael

    (@yonael)

    Eliot: thank you so much for the prompt response. Yona.

    In my case the issue went away after I suspended (deactivated) the following plugins:

    * jQuery updater
    * jQuery Vertical Accordion Menu
    Hope it helps.

    yonael

Viewing 4 replies - 1 through 4 (of 4 total)