Zed

Forum Replies Created

Viewing 30 posts - 91 through 120 (of 6,623 total)
  • Author
    Posts
  • Zed
    Cryout Creations mastermind

    Our themes do not include any social networks specific functionality. This can be added using other plugins.


    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: Display Custom Post Type in homepage #134790
    Zed
    Cryout Creations mastermind

    Hi,

    It would be a better idea to not customize the landing page file at all and simply make use of the existing filter to override the query arguments, for example:

    function child_boxes_override( $args, $section_status, $section_id ) {
       // apply for second boxes section only 
       if ( $section_id == 2 ) { 
             // do you want to include both the custom post type and regular posts?
             $args['post_type'] = array( 'servizi', 'post' ); 
       }
       return $args;
    }
    apply_filters( 'roseta_boxes_query_args', 'child_boxes_override', 10, 3 );

    All arguments used in this filter are passed to the posts query.


    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: Shrink Logo on scroll #131834
    Zed
    Cryout Creations mastermind

    Try changing the CSS to:

    .site-header-bottom:not(.header-fixed) img.custom-logo {
      max-height: 98px;
    }

    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,

    Could you include the whole message? (as they usually reference filenames and locations in files – you can censor out anything in the file paths before WordPress’ root folder)


    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 put a logo over the background header image #131832
    Zed
    Cryout Creations mastermind

    Hi,

    The simplest solution there would be to include the logo itself in the header image that’s used on the site.

    Alternatively, you could add your logo image to the theme’s header widget area, but some styling may be needed to arrange that properly.


    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: Images of post doesn’r show up on home screen #131831
    Zed
    Cryout Creations mastermind

    Try turning off Jetpack’s image optimization feature and check if that has any effect.


    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 the logo appear bigger #131830
    Zed
    Cryout Creations mastermind

    Custom styling can be used either in a child theme’s style.css file (if a custom child theme is used), WordPress’ dedicated Additional CSS field or a custom CSS 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: Call to undefined function cryout_meta_hook() #131829
    Zed
    Cryout Creations mastermind

    Hi,

    Based on the error message it sounds like your child theme is not actually a child theme as it doesn’t load the parent theme’s functionality (or some of it).

    Double check that your child theme’s style.css file has the necessary header, specifically the template: reference.


    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: Sticky Menu Background #131828
    Zed
    Cryout Creations mastermind

    I’m not sure where how you’ve reached those identifiers, since most of those classnames are not used in the theme.

    Try this:

    body.septera-over-menu #site-header-main.header-fixed {
      background: 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: Header Menu not showing up on Mobile #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.
    in reply to: How to make the logo appear bigger #131619
    Zed
    Cryout Creations mastermind

    The important is not necessary as that styling is already more specific than what’s present in the 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: Remove the Sticky Menu? #131618
    Zed
    Cryout Creations mastermind

    Hi,

    The fixed menu functionality is controlled through Septera’s options:
    https://www.cryoutcreations.eu/docs/themes/options/header/menu/?theme=septera#fixed-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.
    in reply to: Sticky Menu Background #131617
    Zed
    Cryout Creations mastermind

    Hi,

    You can usually use the browser developer tools to inspect the site markup and view applied styling (and also try out and test customizations).

    To make the sticky menu semi-transparent you’ll need to tweak the background colors on multiple elements that make up that bar.


    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 add transparent header #131616
    Zed
    Cryout Creations mastermind

    Hi,

    Which elements are you looking to customize, as Verbosa doesn’t have a header per se?


    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 add image to Featured Boxes #131615
    Zed
    Cryout Creations mastermind

    Hi,

    The featured boxes sections automatically pick up and use the posts’ featured images, when these are assigned to the source posts.


    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 box #131614
    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.
    in reply to: Logo Resize #131613
    Zed
    Cryout Creations mastermind

    Hi,

    The logo is limited to the available menu bar height by default, but can be made to overflow its limits using custom styling, for example:

    body img.custom-logo {
      max-height: 200px;
    }

    Adjust the value as needed for your site.

    The means for adding the logo to the footer differs depending on where exactly you want it placed (in the footer widgets, in the footer text fields, in a custom location).


    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: Images of post doesn’r show up on home screen #131612
    Zed
    Cryout Creations mastermind

    Hi,

    Did you make any changes to the theme code/functionality or using a plugin related to images handling?
    For some reason the featured boxes don’t include the markup for the <img> tags but only the images URLs as plain text.


    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: Customizer not working after update to WordPress 6 #131611
    Zed
    Cryout Creations mastermind

    WordPress 6.0.1 undid/corrected the change that cause the customize screen issue on sites with empty post categories.
    If you’re running 6.0.1 your site should no longer manifest this issue regardless of the theme and theme version used.


    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 Boxes images #131610
    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.
    in reply to: I can’t create a priority support ticket #131609
    Zed
    Cryout Creations mastermind

    Hi,

    I am not sure how that happened, but your customer details were not properly associated with the user account, making the support form unable to automatically pick up the account information.
    I have corrected this now, sorry about the delay.


    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 parallax scrolling in Safari on Mac #131608
    Zed
    Cryout Creations mastermind

    Hi,

    The parallax effect is deliberately disabled on Safari to avoid a browser limitation. When/if this issue is corrected in the browser itself, we’ll also disable the necessary workaround in our 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.
    Zed
    Cryout Creations mastermind

    Ensure that theme option controlling this is enabled (it is enabled by default but perhaps you have disabled it), that your site has a general header image set and that your posts and/or pages have featured images assigned.


    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 video/image problem. #131602
    Zed
    Cryout Creations mastermind

    Hi,

    I am not currently seeing any rule (even overwritten) applying 50% width on the header video on the site, and such a styling rule is not present in Anima 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.
    Zed
    Cryout Creations mastermind

    Hi,

    The theme’s landing page sections can only use regular content (posts or pages, depending on sections) and content provided by the companion plugin in the Plus edition. However, shortcodes are accepted and processed in the content of these posts/pages, so it should technically be possible to use that as a workaround for custom content – although the appearance and layout of that content may need additional tweaking.


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

    Hi,

    The pin control option currently only applies to in-content images – we’ll address that in the next theme update.
    Until then, use the following CSS to remove the pin in the sidebar:
    body .wp-caption { background-image: 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: General Font selection Bravada #131599
    Zed
    Cryout Creations mastermind

    The header navigation does not have independent typography controls in Bravada. You can customize it nonetheless using custom CSS styling, for example:

    nav#access {
      font-family: Impact;
    }

    Replace with your own font identifier – make sure it is already available on the site or in (most of) the browsers/operating systems, or is embedded separately.


    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 picture reduced weird by sending links on social #131598
    Zed
    Cryout Creations mastermind

    Hi,

    For fine grained control over what external services see on your site when sharing / publishing to, I recommend using a SEO plugin which includes such functionality, for example Yoast.


    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: slider animation not working properly #131597
    Zed
    Cryout Creations mastermind

    Hi,

    What mobile device/browser are you experiencing this on?


    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: footer squashing to the left. #131596
    Zed
    Cryout Creations mastermind

    Hi,

    Could you include a link to the site in question for me to take a look?


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