Zed

Forum Replies Created

Viewing 30 posts - 931 through 960 (of 6,629 total)
  • Author
    Posts
  • in reply to: Change the background color of a single page #104082
    Zed
    Cryout Creations mastermind

    You can use custom styling to customize most structural elements, however the needed styling depends on the page you want this to apply to and which background.


    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 change http to https in sidebar #104081
    Zed
    Cryout Creations mastermind

    URLs present in existing content (text, markup) are not affected by URL changes in the settings and need to be updated manually or using a 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: Extra menu showing in header #104080
    Zed
    Cryout Creations mastermind

    Could you indicate the website where the issues are happening?


    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: Use highlighted boxes on other page #104079
    Zed
    Cryout Creations mastermind

    Those elements are an integral part of the theme’s landing page feature and are not available outside of it (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.
    Zed
    Cryout Creations mastermind

    The header content option is available in both the free and the Plus editions. Did you not manage to find it in the theme’s options panels?


    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 date/ metadata to aside format #104077
    Zed
    Cryout Creations mastermind

    The meta information for posts formats (including the aside) is simply hidden via CSS. You can re-enable them with custom styling:

    body .format-aside .entry-title, 
    body .format-aside .author, 
    body .format-aside .bl_categ {
        display: inline;
    }
    body .format-aside .entry-meta {
        display: block;
    }

    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: Tempera Theme CSS for H1 H2 H3 #104076
    Zed
    Cryout Creations mastermind

    You seem to be referring to both H2 and H3 tags – the styling refers to H3 while your markup indicates the use of H2.

    The difference does stem from using different editors (classic and block), but the old markup is not generated by the theme but manually entered in the content. This means it most likely also needs to be manually entered in the block editor (since the preset blocks rarely have such advanced markup controls).


    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: content after widget #104075
    Zed
    Cryout Creations mastermind

    Controlling widgets visibility on a per-section basis is not possible with the default functionality available in WordPress. However, this can be added with the help of additional plugins (to list a few):


    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: Favicon disappeared in Mantra with WP 5.4? #104073
    Zed
    Cryout Creations mastermind

    @castingdata, did you set a favicon through the available option before attempting action overrides?


    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: Background Image question #103797
    Zed
    Cryout Creations mastermind

    None of our themes provide the functionality to assign post/page-specific background images, because this functionality is already available using plugins:
    https://wordpress.org/plugins/tags/background/


    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 next/previous links are core WordPress functionality and don’t provide the default functionality of linking within a category only.

    The core calls are in the single.php template, which can be customized using a child theme.
    Edit the core previous_post_link() and next_post_link() calls.

    Hiding the links is even simpler with a bit of CSS:

    .single #nav-below {
        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.
    Zed
    Cryout Creations mastermind

    The configured site title is used in multiple locations, including the browser title through the <title> tag, is read by third party crawlers (search engines, indexers, social networks). You should never leave this value blank.

    To not have the title visible in the site’s header simply use the theme’s Header Content option and configure it accordingly.


    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 logo to menu #103787
    Zed
    Cryout Creations mastermind

    After selecting the image, the logo feature needs to also be enabled from the theme’s Header Content option (the non-intuitive procedure is due to WordPress.org not liking the move of core options – such as the logo image control – to the theme’s options panel).


    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 appear twice on home page #103688
    Zed
    Cryout Creations mastermind

    If the gallery behaves the same way regardless of theme, you may be seeing some interference (maybe with another active plugin?).
    However, since you’re also using the images lazy loading functionality provided by Jetpack, I’d personally try disabling that to test if it has anything to do (lazy loading images can sometimes cause scripts that rely on image sizes to go haywire).


    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 Block #103639
    Zed
    Cryout Creations mastermind

    The blocks are not designed to work that way.

    To make the whole block a link you’d need to either customize the HTML markup to wrap them in anchors or write a custom script to transfer the click from the whole block to the icon (or read more) link inside the block.


    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 “&display: swap” to the google fonts request #103638
    Zed
    Cryout Creations mastermind

    John, yes that’s almost correct, although you also need to include the font weights with the identifier (to force the theme to load that font family separately and keep the display=swap parameter), eg:
    Jost:100,200,300,400,500,600,700,800,900&display=swap


    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: Double space after full stop (period) #103637
    Zed
    Cryout Creations mastermind

    Is the content displayed as desired if you view on 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: Home page Picture #103636
    Zed
    Cryout Creations mastermind

    The image displayed in the theme by default on the landing page (homepage) is configurable from the theme’s options under Landing Page / Slider.

    Due to a technical limitation, the sample image is not visible in the customizer panel. To replace it, simply assign a different image. To remove the sample image, assign any other image in its place and then remove 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: How to make headers NOT in caps #103634
    Zed
    Cryout Creations mastermind

    Use the following custom CSS:

    body .lp-staticslider .staticslider-caption-title, 
    body .seriousslider.seriousslider-theme .seriousslider-caption-title {
        text-transform: 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: Roseta Demo Content #103633
    Zed
    Cryout Creations mastermind

    I created a support ticket for this request.


    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: Chnage menu location at mobile screen #103632
    Zed
    Cryout Creations mastermind

    I believe I already answered your question through our support or customizations system, but for anyone else wondering the same thing, the following CSS should handle the change:

    body #nav-toggle {
        left: 1em;
        right: auto;
    }

    Swap the two values for the right side of the screen.


    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 appear twice on home page #103631
    Zed
    Cryout Creations mastermind

    @bedard5115, I can now see what you mean.
    Could you temporarily switch to one of the default Twenty themes and check if that gallery is still broken? (to know if anything from Mantra’s styling is causing that or not).


    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: DISABLE HEADER IMAGE EXCEPT ON HOME PAGE #103630
    Zed
    Cryout Creations mastermind

    @crebspark, consider yourself banned.


    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: H1, H2, H3 headings not displayed … #103469
    Zed
    Cryout Creations mastermind

    Somehow, numbers are generated with the wrong decimal point indicator on your site (comma instead of the usual dot expected by browsers in floating point values). This causes the headings to default to the general font size.

    Since the theme uses a base PHP function which doesn’t support localization to compute that number, I’m not sure how this is happening.

    Did you edit theme files in any way?


    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 header transparency #103466
    Zed
    Cryout Creations mastermind

    In what way is the opacity option failing? Are you able to set it to any value (between 0 and 100) in the dashboard or just the end values? If this is the case, could you test if it works 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: DISABLE HEADER IMAGE EXCEPT ON HOME PAGE #103464
    Zed
    Cryout Creations mastermind

    @crebspark, until I read the second part of your message I was actually formulating some suggestions in my head. But now that I’ve read it, I have to live up to your expectations and not actually provide an answer (unlike what I usually do for everyone else that asks question in a normal manner on this forum).


    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 make headers NOT in caps #103463
    Zed
    Cryout Creations mastermind

    Which particular layout elements are you referring to by headers?


    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: Different homepage for logged in users #103461
    Zed
    Cryout Creations mastermind

    That is not something that’s under the theme’s control and you would most likely need to use a (user management) plugin of sorts.

    However, I don’t think you’ll be able to create two landing pages, if you’re using this theme 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: Photos appear twice on home page #103460
    Zed
    Cryout Creations mastermind

    @bedard5115, I couldn’t find a gallery on your site. Could you link to a page including one?


    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: Multilanguage Featured Boxes #103457
    Zed
    Cryout Creations mastermind

    Due to the way the theme handles category selection (and the lack of necessary functionality in supported multilingual plugins) filtering posts by category on multilingual sites is not available for the theme’s featured boxes 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 - 931 through 960 (of 6,629 total)