Zed

Forum Replies Created

Viewing 30 posts - 1,651 through 1,680 (of 6,640 total)
  • Author
    Posts
  • in reply to: Integrating Custom Smileys #73362
    Zed
    Cryout Creations mastermind

    If the location of the new files coincides with that described in the code, the new smilies should work. 10 & 3 are add_filter() parameters.

    Make sure you also clear the cache (both on the site and in your 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: Missing Tag on Front Page #73361
    Zed
    Cryout Creations mastermind

    On the homepage it’s the site title that’s designed to use the H1 tag, not the page/section title.


    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: Overriding Theme Files with a Child Theme #73360
    Zed
    Cryout Creations mastermind

    Some files (which are recognized by WordPress, like functions.php, templates, content templates: page.php, index.php, post.php, archive.php, so on) are automatically detected when present in the child theme folder.

    Other files (everything that’s not a core file and we’ve added to the theme ourselves) is not automatically picked up. These files can sometimes be included using additional inclusion calls, or their individual functions can be overridden by simply being present in the child theme files.

    As a general rule, the child theme should contain as little content as possible (code, style) to maintain best compatibility with future theme updates. Try to avoid copying whole files (especially the style or functions file) directly from the parent 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: Can Nirvana list Child pages within Parent pages? #73359
    Zed
    Cryout Creations mastermind

    I think WordPress.org repository themes wouldn’t be allowed to include such functionality since it would most likely be considered plugin territory.


    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: Chrome issues: Single slide flickering #73358
    Zed
    Cryout Creations mastermind

    Setting the slider delay time to 0 doesn’t stop the transition (and most likely Chrome tries to perform it every 0 seconds).

    To disable the slider transition I suggest using a very large value instead (keep in mind this is in seconds, so a value of several hours should suffice).


    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: New Google Captcha (Back Up Button & Search Bar) #73357
    Zed
    Cryout Creations mastermind

    I believe the team that decided to add the badge at the exact location where most sites already had some kind of functionality (back to top button, cookies notification, so on and so forth) should have taken this under consideration.


    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 result page title at top of the browser #73355
    Zed
    Cryout Creations mastermind

    Page (and section titles in general) are handled by WordPress. If you’re looking to customize theme, you should try a SEO plugin (Yoast has such a feature).


    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 on Page other than Home #73354
    Zed
    Cryout Creations mastermind

    The presentation page feature can only be used as a homepage extension.


    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 reduce space between columns (column block)? #73353
    Zed
    Cryout Creations mastermind

    The blocks columns margins are set by the styling included in WordPress. Try:

    body .wp-block-columns .wp-block-column {
        margin-right: 1px;
        margin-left: 0;
    }

    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: Problem with blog featured image #73346
    Zed
    Cryout Creations mastermind

    The images size is configurable in the theme’s options (either directly or dependent on other theme options). You should ensure that the images you use are of that size.

    If you use columns from posts, the theme will auto-generate crops from the posts’ featured images, so make sure the featured images are larger than the column images.

    If you’ve uploaded files to the library before changing image size values, you’ll need to regenerate already created crops to ensure the theme has images of the correct (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: Mantra Help #73345
    Zed
    Cryout Creations mastermind

    1. Rounded corners are part of the theme’s design. To remove them on widget titles you’ll need a bit of CSS:

    body #primary .widget-title, body #secondary .widget-title {
       border-radius: 0;
    }

    2. A bit more CSS handles the second question as well:

    body #primary .widget-title {
       text-align: left;
    }
    body #secondary .widget-title {
       text-align: right;
    }

    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: Logo #73293
    Zed
    Cryout Creations mastermind

    WordPress’ ‘Display Site Title and Tagline’ option controls the whole ‘identity’ block (logo, site title and tagline). To display just the logo you’ll need to keep this option activated and adjust the theme’s own option and chose what to display.

    All of our themes enforce a size limit on featured image to get used in the header (meaning the featured images need to be at least 75% of the configured header image width and height to be used there).
    We’ve added an option to control this behaviour in the latest 1.0.1 update and set it to disable this limit (for now).


    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: comment form doesn't return a message after submission #72660
    Zed
    Cryout Creations mastermind

    The comments functionality is a core WordPress feature and not handled by the theme. It can also be overriden by plugins (which may or may not work correctly).


    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: where2 adjust site-copyright in footer? #72659
    Zed
    Cryout Creations mastermind

    We don’t include an easy method of customizing our credit link due to… reasons.


    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: AVOID LINK POST TITLES #72658
    Zed
    Cryout Creations mastermind

    The code edit I indicated applies to all posts and doesn’t apply to any (static) pages.

    Pages do not normally appear in lists where their titles are clickable links.


    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

    What is the theme’s Auto Select Images from Posts Content option currently 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: Support ticket problems #72656
    Zed
    Cryout Creations mastermind

    We’ve tracked down an issue after a recent update with the spam check blocking the forms entirely in some instances. That is resolved now, sorry about the trouble.

    1. The homepage is a special section for WordPress, which uses the site title, unless a static page is assigned as the homepage in which case that page’s properties will be used instead.

    2. The menu behaviour is configurable in the theme options.


    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: Gutenberg Error in 1.3.3 and 1.4.0 #72655
    Zed
    Cryout Creations mastermind

    Hi Jamie,
    Do things work if you temporarily switch to one of the default Twenty themes?


    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: Issues with child theme #72652
    Zed
    Cryout Creations mastermind

    I’m not sure I understand how you’re looking to customize the header area.
    Do you have a mock-up/sketch with the desired layout?

    You can find a lot of sites using Kahuna using a custom search.


    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 "website" field from comments #72651
    Zed
    Cryout Creations mastermind

    Accessing theme or plugin files is a feature provided (or blocked) by WordPress, not the theme. However, editing theme files directly is generally bad practice (as such changes would be lost on every theme update). Customizations such as this need to be done either manually using a child theme or using alternative solutions (I remember there is a plugin in the repository which allows customizing comment form fields).


    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: Change headings font size #72650
    Zed
    Cryout Creations mastermind

    The headings sizes are generated based on the configured value. You can override these values with additional CSS (the values are the current ones on your site):

    h1 { font-size: 2.33em; } 
    h2 { font-size: 2.06em; }
    h3 { font-size: 1.79em; }
    h4 { font-size: 1.52em; }
    h5 { font-size: 1.25em; }
    h6 { font-size: 0.98em; }

    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: 3 Questions in Septera Plus #72649
    Zed
    Cryout Creations mastermind

    Hi Mike,

    Based on your report we’ve tracked down an issue after a recent update with the spam check blocking the forms entirely in some instances. That is resolved now, so thanks again for pointing out the problem.

    2. The tags are designed to appear in those particular locations. Theoretically they can be moved around, but that will require adjusting their styling as well.

    3. You can make that customization permanent by placing the appropriate custom styling in WordPress Additional CSS field (in the Customize screen):
    body .wp-caption .wp-caption-text { font-size: 12px; }


    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: Mobile device preview #72647
    Zed
    Cryout Creations mastermind

    The landing page static image responsive behaviour is designed to work best with the captions on top of it. Apply this CSS to adjust its responsiveness for your usage case:

    body .lp-staticslider .lp-staticslider-image {
        max-width: 100%;
    }

    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: Hamburger menu does not work on Chrome (Septera) #72645
    Zed
    Cryout Creations mastermind

    Did you try temporarily disabling all active plugins to test if this resolves the menu issue?


    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: Space between menu and Serious Slider on Landing Page #72643
    Zed
    Cryout Creations mastermind

    We’ve had some issues with the spam check over-filtering our forms, but that is solved now. Sorry about that.

    You can reduce the spacing between landing page elements with a bit of CSS:

    body .lp-section-header, body .lp-blocks-inside {
        padding-top: 0;
        padding-bottom: 0;
    }

    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: Home Page does not shown #72642
    Zed
    Cryout Creations mastermind

    I notice you have the theme’s landing page feature enabled. Please see this tutorial to get more info on how to use that feature, or turn it off from the theme’s options if you don’t need it (to return to the classic WordPress homepage).


    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: burger menu doesn´t work #72641
    Zed
    Cryout Creations mastermind

    @MRGerrits your menu works fine for me at this moment. Did you solve this or are you still having issues?


    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 Nirvana list Child pages within Parent pages? #72640
    Zed
    Cryout Creations mastermind

    This capability would require custom coding (either via a page template or a shortcode) to implement.


    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: General font not working after theme update #72639
    Zed
    Cryout Creations mastermind

    The general font option applies to all elements not covered by the other theme font options. If the other options are set to use a different font, that specific font will apply to the target element(s) instead of the general font.

    Previous theme versions had a bug which made some font values to not apply (making the general font apply instead), which is corrected in the latest release.


    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: Adjusting Menu Bar Search Box #72638
    Zed
    Cryout Creations mastermind

    Try adding this CSS to the site as it is at this moment:

    /* center form vertically in the menu bar */
    body #access li.menu-main-search { margin-top: 9px; }
    /* center the search icon horizontally in the button */
    body #access li.menu-main-search .crycon-search { padding: 0; }
    /* center the search icon vertically in the form field */
    body li.menu-main-search .searchsubmit[type="submit"] { top: 0; }
    /* search icon color */
    body li.menu-main-search .searchsubmit[type="submit"] { color: #fff; }
    /* search icon background */
    body li.menu-main-search .searchform::after { background-color: #ec4b80; width:52px; height:52px; }

    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 - 1,651 through 1,680 (of 6,640 total)