Zed

Forum Replies Created

Viewing 30 posts - 121 through 150 (of 6,623 total)
  • Author
    Posts
  • in reply to: Password protected doesn’t work #131595
    Zed
    Cryout Creations mastermind

    Hi,

    I cannot confirm or recreate this issue. Password protected pages work fine with Mantra in my tests (even with pages set up years ago on our test sites).

    I suggest investigating the exact plugins you are using on the site, perhaps one of them is interfering, or perhaps the protected pages become cached in their unprotected state?


    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 set the right sidebar to position:sticky #130904
    Zed
    Cryout Creations mastermind

    I provided that CSS as a preview on the further issues that would need to be resolved concerning CSS sticky positioning for the sidebar content.

    The main problem is that position: sticky only works when there’s a parent container that has scrolling active on it. As both the sidebar (regardless of its height) and the main content are part of the same parent container and share horizontal space, the container doesn’t need internal scrolling and it expands to fit whichever of the two child elements is taller.
    To have the sidebar act as being sticky with the current theme layout most likely JavaScript is needed to manipulate its positioning on scroll.


    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: Add contact information to header section #130859
    Zed
    Cryout Creations mastermind

    For that location you can hook into the theme’s cryout_branding_hook with your custom code, for example:

    function my_custom_header_content() {
        /* your code here */
    }
    add_action( 'cryout_branding_hook', 'my_custom_header_content', 5 );

    You can place this either in a child theme (if you use one) or a mini 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: Mantra – Category Archive page 2+ #130858
    Zed
    Cryout Creations mastermind

    Check if disabling the numbered pagination option works with your custom links.

    TwentyTwentyOne uses wp_link_pages() to generate the pagination links markup, while in Mantra we used get_pagenum_link() when generating the links.

    These two core functions might have different behaviour when presented with unexpected permalinks configuration.


    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 set the right sidebar to position:sticky #130857
    Zed
    Cryout Creations mastermind

    Hi,

    The sidebar has the same height as its container (which also holds the main content and spans the full height of the site itself) so the sticky positioning has no effect on its placement with the current layout. The full height is required for the sidebar background color option to work correctly and the sticky positioning would require limiting the height of the parent container (to, for example, the viewport height):

    #container {
        max-height: 100vh;
        overflow: auto !important;
        display: block;
    }
    
    #secondary {
        position: sticky;
        height: auto;
        top: 1px;
    }

    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: sublist bullets are not unique #130827
    Zed
    Cryout Creations mastermind

    Hi,

    Tempera uses only circles as list bullets, but applies different indentation for nested lists. This can be seen in the theme’s demo: https://demos.cryoutcreations.eu/wordpress/tempera/typograpy/

    You can restore the default browser list bullets with some CSS:

    body .entry-content ul li {
        list-style-type: disc;
    }
    body .entry-content ul ul li {
        list-style-type: circle;
    }
    body .entry-content ul ul ul li {
        list-style-type: square;
    }

    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: setup yoast SEO #130824
    Zed
    Cryout Creations mastermind

    Hi,

    Yoast provides configuration options separately for each single content section in the editor (page, post). Category/archive configurations are handled in the plugin’s general options.

    If you’re wondering how to configure these parameters for the homepage when the theme’s presentation page feature is active, that is just an extension of the regular homepage, which in Yoast can have its SEO parameters set in the plugin’s homepage 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: Add contact information to header section #130820
    Zed
    Cryout Creations mastermind

    Hi,

    Bravada (and its child theme / personality) has built-in support for a social menu (which includes icons for mailto: and tel: links).
    In Bravada/Sundown the header socials location is part of the toggleable main menu.

    It is not easily possible to add any extra content to the header section using the built-in functionality. You could use the theme’s available hooks to add-in your own code, but you’d also need to write and add the necessary styling for the correct display, positioning and behaviour of the custom 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: Remove pin obove image in widget #130819
    Zed
    Cryout Creations mastermind

    Hi,

    Could you include a link to the site/page where that is visible?


    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: Bug conflict with Plugin Really Simple SSL #130818
    Zed
    Cryout Creations mastermind

    Hi,

    From the behaviour you’re describing it sounds to me like the SSL configuration is not fully functional when enabled and causes the site (more specifically the browser) to fail to load resources, such as the styles.
    Since the theme has nothing to do with URLs or SSL, the issue most likely falls between (the updated?) WordPress and the SSL 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: General Font selection Bravada #130811
    Zed
    Cryout Creations mastermind

    Hi,

    The general font options apply to the entire theme/site except the elements that have individual control options (and which are set to something other than to inherit the general font).

    Which specific elements are you trying to control separately?
    You mention blog entry (that doesn’t indicate a particular element), menu titles (which menu?) and titles (which titles? as there are several, controlled by different 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: unable to edit theme after wordpress 6.0 update #130810
    Zed
    Cryout Creations mastermind

    Hi,

    There is a compatibility issue in some of our themes, including Anima, that affects the availability of the Customize screen with WordPress 6.0.

    We are working on updating all our themes that are affected by this issue, but some of them will take a bit longer than others because they are more out of sync with the main codebase we work with.

    In the meantime, a workaround to the issue is to check and ensure that your site has no empty categories. If you do not use posts on the site, ensure that at least one (empty) post is assigned to the non-deletable Uncategorised category.


    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

    Hi,

    I don’t see the posts list active on your site’s homepage, but in posts lists featured images are sized according to the featured image height option and the width resulted from the posts columns layout option and content width.


    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: PDF in search results must open in a new tab #130608
    Zed
    Cryout Creations mastermind

    Hi,

    The theme does not handle or manipulate content links opening behaviour.

    That’s managed at the content level through the anchor target attribute or by the browser itself. It can also be overridden with JavaScript if that is a requirement.


    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: Submenu in header should be transparent #130607
    Zed
    Cryout Creations mastermind

    Generally, leaving the background color field empty in the theme options disables that specific background.

    Bravada uses the same background color for the submenus as the side menu, so if you want to customize the submenus independently you’ll need to use CSS:

    body #access ul.sub-menu li a, body #access ul.children li a {
      background-color: transparent;
    }

    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 – Category Archive page 2+ #130583
    Zed
    Cryout Creations mastermind

    Does the category pagination work on that exact site with any other 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: zips do not upload #130582
    Zed
    Cryout Creations mastermind

    Hi,

    I believe we’re already resolved this through the support system, but for everyone having the same question it is important to note that plugins and themes need to be installed through different management sections in the WordPress dashboard:
    – themes are managed and installed under Appearance > Themes
    – plugins are managed and installed under Plugins

    Mixing the two will throw an error like the one you are seeing because you are trying to upload the wrong extension type to what WordPress is expecting in that uploader.


    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: Header Image Height Reduced? #130581
    Zed
    Cryout Creations mastermind

    Hi @tomi-stark-ch,

    Since we need to manually add the necessary access for everyone who has donated to us before we added the accounts system, please register for an account and order the free Premium Support Migration service. You will not need to make a payment.
    If you’re using a different email address now, please include any helpful information related to the original donation or support ticket (such as name, original email, payment date or a ticket number) in the order’s Additional Information field.
    You’ll receive a confirmation email when access is added.


    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: Theme’s body tag has “n” #130580
    Zed
    Cryout Creations mastermind

    Hi,

    Could you include a link to your site?
    You can also create a support request for speedier replies.


    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

    Hi,

    You should be able to find the theme’s (configurable) input fields in WPML’s Strings Translation 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: Fluida & WP 6.0 #130578
    Zed
    Cryout Creations mastermind

    Hi,

    Before updating to WordPress 6.0 ensure that you have updated the theme to the current 1.8.8 release as that addressed some compatibility 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: Text Crop Landingpage Textarea #130576
    Zed
    Cryout Creations mastermind

    Hi,

    Text areas display the full text (as defined in the editor) or the manual excerpt when one is set (manual excerpts are not available by default on pages so you’ll need to activate that).

    Our themes should also detect the presence of the <!--more--> tag and use that as a manual excerpt. Could you include a link to the page in question?


    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: Submenu in header should be transparent #130573
    Zed
    Cryout Creations mastermind

    Hi,

    Could you include a link to your site?


    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: Kahuna Plus Templates #130572
    Zed
    Cryout Creations mastermind

    Hi,

    1. Kahuna Plus includes a template simply called Blog which can be used to create a clone of the standard blog section. If the page assigned this template has any text entered in the editor, this text will be displayed as an intro on that section, before the regular posts list.

    2. The empty page found at the provided link is not using any particular page template. Double-check that there is indeed a template assigned to it and/or try creating an additional test page and assign the template to (to rule out some kind of slug overlapping).

    3. If the behaviour is the same as #2, then the cause is probably the same.


    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: 404 page error #130571
    Zed
    Cryout Creations mastermind

    Hi @jokera195,

    Your site does not appear to be using our theme. If you have a general WordPress issue, I suggest looking up in the official forums: https://wordpress.org/support/forums/


    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

    Hi,

    The do_action('wp_body_open') call that’s part of the theme’s code and referenced in the error trace is a core WordPress hook introduced in version 5.2. This hook allows plugins to add their own functionality in a specific markup location (the opening of the <body> tag).

    My guess is that a plugin is adding its functionality to this hook but fails to work properly, throwing the error. I suggest to temporarily disable all active plugins and to check if the error logging goes away, then re-activate the plugins one by one until the error returns. That should point out which plugin the problem is related 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: Remove padding from footer #130568
    Zed
    Cryout Creations mastermind

    Hi @saehrimnirsupperclub,

    Try the following CSS:

    #footer, #footer .footer-inside {
      padding-top: 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: Image height #130567
    Zed
    Cryout Creations mastermind

    Hi,

    If the site homepage displays the general header image feature then this header image has the same height as the rest of the site.
    If you use the theme’s landing page functionality, this includes an alternative banner image section which can display a different image (at different size) than the general header.


    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 in WP 6.0 #130566
    Zed
    Cryout Creations mastermind

    Hi,

    We have not encountered any compatibility issues preventing our classic themes (including Tempera) from working properly with WordPress 6.


    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 on mobile not clickable #130565
    Zed
    Cryout Creations mastermind

    Hi,

    Your site most likely had a JavaScript error which was preventing advanced functionality (including the mobile menu) from working. An update could have resolved this error, returning things to normal.


    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 - 121 through 150 (of 6,623 total)