Forum Replies Created

Viewing 15 replies - 76 through 90 (of 155 total)
  • Thread Starter farinspace

    (@farinspace)

    Thanks again, is the best way to deal with this type of issue, just to post a support request here?

    Plugin Contributor farinspace

    (@farinspace)

    >> Can we at least remove or hide the black date copy below the gray icon type?

    In looking at the page you posted earlier, the CSS I gave you worked exactly as intended, it left the original theme meta content (the gray copy) and removed the “date-location” content that Nooz inserts (the black date copy). If you would like the opposite, you can use the following instead:

    The following will remove the theme “meta” content.

    body.single-nooz_release .meta.blogPost {
        display: none; 
    }
    

    To be honest, I am unable to provide support beyond the scope of the plugin itself. It sounds like you need “Theme” related support. I’d recommend hiring a developer who can better manage CSS and code changes.

    Until Nooz progresses to a point where these changes can easily be made via a user-interface (UI), we try to keep all other options accessible (e.g. WordPress way of doing things, WordPress actions/filters, well-defined CSS, plugin help documentation).

    Another option would be to look into CSS a bit more, it is not extremely difficult to learn and will go miles in making front end changes.

    Plugin Contributor farinspace

    (@farinspace)

    Thank you for the comments, we appreciate it very much, we work for 5-star reviews, leave us some feedback! 😉 Thanks again, @zenzino

    Plugin Contributor farinspace

    (@farinspace)

    Nooz does not have functionality for 2-columns built into the “shortcode”. We do have plans for layout/theme picker on the roadmap, but until then Nooz does have excellent markup with well-defined CSS class names which will allow you to refine the look and feel.

    Here is a starter 2-col CSS setup:

    @media (min-width: 768px) {
        .nooz-list-wrapper .nooz-item {
            float: right;
            width: 49%;
        }
        .nooz-list-wrapper .nooz-item-odd {
            clear: both;
            float: left;
        }
    }
    
    Plugin Contributor farinspace

    (@farinspace)

    Nooz, exposes many CSS classes which you can use to style things to your liking. As we build the plugin further, improved UI will come about to make editing easier and easier. Until then, your case can be solved quickly with some CSS:

    .single-nooz_release .nooz-location-datetime {
        display: none;
    }
    

    I would, however, recommend that you create and make edits to a template file directly (this would be a better fix).

    1) copy “single.php” to “single-nooz_release.php”
    2) there you will see code related to post author, date, etc., you can add/remove bits to your liking.

    Plugin Contributor farinspace

    (@farinspace)

    Hi, if you haven’t already resolved your issue, this should help:

    https://wordpress.org/support/topic/static-post-titles-customizing-post-formatting/

    Plugin Contributor farinspace

    (@farinspace)

    Nooz will use the default WordPress template (usually the blog template) for it’s Press Release Post Type. It looks like those items, pencil, author and clock are coming from the default WordPress template (maybe single.php or index.php) …

    You can change this, see: https://wordpress.org/support/topic/static-post-titles-customizing-post-formatting/

    Plugin Contributor farinspace

    (@farinspace)

    Apologies for a late reply (we all had a long week off). I do hope you have gotten things sorted already. If not, have a look at the help menu, go into Nooz > Settings > Help (upper right corner). You can browse through the docs, specifically the shortcode docs.

    Using [nooz type="coverage" count="3"] should be what you are looking for.

    Forum: Plugins
    In reply to: [Nooz] Pagination
    Plugin Contributor farinspace

    (@farinspace)

    Hi,

    Per your email, Let me see if I can help you.

    * How many press-releases have been created?
    * What is the number for “Nooz > Settings > Display Count” that you are using?

    Keep in mind that pagination links will ONLY show up if available press release are greater than the display count. Is this the case?

    I’ve also taken a look at your page and I’ve created a few styles that should get you started:

    .nooz-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .nooz-item {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
    }
    .nooz-link {
        font-size: 18px;
        margin: 0 !important;
        order: 1;
    }
    .nooz-datetime {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 10px;
        order: 2;
    }
    .nooz-excerpt {
        display: inline;
        order: 3;
    }
    .nooz-more-link {
        display: inline;
        order: 4;
    }
    

    Here is some additional information for reference and info on CSS syntax:

    https://www.w3schools.com/css/css_syntax.asp
    https://css-tricks.com/snippets/css/a-guide-to-flexbox/

    Note: We usually refrain from accessing a user’s admin/website as a policy but would give you the following recommendations:

    1) Disable the “Read More” link in “Nooz > Settings > Read More Links”, the main title/link should be enough.

    2) Use “List” as the “Display Type” in “Nooz > Settings > Display Type”.

    Forum: Plugins
    In reply to: [Nooz] Pagination
    Plugin Contributor farinspace

    (@farinspace)

    If you have pagination enabled in Nooz > Settings > Pagination, then you should not have to add the use_pagination="yes" into the shortcode. However, if it is enabled, all shorcodes used will display pagination. Note that pagination links only shows up if count="[n]" is exceeded, see Nooz > Settings > Display Count.

    What version of the plugin are you using?

    The “Mist” website uses Jetpack for its social icons. I would also recommend using AddThis (https://www.addthis.com/), we have add success with it in the past as well.

    By default Nooz, does not come pre-styled (we are working on a new version which will make styling a bit more wysiwyg). However, Nooz and the markup that it generates should lend it self well to styling. You will have to use CSS to do that. Additionally there are many hooks which will allow you to go as far as even changing the template for layout purposes.

    If you have additional questions, I can try to assist as best I can … support at mightydigital dot com

    Plugin Contributor farinspace

    (@farinspace)

    You can have both press release and coverage on the same page, see some Nooz examples:

    https://wordpress.org/support/topic/example-of-sites-powered-by-this-plugin/

    Plugin Contributor farinspace

    (@farinspace)

    I am reposting this because something got screwy with the WordPRess.org markup in my previous post:

    —–

    Using [nooz] alone will by default only display the “press releases”.

    On your news page you can use the following markup and shortcodes (fyi .. this is the same markup and shortcodes that Nooz uses with the pages it auto creates during plugin installation).

    /news/

    <h2>Press Releases</h2>
    [nooz type="release"]
    <p class="nooz-release-more-link nooz-more-link">More Press Releases ...</p>
    
    <h2>Press Coverage</h2>
    [nooz type="coverage"]
    <p class="nooz-coverage-more-link nooz-more-link">More Press Coverage ...</p>
    

    /news/press-releases/

    [nooz type="release" use_pagination="yes"]
    

    /news/press-coverage/

    [nooz type="coverage" use_pagination="yes"]
    

    For a more detailed usage instructions of the shortcodes, see the “help” menu. You can find it by going to Nooz > Settings > Help (upper right corner).

    Plugin Contributor farinspace

    (@farinspace)

    Although coverage is a post type, it currently is a special post type. The nooz_coverage post type does not display a dedicated page (like a press release does). When you create a coverage item you assign an external link to this item (hence no page needs to be created). Because of this, we treat and handle the nooz_coverage post type a little differently.

    With this being said, we have plans on a future version of Nooz, which will further enhance press coverage. Allowing the option of an external link (current behavior) or the creation of a dedicated page, where you could post a coverage video, PDF download, etc.

    I hope this answers your question and provides a bit more clarity. Do feel free to ask more questions and let us know what you think of the plugin in general.

    • This reply was modified 9 years, 1 month ago by farinspace.
    Plugin Contributor farinspace

    (@farinspace)

    Using [nooz] alone will by default only display the “press releases”.

    On your news page you can use the following markup and shortcodes (fyi .. this is the same markup and shortcodes that Nooz uses with the pages it auto creates during plugin installation).

    /news/

    <h2>Press Releases</h2>
    [nooz type="release"]
    <p class="nooz-release-more-link nooz-more-link">More Press Releases ...</p>
    
    <h2>Press Coverage</h2>
    [nooz type="coverage"]
    <p class="nooz-coverage-more-link nooz-more-link">More Press Coverage ...</p>
    

    /news/press-releases/

    [nooz type="release" use_pagination="yes"]
    

    /news/press-coverage/

    [nooz type="coverage" use_pagination="yes"]
    

    For a more detailed usage instructions of the shortcodes, see the “help” menu. You can find it by going to Nooz > Settings > Help (upper right corner).

    • This reply was modified 9 years, 1 month ago by farinspace. Reason: text corrections
    • This reply was modified 9 years, 1 month ago by farinspace.
    • This reply was modified 9 years, 1 month ago by farinspace.
    Plugin Contributor farinspace

    (@farinspace)

    Nothing should be blocking Nooz from being in the WordPress search. That being said, most of our dev work (where we use Nooz ourselves) does not use search (it hasn’t been tested much).

    I’ve taken a quick look at some of the sites where we do use Nooz, and I do see Nooz search results, albeit it appears like there can be some work done in this area.

Viewing 15 replies - 76 through 90 (of 155 total)