Zed

Forum Replies Created

Viewing 30 posts - 3,481 through 3,510 (of 6,640 total)
  • Author
    Posts
  • in reply to: Add alt tags to sliders/columns on presentation page #43649
    Zed
    Cryout Creations mastermind

    Where should the text used as the alt value come from?


    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: Search Box in Nirvana Footer Not Showing Up #43648
    Zed
    Cryout Creations mastermind

    You can also create and assign an empty menu if you only want the search box visible there.


    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: Doesn´t show the date of articles #43646
    Zed
    Cryout Creations mastermind

    Thanks for pointing that out, I submitted a translation correction suggestion for this label in German.


    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: Nested comments #43644
    Zed
    Cryout Creations mastermind

    Thank you for pointing out the issue in the first place 😉


    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: Piad Support #43643
    Zed
    Cryout Creations mastermind

    The support we provide is for our themes and/or plugins, not for other extensions or WordPress itself.

    I suggest studying WordPress’ own info on file permissions.

    If you’d rather not get down and dirty with files and permissions, our friends at FasterWP might be able to help with general WordPress requests.


    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: 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.
Viewing 30 posts - 3,481 through 3,510 (of 6,640 total)