• Resolved Sami SAKER

    (@samisaker1987)


    Hello,

    First things first, I want to express my gratitude for this wonderful plugin.

    I have an issue for which I need your help :

    1- I built a new website and in the homepage there is a block supposedly containing the 3 latest Press releases, the block itself is supposed to display Press releases horizontally.

    Q1- How do I proceed considering that I found that nooz doesn’t allow to have more than one shortcode ?
    Q2- Is there any CSS documentation since the default template doesn’t match my website style ?
    Q2.1-Considering there is a documentation, where am I supposed to insert the code (Within WP dashboard)

    Thanks,
    Regards

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter Sami SAKER

    (@samisaker1987)

    @farinspace Hello, is this forum dead?

    Regards

    Plugin Contributor farinspace

    (@farinspace)

    @samisaker1987, Nooz creates a post type called “nooz_release”, this means you do not have to use the nooz shortcode.

    When you need to produce custom markup it is recommended that you work directly in the template using “WP_Query” to fetch posts from a post type.

    Thread Starter Sami SAKER

    (@samisaker1987)

    Hello again,

    I’ll give it a try and keep an update to this thread. Thank you

    Thread Starter Sami SAKER

    (@samisaker1987)

    @farinspace Hello and thank very much for you answer !,

    I have one final question : How do I increase the size of Cards (Theme = Outline — Card styled theme) since results are showing small cards? Btw, is there any future update for Nooz ?

    My deepest regards

    Plugin Contributor farinspace

    (@farinspace)

    @samisaker1987, the best way to do this would be through CSS.

    Additionally you can use the ‘nooz_theme_file’ hook to use your own custom template and styles.

    add_filter( 'nooz_theme_file', 'my_nooz_theme_file' );
    function my_nooz_theme_file( $file ) {
        return get_stylesheet_directory() . '/template-parts/nooz-theme/theme.php';
    }

    You can copy + paste the “nooz/themes/outline” theme and use that as a starting point.

    We use nooz in our day to day, so we have updates coming.

    Thread Starter Sami SAKER

    (@samisaker1987)

    Things seems to work @farinspace space, I close this read since I have another question for which I’ll create a new one, I dont wish to dissipate the main title.

    My deepest thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Horizontal Display for a preview purpose’ is closed to new replies.