Search Results for 'display'

  • Author
    Search Results
  • #134918

    Hi,
    thank you, I checked that but it still doesn’t work. I also tried setting the featured title image again bt the titles for the individual pages (only the posts) don’t display.

    Website: hu.belrin/sts

    #134888
    Zed
    Cryout Creations mastermind

    Hi,

    Try the following CSS to hide the comments time attribute:

    .comment-meta time {
      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.
    #134885
    Zed
    Cryout Creations mastermind

    The option I pointed out in the documentation exists in all our themes and both the free and Plus editions:

    Below are screenshots with how I’m seeing the site on my Android phone and I’m not sure which text fits under the massive label:

    Concerning the menus, Bravada includes two navigation areas in the header of the site:

    • the main/side navigation, which is toggled into view using the hamburger icon and is displayed over the entire site. This menu is also used on mobile devices.
    • the extra header navigation that is displayed inline with the site title/logo and hamburger icon. This menu is completely hidden on the smaller mobile devices and shouldn’t be used as the site’s only menu.

    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.
    #134864
    jcoillard
    Power User

    Thanks for your answer. The full message is :

    Warning : undefined array key “tempera_totalSize” in julien/blog-julien/wp-content/themes/tempera/includes/theme-function.php on line 45

    For the moment i use Tempera with a modification in wp-config.php tu suppresse the warning message :

    /* 22.11.05 Pb warning posts
    https://www.greengeeks.com/tutorials/disable-wordpress-php-error-messages/
    */
    ini_set(‘display_errors’,’Off’);
    ini_set(‘error_reporting’, E_ALL );
    define(‘WP_DEBUG’, false);
    define(‘WP_DEBUG_DISPLAY’, false);

    Do you that saving Tempera parameters,removing Tempera, download Tempera from your site, restore parameters could be a way to solve the problem ?

    Best regards

    #134854

    you can add a new icon yourself
    at fontello.com
    download the font called socials
    then add new icons

    then you need to create a child theme
    style.css will be created in it
    download these fonts in a separate folder in my case fonts

    open it and add a description of the inoknok e.g. whatsapp and telegram

    —————-
    /* Social Icons */
    @font-face {
    font-family: ‘socials’;
    src: url(‘/fonts/socials.eot’);
    src: url(‘/fonts/socials.eot?#iefix’) format(’embedded-opentype’),
    url(‘/fonts/socials.woff’) format(‘woff’),
    url(‘/fonts/socials.ttf’) format(‘truetype’),
    url(‘/fonts/socials.svg?#socials’) format(‘svg’);
    font-weight: normal;
    font-style: normal;
    }

    .socials a::before,
    .socials a::after,
    [class^=”socicon-“]::before,
    [class*=” socicon-“]::before {
    font-family: “socials”;
    font-style: normal;
    font-weight: normal;
    speak: never;
    content: ‘\e83d’;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }

    .socials a.whatsapp::before { content: ‘\f232’; }
    .socials a.telegram::before { content: ‘\f2c6’; }

    .socials a.whatsapp::after { content: ‘\f232’; }
    .socials a.telegram::after { content: ‘\f2c6’; }

    .socials-whatsapp::before { content: ‘\f232’; }
    .socials-telegram::before { content: ‘\f2c6’; }
    —————-

    Website: urouter.ru

    • This reply was modified 2 years ago by ruslan.
    • This reply was modified 2 years ago by ruslan.
    #134835
    Zed
    Cryout Creations mastermind

    Hi,

    Our themes do not bundle any of the fonts – these are loaded either directly from Google’s fonts service or depend on the system fonts available in the operating system (according to the typography configuration).

    The Google embed already attempts to load the full charset of the fonts (you can see here that latin-ext is also included). If some glyphs from the extended character set are odd or incorrectly displayed that could be because the font simply doesn’t support/include them (and the browser replaces the missing characters only with a font from the same family).

    Weirdly enough, I was not able to find Muli on the Google fonts list to check its character support although it is served in the embed.


    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.
    #134813

    In reply to: Add Third CTA Button

    Zed
    Cryout Creations mastermind

    Hi,

    Because the CTA buttons are also present in the free edition of the theme, which has to follow the themes repository guidelines and only employ a limited number of configurable fields, the buttons are handled in a non-extendable manner. To add an extra button all the code responsible for the banner caption/buttons configuration and display would need to be replaced.


    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.
    #134808
    Zed
    Cryout Creations mastermind

    Hi,

    The slider/banner feature is only available on the homepage. The rest of the site sections have the regular header which displays the appropriate section title, meta information (if it exists and is enabled) overlaid over the regular header image.


    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 line of code where the messages are displayed indicates that you are displaying posts without featured images assigned in the columns (which require images).

    The next theme update will include an additional check to avoid the warning in such cases, but using posts-generated columns without images is still an unsupported scenario.


    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.
    #134282

    Hi folks,

    Had the same problem with the buttons in Serious Slider since the WordPress 6.1 update. I found a workaround that works for me.

    Find the code for whatever button or buttons you wish to hide and code display:none in the customizer under Additional CSS. In my case working in Fluida it was:
    .seriousslider-theme .seriousslider-caption-buttons a:nth-child(2n), a.staticslider-button:nth-child(2n) {
    display: none
    }

    This hid the button I couldn’t change or delete. Then I created a new button in the Slide where you can create your own buttons, labels etc. to take it’s place for the time being. You can find help in coding buttons in the W3 Schools website.

    Hope this helps people until Cryout can find a fix for the incompatibility that WordPress 6.1 created!

    Cheers

    • This reply was modified 2 years ago by alannah. Reason: Included unintentional likn
    #133833
    jcoillard
    Power User

    Hello Zed,
    since 2 days problems posts display with Tempera :
    Warning : undefined array key “tempera_totalSize” in julien/blog-julien/wp-content/themes/tempera/includes

    This problem when viewing posts

    No problem with Parabola

    I change (for the moment) my site to PARABOLA (without the full possibility i had on Tempera
    Best regards

    Website: julien.coillard.fr

    #132912
    Kevin
    Power User

    Hi,

    you can do this in the customizer.
    Landing Page -> Slider

    When Banner Image is selected, you see CTA Button #1 and #2. First field is the displayed text, second field is the link for the boxes.

    Regards

    Addendum: I have managed with this information in the wp-config

    define( ‘WP_DEBUG’, true );

    define( ‘WP_DEBUG_LOG’, true );

    define( ‘WP_DEBUG_DISPLAY’, false );

    to get the message away from the presentation page. Which certainly doesn’t remove the warning/error though.

    Please explain to me what happened there and how it will be corrected. Inquiries in other WP forums indicated that something was not “cleanly” programmed in the theme programming. I can not judge this and just want to give it as a hint.

    Thanks for their help if they read this.

    Website: www.beate-eierle.de

    #131620
    Zed
    Cryout Creations mastermind

    Hi,

    In Bravada the header menu is a secondary menu location and is not designed to be visible on the (smaller) mobile devices. Mobile devices display the restyled primary navigation.


    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.
    #131614

    In reply to: Search box

    Zed
    Cryout Creations mastermind

    Hi,

    Hello Word is WordPress’ sample post which can be replaced with your own or deleted if you don’t intend to use posts.

    I’m not sure what you mean by search box, the theme’s search fields are controllable through the available options (and only the header one is enabled by default).
    If you’re referring to a search form displayed in the content itself, that’s placed there by WordPress because your site has no other content on the section where it is located. Add some content or reconfigure the section to display something else (like a static page) and the search form will go away.


    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.
    #131610

    In reply to: Featured Boxes images

    Zed
    Cryout Creations mastermind

    Hi,

    You should be able to do that with some custom styling:

    @media (max-width: 800px) {
       #lp-boxes-1 .lp-box-image {
         display: none;
       }
    }

    Adjust the screen width limit as necessary.


    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.
    #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.
    #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.
    #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.
    #130572

    In reply to: Kahuna Plus Templates

    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.
    #130567

    In reply to: Image height

    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.
    #130385

    You selected a post category? As I know, you must take or create a category with the posts you want to display there. You can then select this category in “Boxes Content”. Without a category, there is nothing you can select.
    So it works with the free version.

    #129015
    Zed
    Cryout Creations mastermind

    Hi,

    Frontend not updating instantly after making changes in the dashboard is usually an indication that some form of caching is preset. Since you didn’t include an URL, I cannot look for the usual caching plugins signatures to confirm this.

    The menu layout should be displayed exactly as you have configured it in the dashboard (if you use a custom menu). If you rely on the default pages menu, then that should use the pages’ set hierarchy.


    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 theme uses core WordPress function calls to retrieve the appropriate (page/post/section) title. You can make use of the available the_title filter to hook your own code, check for the section that’s being currently processed and override the text returned accordingly.

    Is there a specific reason you want to use a separate title in the dashboard from what’s displayed publicly on the 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.
    #129003
    Zed
    Cryout Creations mastermind

    Hi,

    The ideal dimensions would be those configured in the settings (the height) and computed based on the post display options (content width and posts layout).


    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.
    #128977
    Zed
    Cryout Creations mastermind

    Hi,

    The query block uses very different markup for its output from the regular posts list displayed by the theme, so none of the existing posts list appearance styling will apply to it.
    Unfortunately, there’s no easy way (CSS class/identifiers) to change this.


    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.
    #127882

    I am also having this. Not with elementor, but the main menu is disappearing on the home page only. I found this css code to be the culprit:
    .mobile-ios #masthead.cryout #access

    To clarify, this CSS code is hiding the main menu from being displayed on the home page (only) & on several devices (including several laptops). Not sure why it’s only happening on the home page, but this is what I found.

    Website: warrenandannabelles.com

    #127047

    Hi,

    same issue here. The search bar is not displayes as wanted in safari. There is a white background, so you cannot see the search Icon or text. Transparency is not applied to the background of the search bar. I tried some CSS changes, but this did not help.

    Please have a look.

    Regards

    #126827

    In reply to: Modify Hamburger Menu

    In the meantime I’ve got some help at another forum. Here is the solution:

    .icon-menu::after {
      content: "Menu";
      display: block;
      position: relative;
      top: -60px;
      right: 20px;
      z-index: 100;
    	font-size: 0.7em;
    	font-style: normal
    }
    

    Update: Today I uploaded a logo, an suddenly the video isn’t displayed any longer. Even when I deleted the logo, the video doen’t come back. I deleted the video, and uploaded it again, but nothing happened.
    The “video” option is essential for the project.

    I checked the FAQ but found nothing.

    Do you have a solution?

    Best
    Michael

Viewing 30 results - 31 through 60 (of 1,618 total)