Multiple shortcodes not working inside one tag.

Issue #646 new
Michiel Stegeman created an issue

Wrong problem description. Edited, see my comment. below

Comments (2)

  1. Michiel Stegeman reporter

    Okay, I've tested it done more, a links seem to work, but using two inside a class for example do not work. I've created a javascript based filter, that hides table rows based on their class. Classes are defined by it being in a specific Area of expertise (job field 20) education level (job field 10) and region (job field 12). So I'd like to have:

    <tr class="all electrical university noordholland"><td><a href="link">Title</a></td></tr> 
    

    However with my list template it just creates the following:

    <tr class="all "><td><a href="link">Title</a><td></tr>
    

    The table row class isn't filled with the appropriate classes.

    My Job list template:

    <table class="jobs-table" border="0">
    [job_loop]
    <tr class="all [job_field20] [job_field10] [job_field12]"><td><h4 class="job-title">[job_icon] [job_link][job_title][/job_link]</h4></td></tr>
    [/job_loop]
    </table>
    
  2. Log in to comment