Zed

Forum Replies Created

Viewing 30 posts - 3,481 through 3,510 (of 6,635 total)
  • Author
    Posts
  • in reply to: Blurred post images on presentation page #43642
    Zed
    Cryout Creations mastermind

    Your featured images were generated at about 150px width but are now displayed at 250px width so it looks like you’ve changed the theme’s featured image size values since the images were uploaded to the site.

    You mention installing a thumbnail regeneration plugin, but do not mention using it to actually regenerate the thumbnails.
    My personal choice is this plugin, which once installed will add a separate section under Tools from where you can trigger the images regeneration process.

    By the way, thanks for crediting our work.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Presentation Page does not show up in menu #43641
    Zed
    Cryout Creations mastermind

    The theme’s presentation page is a special feature that gets enabled on top of the standard homepage, so it doesn’t appear separately in any page list.

    Have a look at our custom menu tutorial (specifically #5 about the home item).


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Text Shrunk After New Update! ***HELP*** #43640
    Zed
    Cryout Creations mastermind

    Please see https://www.cryoutcreations.eu/forums/t/fonts-shrink-on-update-to-1-5-0/#post-43639


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Fonts shrink on update to 1.5.0 #43639
    Zed
    Cryout Creations mastermind

    We’ve changed how the line height option works in the 1.5.0 update but didn’t correctly handle backwards compatibility – this caused it to reset at the smallest value upon the next settings save.

    We corrected this problem in 1.5.1 (already available) so the line height will work correctly over the update (you’ll need to re-set the option to the desired value or the default 1.7em if you’ve entered and saved theme settings while running 1.5.0).

    Version 1.5 also changes all font size from fixed (pixel-based) values to relative (em units). This can cause slight variations in font sizes throughout the site (under 1px), but nothing that would really be noticeable.
    Are you observing any major changes to font sizes with versions 1.5.0/1.5.1 or was the line height the only obvious problem?


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Image from post not on Category page when excerpt #43638
    Zed
    Cryout Creations mastermind

    The theme has separate options to use either the posts’ featured image or to automatically select a featured image from the post’s content. If both are enabled, the featured image will take precedence if one is assigned to the post.

    You’ll find these options under the theme’s Featured Image settings section.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Hide comments count on presentation page #43631
    Zed
    Cryout Creations mastermind

    The theme doesn’t have an option specifically for this change, but it can be done with custom CSS:

    @media (max-width: 650px) {
      .content-masonry .comments-link { display: none; }
    }

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Featured Images Problem! Urgent! #43630
    Zed
    Cryout Creations mastermind

    I recommend installing and using a SEO plugin that also handles the social side of things (titles, excerpts, featured images for shared content).


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: No "burger-menu" on mobile device #43629
    Zed
    Cryout Creations mastermind

    I see you’re using Jetpack. Is its mobile theme feature enabled?


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: How to remove footer? #43507
    Zed
    Cryout Creations mastermind

    The footer will almost disappear by itself if you disable its content (custom text on the left, footer menu and footer socials).


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Remove Author block in single post pages #43505
    Zed
    Cryout Creations mastermind

    The author block appears when the author has something entered in its bio field (in the settings). You can disable it by leaving the bio empty or you can hide it with CSS:
    article #author-info { display: none; }


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Only change the color of the post title. #43504
    Zed
    Cryout Creations mastermind

    Try this styling:
    – for category post titles

    body .entry-title a:link, body .entry-title a:visited {
        color: #008000;
    }

    – for single post titles

    body .entry-title {
        color: #008000;
    }

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Twitter card on main site not working #43502
    Zed
    Cryout Creations mastermind

    I recommend using a SEO plugin (like Yoast) to control the images that get picked up by social network (like Twitter).


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Menu Fluida #43500
    Zed
    Cryout Creations mastermind
    body #access > div > ul > li:hover { background: inherit; }
    body #access > div > ul > li:hover a { color: inherit; }

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: How to add "&subset=latin-ex" to font ? #43499
    Zed
    Cryout Creations mastermind

    If you’re using the font families listed in the theme selectors, these only load the basic latin charset.
    Switch to using Google Fonts and include the full identifier to use extended charsets.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    Zed
    Cryout Creations mastermind

    That is possible by customizing the file responsible for the landing page (front-page.php) via a child theme.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Turn on featured boxes #43497
    Zed
    Cryout Creations mastermind

    The theme will use the posts’ featured images for the boxes, not images inside posts.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    Zed
    Cryout Creations mastermind

    Changing the boxes’ links is not currently possible with existing theme functionality.
    It can be done but will require adding custom post meta support and handling.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Slider with recent posts #43495
    Zed
    Cryout Creations mastermind

    The theme’s landing page is not designed to display sidebars.

    You can insert sliders in a standard (static) page using shortcodes, which will follow the theme’s layout option and display sidebars (if set to).


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Google Maps #43494
    Zed
    Cryout Creations mastermind

    The text areas support basic HTML, but more advanced markup (such as iframes and scripts) will be filtered out by WordPress’ sanitization functionality.

    Use a plugin that provides a shortcode for the map functionality.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Can't Update Sliders #43493
    Zed
    Cryout Creations mastermind
    in reply to: Unable to Change Content Width! #43491
    Zed
    Cryout Creations mastermind

    You’ll need to move the righthand (sidebar) slider further to the right before you can increase the content width.

    If it still doesn’t work, try with a different browser.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: How to Fully Include Parent Styles in Child Theme #43490
    Zed
    Cryout Creations mastermind

    You don’t need to enqueue the child theme’s style, as WordPress does that, and I don’t think the wp_enqueue_script hooks the right place to do this (that normally gets outputted in the footer).

    Try this code instead:

    // enqueue parent theme styling
    function child_parent_styling(){
    	wp_enqueue_style( 'parabola-parent', get_template_directory_uri() . '/style.css' ); // main style.css
    }
    add_action('wp_head','child_parent_styling', 4);

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Section 508/WCAG 2.0 Accessibility #43489
    Zed
    Cryout Creations mastermind

    The theme still uses fixed font sizes for the base elements (body / html), but we’ve changed all the other site elements to use relative units (em).

    So now you’ll only need to override the font size for the base elements.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: event calendar code on presentation page #43488
    Zed
    Cryout Creations mastermind

    Is that a plugin or just HTML code? The theme accepts shortcodes in its extra text fields, but these fields are filtered for security by WordPress and only accept basic HTML (Iframes and JavaScript are filtered out).

    If you need to add code to a specific location in the theme, rather than modifying files I recommend using a code via shortcode plugin.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: I would like to submit some questions #43435
    Zed
    Cryout Creations mastermind

    1. What would be the question?
    2. The theme uses WordPress’ number of posts per page option value, configurable under the Reading options.
    3. You can contribute to the theme’s translations on the official WordPress translations repository.
    4. What is the actual issue? Are you unable the preview activate the theme in the customizer? Does specific functionality fail to work?


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    Zed
    Cryout Creations mastermind

    The images in the boxes have the size configurable in the theme’s options. The featured images for the posts below have the height configurable in the same theme options (their width is not configurable since it’s dependent on several factors, including site width, screen width and layout options).

    If you change any values related to images you’ll need to regenerate thumbnails for existing images to be recreated with the new sizes.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Remove Continue Reading Bottom from front page posts #43428
    Zed
    Cryout Creations mastermind

    The continue reading button is displayed when posts in lists (homepage, categories, archives) as set to be displayed as excerpts, not full posts.
    You could switch the posts to full posts (from the theme’s options) to turn it off, or change its label to nothing (from the theme’s options as well).


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Turn on featured boxes #43427
    Zed
    Cryout Creations mastermind

    The featured boxes are created out of posts and are controlled from the theme’s landing page options (in the customizer).

    If you have posts on your site, check that the boxes are enabled.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Slider is not working #43410
    Zed
    Cryout Creations mastermind

    Double-check that you’ve assigned images to the slides (if you’re making the slider out of posts, check that the posts have featured images set).


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: compatible with woo commerce but….. #43405
    Zed
    Cryout Creations mastermind

    Tempera’s WooCommerce compatibility refers to the fact that Tempera works as expected with WooCommerce while they are both at their out-of-the-box configurations (and there are no layout or functionality issues between the two).

    WooCommerce comes with a lot of its styling which we chose not to override in the theme (this styling is not under our control and can be changed at any time by the plugin developers).
    WooCommerce is also designed with light themes in mind – it will not work nicely with a dark color scheme without a lot of styling customizations.

    Everything else related to WooCommerce is part of its functionality, not the theme’s (such as its special pages and sections).


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
Viewing 30 posts - 3,481 through 3,510 (of 6,635 total)