Zed

Forum Replies Created

Viewing 30 posts - 331 through 360 (of 6,644 total)
  • Author
    Posts
  • in reply to: Mantra – Category Archive page 2+ #122287
    Zed
    Cryout Creations mastermind

    Hi,

    URLs are handled by WordPress, not the theme. Double-check your permalink settings (and re-save settings to ensure the rules currently applying are in sync with what WordPress is expecting).


    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: Columns content ????? #122286
    Zed
    Cryout Creations mastermind

    Hi,

    The presentation page columns are configurable through the theme’s settings: https://www.cryoutcreations.eu/docs/themes-legacy/settings/presentation-page/#columns-settings
    If you cannot access the theme’s settings page, ensure that you have the companion settings plugin installed and active.


    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: Disappearing H Headings On Pages #122285
    Zed
    Cryout Creations mastermind

    Hi,

    Do you have a page/post currently accessible on the site where the headings are included in the content (and visible in the editor) but not visible on the frontend?
    I’ve looked through multiple pages and I cannot locate any H tags in the code either.


    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: Post Titles Not Showing On “Full Post” #122284
    Zed
    Cryout Creations mastermind

    Hi,

    In Roseta, the section titles (category titles, post titles, meta info) are displayed in the header location, on top of the header image.

    It looks like you’ve set your header image height to 0, which hides the header image entirely and with it all content that’s part of the same element, including the titles.


    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: Youtube Videos will not be shown #122283
    Zed
    Cryout Creations mastermind

    Hi,

    Nirvana 1.6.1.1 is missing a conditionality check that enables the included videos-handling script on all devices, not just mobile devices.
    You can alleviate it by disabling the Fitvids option, but that will disable the script overall, including mobile devices.


    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

    I’m not able to confirm the issue. In my test the mobile menu works as expected, with the top menus having submenus opening correctly on first tap.

    I did however notice a menu item focus related glitch specific to Chrome which we’ll have to look into.


    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 blocks on the landing page #122279
    Zed
    Cryout Creations mastermind

    Hi,

    I would need to browse the site to identify what’s generating the lines.


    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 continue reading buttons use the theme’s main accent color (plus some automatically computed variations).


    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,

    That is the theme’s main navigation location, which cannot be entirely disabled. You can assign an empty menu to it to stop using a menu, but the toggle icon will remain visible as it also displays the search form and the header 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: Featured Icon Blocks links to Text Area on Landing Page #122276
    Zed
    Cryout Creations mastermind

    Hi,

    Icon Blocks in the free edition of Fluida can only link to their source pages (WordPress.org limits the total number of custom fields that a theme can implement in its options – each icon block would have require one extra field to provide custom link functionality).
    We’ve implemented this in the theme’s Plus edition only using a companion plugin that implements a custom post type with the necessary additional control 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: How to include specific widget from blog demo #122275
    Zed
    Cryout Creations mastermind

    Hi,

    The demo site is running Bravada Plus which includes additional widgets, as seen in the sidebar and footer.


    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: pretitle-meta #122274
    Zed
    Cryout Creations mastermind

    As indicated in the tutorial, strings can be found in multiple sources not just the theme.

    That text, for example, is part of WordPress itself as the theme uses a core function to retrieve the category titles.


    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: Site head images did not shuffle from last BRAVADA update #122261
    Zed
    Cryout Creations mastermind

    Thank you very much @hallerandrei for helping us figure this one out, and everyone else for putting up with a very well hidden creepy crawler.

    For anyone interested in the details, the featured-image-in-header detection logic flaw only manifests on sites that never had a static homepage and/or a static blog page set before.

    The Bravada update correcting the issue is now available. Hopefully there are no other hidden surprises.
    The Plus edition will also receive the corresponding update tomorrow.


    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: Site head images did not shuffle from last BRAVADA update #121729
    Zed
    Cryout Creations mastermind

    The change was done to add custom header image support for the distinct blog and (static) homepage sections as well, as this was a frequently asked for feature.


    @hallerandrei
    and everyone else having trouble, would it be possible to send us a site options / theme options export so I can do the tests with your specific configuration? You can use the customization form to be able to attach a file.


    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 alignment in Chrome mobile browser #121447
    Zed
    Cryout Creations mastermind

    Text wrapping around images is dependent on image size, content width and screen size. There are certain combinations at which just enough text still fits on the side of the image to display just enough text to make it look weird.

    You can avoid this by forcing the images to no longer float/wrap below a certain screen size with CSS:

    @media (max-width: 540px) {
        .entry-content .alignleft, .entry-content .alignright {
            display: block;
            float: none;
            margin-left: auto;
            margin-right: auto;
        }
    }

    Note that this works best if all content images are relatively the same size (and smaller than the width limit).


    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: Site head images did not shuffle from last BRAVADA update #121442
    Zed
    Cryout Creations mastermind

    Hi,

    In update 1.0.6 we added support for the (static) page’s featured image in the header on the (static) homepage and blog pages. This allows custom per-page header images in these sections as well.

    If you’re only seeing the header behaviour change on these two site sections, check if the (static) pages assigned there have featured images assigned which need to be removed.


    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: Photos too Big #121439
    Zed
    Cryout Creations mastermind

    Hi,

    Could you provide more information about the issue (which images/elements are you referring to?) and/or 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: The documentation for tabs is incomplete #121437
    Zed
    Cryout Creations mastermind

    Hi,

    The tabs shortcode example has a typo in it (the unnecessary underline in the closing [/thead]). The correct example should read:

    [tabs]
        [thead]
            [tab href="#tab1" title="First tab"]
            [tab href="#tab2" title="Second Tab"]
        [/thead][tabgroup]
            [tabinner id="tab1" class="active"]First tab content[/tabinner]
            [tabinner id="tab2"]Second tab content[/tabinner]
        [/tabgroup]
    [/tabs]

    We’ll revise the documentation to correct and improve it.


    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: Blurry featured images #121435
    Zed
    Cryout Creations mastermind

    The featured images sizes on the frontend are those of the registered image size, however the registered width should be larger for your specific configuration (with only one sidebar active).

    That value is specific to having both sidebars active. I think you may have found a bug in the theme which we’ll need to correct.


    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

    Concerning the underlining of content links, please see this reply: https://www.cryoutcreations.eu/forums/t/extra-css-text-decoration?view=all#post-121419

    We are looking into 1 & 2.


    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: Widgets from Presentation Page Columns Appear On ALL Pages #121424
    Zed
    Cryout Creations mastermind

    Hi,

    WordPress 5.8 extended the block-like administration to the widgets screen.
    If you want to return to the classical way of managing widgets, install the Classic Widgets 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: Blurry featured images #121423
    Zed
    Cryout Creations mastermind

    @dfglfa, could you use our Sysinfo plugin to provide the list of currently registered image sizes for 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: PHP and CSS are executable #121420
    Zed
    Cryout Creations mastermind

    Hi,

    File permissions are handled by the server and not really under WordPress’ control and definitely not the theme. While WordPress (or plugins) can modify permissions, they need sufficient permissions on the files to begin with.

    I suggest discussing this with your hosting provider as permission changes are either due to a configuration change or a sign for suspicion.


    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: Extra CSS/ text-decoration #121419
    Zed
    Cryout Creations mastermind

    Adding the underlining effect to all content links is a requirement imposed (for accessibility reasons) during the theme update review process.

    The effect can be force-removed with CSS, if needed:

    .entry-content a:not([class]), .entry-excerpt a:not([class]),
    #comments .comment-body a:not([class]), 
    .widget-container.widget_text a:not([class]), .ppbox a:not([class]) {
        text-decoration: none;
    }

    Include the styling below to keep the underlining on hover:

    .entry-content a:not([class]):hover,
    .entry-excerpt a:not([class]):hover,
    #comments .comment-body a:not([class]):hover,
    .widget-container.widget_text a:not([class]):hover,
    .ppbox a:not([class]):hover {
        text-decoration: underline;
    }

    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 Image – Recommended Dimensions? #121418
    Zed
    Cryout Creations mastermind

    @megmo, header images work slightly differently to featured images. They don’t have the same options and are generated/displayed depending on the header image configuration options. Adjusting the focus area of the image can only be done on a case-by-case basis, with custom CSS (as it depends on the images used, the specific header configuration and target screen 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: Update Nirvana #121408
    Zed
    Cryout Creations mastermind

    Hi,

    If WordPress’ automatic update functionality is not available on your site, you should be able to use the .zip file update functionality extended in WordPress 5.5 to support themes as well (unless this has also been disabled on your site):
    https://wordpress.org/support/topic/wordpress-5-5-feature-update-by-uploading-zip-files/


    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: Youtube video not fullscreen in header #121403
    Zed
    Cryout Creations mastermind

    Hi,

    The video header is displayed in the theme’s configured header (image) height. If the video size does not match the area it is displayed in, you’ll see empty (black) space around it.
    Since YouTube videos rarely have the same aspect ratio as the theme’s default header configuration, you’ll most likely need to either adjust the header height configuration, or use a video with the necessary aspect ratio (wider than the usual 16:9).


    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 Font Issues Bravada theme #121400
    Zed
    Cryout Creations mastermind

    Hi,

    Could you provide 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: Text alignment in Chrome mobile browser #121399
    Zed
    Cryout Creations mastermind

    Hi,

    Could you include a link to your site (or create a support ticket on this 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: pretitle-meta #121398
    Zed
    Cryout Creations mastermind

    Hi,

    That text is part of the translatable strings and can be edited (or removed) as described in this tutorial:
    https://www.cryoutcreations.eu/wordpress-tutorials/editing-theme-strings-translations


    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 - 331 through 360 (of 6,644 total)