Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author mightydigital

    (@mightydigital)

    The HTML output provides many CSS class names that you can use to customize the look and feel. CSS would be the first option at customizing your output.

    Second to that, we just released v0.11.0, which adds a filter that you can use to modify the shortcode HTML output.

    add_filter( 'nooz_shortcode', function ( $output, $data ) { return $output; }, 10, 2 );

    With this filter you get the final HTML $output and the $data associated with that output.

    You are free to create your own output using the provided $data.

    Ditto Dito

    (@ditto-dito)

    @annalisa16 : I wanted to do the same thing, and the filter is the reply. Not sure how you feel, but this is a disappointing fix.

    Plugin Contributor farinspace

    (@farinspace)

    @annalisa16, here is a example which will get you started:

    // functions.php
    https://gist.github.com/farinspace/39c8c35acd945575dea1

    // my_custom_template.php
    https://gist.github.com/farinspace/657feb27580e7b2c0222

    Ditto Dito

    (@ditto-dito)

    Nice! Much better than what I came up with. Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change order of how the press coverage appears’ is closed to new replies.