Forum Replies Created

Viewing 15 replies - 91 through 105 (of 155 total)
  • Plugin Contributor farinspace

    (@farinspace)

    Does this also happen when you edit an existing press coverage?

    Does it only happen on press coverage and not on press release?

    • This reply was modified 9 years, 1 month ago by farinspace.
    Forum: Plugins
    In reply to: [Nooz] CSS Class Names
    Plugin Contributor farinspace

    (@farinspace)

    My apologies, I might not have explained it properly .. it’s on the Nooz > Settings page in the WordPress admin UI (/wp/wp-admin/admin.php?page=nooz). You will find what you need in the “Help” menu (top right, under the logout link of the wpadminbar)

    Forum: Plugins
    In reply to: [Nooz] CSS Class Names
    Plugin Contributor farinspace

    (@farinspace)

    Hi Steven, I did a quick test (Appearance > Customize > Additional CSS) and I’m going to give you the classic response “it works for me”. However, I am sure there is something that is causing your issue. Perhaps try qualifying the CSS with body or a parent ID.

    body .nooz-datetime {
        color: #e5e5e5;
        display: block;
        margin-bottom: 5px;
    }
    
    #parent .nooz-datetime {
        color: #e5e5e5;
        display: block;
        margin-bottom: 5px;
    }
    

    Typically it all comes down to targeting, I usually use the dev console on firefox, to see the ordering of styles that are applied, this helps me track down how classes are inheriting, qualified and which CSS is loaded and when.

    Additionally, you can find a full list of Nooz class-names and options by going into the news settings and the Help menu above (top right). It is all pretty well documented.

    Let me know what you find out, I am here to assist! 🙂

    Plugin Contributor farinspace

    (@farinspace)

    Do you have a role management plugin installed? (is so, what is the plugin called so that I can troubleshoot).

    Plugin Contributor farinspace

    (@farinspace)

    We, developers, have experienced such issues for ages.

    Just from your description, this sounds like a browser caching symptom. Browsers will usually cache a page, so that subsequent retrieval is much faster, however this becomes and issue when you are making edits and want immediate feedback/updates. In my experience some browsers are sticker than others (e.g. present caching issues much more so than others).

    Caching is compounded when other mechanisms are used, caching in the browser, caching in a plugin, caching on the server, caching at the ISP. It is tricky to track down sometimes.

    Usually one or two browser refreshes will do it. Additionally you can try viewing the site in “private” mode (e.g. incognito), most browsers have this option. Also, if you have a caching plugin installed, you can try purging the cache.

    • This reply was modified 9 years, 2 months ago by farinspace.
    • This reply was modified 9 years, 2 months ago by farinspace. Reason: added clarification
    Plugin Contributor farinspace

    (@farinspace)

    Other than the yearly grouping, that I think you’re already aware of, there isn’t functionality like that implemented out-of-the-box. However, if you are so inclined you can create and attach your own taxonomies to the two post types nooz_release and/or nooz_coverage.

    The custom post types are created on action init so you would have to hook-in after that:

    add_action( 'init', 'my_custom_taxonomy', 11 );
    function my_custom_taxonomy() {
        // see: https://codex.wordpress.org/Function_Reference/register_taxonomy
        register_taxonomy( 'my_date_tag', 'nooz_coverage', $args );
        register_taxonomy_for_object_type( 'my_date_tag', 'nooz_coverage' );
    }
    

    Creating the initial taxonomies for existing month/years may be a manual process. But after that I would recommend hooking into action save_post and doing it automatically (on publish, if current month/year doesn’t exist, create it, then add post to it)

    Once you have taxonomies, you will have more sorting flexibility. You can even hook into the Nooz WP_Query args with filter nooz_shortcode_query_options.

    It does sound a bit complex, but it can be done. Providing easier sorting out-of-the-box is on our todo/roadmap.

    Plugin Contributor farinspace

    (@farinspace)

    My apologies for the late reply, hopefully you’re issue has already been resolved.

    The easiest way, is to simply hide the date, you can do this with the following CSS:

    .nooz-datetime {
        display: none;
    }
    

    The Nooz plugin has several CSS class names which you can use to manipulate it’s look and feel.

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

    (@farinspace)

    Hi, I will try to help .. what was the exact CSS that you entered (I assume you are familiar with writing CSS syntax)?

    However, if I am to take your comment literally, just entering:

    nooz-link
    nooz-datetime
    nook-excerpt
    

    would definitely result in the entire CSS file becoming temporarily invalid. Here are some sample CSS instructions/syntax, to get your started:

    .nooz-link {
        color: #ff0000;
        font-size: 32px;
    }
    .nooz-datetime {
        font-weight: bold;
    }
    .nook-excerpt {
        color: #999999;
        padding-left: 40px;
    }
    

    Here is some basic info on CSS syntax, additionally Google “css cheatsheet” and you’ll get up an running on no time.

    • This reply was modified 9 years, 3 months ago by farinspace. Reason: code formatting
    Plugin Contributor farinspace

    (@farinspace)

    Out of the box, the news layout is basic, allowing for your customizations. With a little CSS you can do a lot.

    Here are a few examples:

    https://www.mist.com/news/
    http://www.nyansa.com/news/
    http://healthfidelity.com/news/
    http://galacticexchange.io/news/

    • This reply was modified 9 years, 3 months ago by farinspace.
    Plugin Contributor farinspace

    (@farinspace)

    Out of the box this is not supported, however Nooz has several developer hooks which may help you set something like this up. However, your ideas are very welcome, I think this is definitely an important feature which is being considered for addition in a future release.

    add_filter( "nooz_release_custom_post_type_options", "my_custom_func" )
    use this filter to change or adjust custom post type options

    add_action( "init", "my_custom_func", 11 )
    use this to register post taxonomies after the press release custom post type is registered

    add_filter( "nooz_shortcode_query_options", "my_custom_func" )
    use this to filter the WP_Query options, allow you to filter on taxonomies (tags, categories, etc).

    • This reply was modified 9 years, 4 months ago by farinspace.
    Forum: Plugins
    In reply to: [Nooz] Edit page
    Plugin Contributor farinspace

    (@farinspace)

    Apologies for the very late reply, please let me know if you are still having issues and I will do my absolute best to help.

    Here is some further details that might help you:

    By creating a “Post Type Template”, have a look at: https://codex.wordpress.org/Post_Type_Templates, you can further customize the layout of press releases (e.g. adding a sidebar or other layout).

    You would have to create one or both of the following files in your current theme directory:

    archive-nooz_release.php
    single-nooz_release.php

    Note that you may still need another plugin to target specific “Posts” to further tailor the sidebar content.

    Plugin Contributor farinspace

    (@farinspace)

    Apologies for the very late reply, please let me know if you are still having issues and I will do my absolute best to help.

    Plugin Contributor farinspace

    (@farinspace)

    This is more of an editorial issue. At first glance it appears that the first two items are auto generated excerpts (meaning that there is no content entered in the excerpt field for the press release). The others seem like the excerpts were manually entered.

    You can also adjust core WordPress functionality for excerpts by adding the following to your functions.php file:

    
    // change the default WordPress excerpt length to 30 characters
    function custom_excerpt_length( $length ) {
      return 30;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
    

    With the above code, when there is no excerpt (manually added via the excerpt field), it will auto generate an excerpt of at max 30 characters.

    Plugin Contributor farinspace

    (@farinspace)

    You would have to create a custom template for the “nooz_release” custom post type. See: https://developer.wordpress.org/themes/basics/template-hierarchy/ .. This would allow you to modify the output of the page.

    If you are referring to the shortcode output (the list of press release items, on the main press releases page). This page uses the “post_title” for it’s lists. Nooz has a filter you can use to filter the final data used for output, this may be helpful in reworking the titles: “nooz_shortcode_data”.

    Forum: Plugins
    In reply to: [Nooz] Space and colors
    Plugin Contributor farinspace

    (@farinspace)

    you could try the following:

    The following is specific the the headline:

    .nooz-link a {
        color: blue;
    }
    .nooz-link a:hover {
        color: red;
    }

    You can make all nooz links a certain color:

    .nooz-list-wrapper a {
        color: blue;
    }
    .nooz-list-wrapper a:hover {
        color: red;
    }

    Also be sure to check out the “Help” tab in WordPress, under the Nooz Settings menu, it will have all the info you need.

Viewing 15 replies - 91 through 105 (of 155 total)