• Resolved maurichieri

    (@maurichieri)


    Hi everyone

    i´m start to use a PODS framework and CUSTOM CONTENT SHORTCODE.
    i have a taxonomy (category) grupo_farmacologico (pharmacologic_group) and would like to index this in a page and show it (display).
    above this i would like to display a custom post type medicamento (medicament) in a list.

    it is possible after click in a medicament in a list open a pop up to display informations about medicament?

    how can i do that?

    I´m not a programmer.. i´m a veterinary ok? i have some dificult to understanding the plug in.
    thanks

    https://wordpress.org/plugins/custom-content-shortcode/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Eliot Akira

    (@miyarakira)

    Hello,

    i have a taxonomy (category) grupo_farmacologico (pharmacologic_group) and would like to index this in a page and show it (display).

    You can use [for] and [each] to make a list of taxonomy terms:

    [for each="grupo_farmacologico"]
      [each link]
    [/for]

    This will make a list of all existing terms. Please refer to the documentation under Settings -> Content, in the section Main Features -> Taxonomy -> For/Each.

    above this i would like to display a custom post type medicamento (medicament) in a list.

    You can use [loop] to display a list of posts in a custom post type.

    [loop type="medicamento"]
      [field title]
      [field excerpt]
    [/loop]

    Please refer to the documentation in the section Main Features -> Loop.

    it is possible after click in a medicament in a list open a pop up to display informations about medicament?

    This plugin doesn’t have a feature to display a pop-up. I’m thinking of an add-on extension to make this possible, but it doesn’t exist yet. I can let you know when I build it.

    Thread Starter maurichieri

    (@maurichieri)

    Thanks Eliot..

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘index taxonomy’ is closed to new replies.