Zed

Forum Replies Created

Viewing 30 posts - 871 through 900 (of 6,629 total)
  • Author
    Posts
  • in reply to: Page excerpts not displaying in front page #106422
    Zed
    Cryout Creations mastermind

    Did you disable all the 30 active plugins at the same time?
    Clearing the cache in both the browser and on the site (if some form of caching is used) ensures that you are not seeing obsolete cached content (after disabling the plugins and/or making changes).


    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 dropdown menu on landing page #106421
    Zed
    Cryout Creations mastermind

    You have a JavaScript error on the site related to the WP Google Maps plugin.
    The theme requires scripts to be functional for the menu dropdown (and other features) to work correctly.


    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: Span code showing in shortcode generated pages #106420
    Zed
    Cryout Creations mastermind

    That markup is definitely added by a plugin, although not the same one as the original question.
    You can find out which one by temporarily cycling off all your active plugins.

    We’ll try adding some additional filtering to remove markup added by plugins to the section title when it’s used in the breadcrumbs.


    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: Black Bar abouve header #106419
    Zed
    Cryout Creations mastermind

    That is the theme’s top bar, which can be controlled through the 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: Esoterica Icon Blocks – Disable animation? #106336
    Zed
    Cryout Creations mastermind

    Esotera has an animation-control option, but that doesn’t apply to most landing page element animations.

    Try the following custom CSS to disable the slide-up animations of the icon blocks:

    body .lp-blocks .lp-block {
        -webkit-transition: none;
        transition: 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: Mobile Page Jumping on Scroll Up #106335
    Zed
    Cryout Creations mastermind

    Thank you for pointing this out. I was sure we had this smoothed out some versions ago, but apparently we’ve missed something with all the various display scenarios possible for the mobile menu – admin bar included.


    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: SVG in Nirvana site header image #106334
    Zed
    Cryout Creations mastermind

    The line responsible with the output of the markup is the last one in that function
    if (isset($himgsrc) && ($himgsrc != '')) : echo '<img id="bg_image" alt="' . get_bloginfo( 'name' ) . '" title="" src="' . esc_url( $himgsrc ) . '" />'; endif;
    This is where you’d need to add the class attribute. But is this sufficient to make your SVG plugin work? Adding the classname there will not replace the source image used by the theme for the 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: Change height of menu bar #106333
    Zed
    Cryout Creations mastermind

    The height of the main navigation (located between the header image and the content) is not configurable through the options. If desired, it can be forced customized with CSS:

    body #access ul {
        line-height: 1.6; /* default value */
    }

    This applies to submenu items as well.


    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

    Adjust the CSS to body.woocommerce div.product div.images img { width: auto; } (no space between the first two identifiers).

    Concerning the thumbnails regeneration, apparently it’s a built-in WooCommerce feature since version 3.3 that triggers automatically on certain events (includes changing themes, probably others too).
    Did you change themes and/or adjust any image sizes 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: Menu Accessibility #106331
    Zed
    Cryout Creations mastermind

    As accessibility is now a requirement for WordPress.org themes repository, we’ll most likely address the menu’s accessibility support in the next theme update.

    The idea of adding an option to disable the theme’s menu styling (for custom menu plugins compatibility) has been on the list for a while, so this might also make it in the theme at some point.
    Doing this manually currently requires duplicating the header.php file in the child theme and customizing it to rename/remove the #access ID from the menu container.


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

    You probably had CSS minifying enabled in the caching plugin. Tempera needs its styling to be applied in a particular order for it to work correctly and minifying usually breaks this order.
    You should be able to reactivate caching if you exclude the theme’s styles from minification or do not use this functionality.


    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 Title and Tagline #106298
    Zed
    Cryout Creations mastermind

    I think we’ve discussed this via a different channel and it was due to a missing header image (affecting the header’s height).


    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: Create a button in the main nav #106294
    Zed
    Cryout Creations mastermind

    The line-height and height are applied to both the list element (menu item) and the inner anchor and span.
    However, I’d advise against changing the (line-)height of the list element – try applying your styling on the inner span only: #access li.menu-item-XYZ > a > span { }


    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 remove featured image from teh post? #106291
    Zed
    Cryout Creations mastermind

    The image displayed below the menu is the header image. Its behaviour can also be controlled by the featured images in the header option.


    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

    Your product image are indeed 500×500 pixels but they are displayed at 100% width (WooCommerce’s styling) in a section encompassing 48% (also WooCommerce’s styling) of the site width, which translates to about 680px width.

    You can use CSS to disable the 100% width enforcement:
    body .woocommerce div.product div.images img { width: auto; }
    but then you may be left with extra space beside the images.


    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: Printing in Chrome gives Grey Box and No Text #106289
    Zed
    Cryout Creations mastermind

    We have not yet released the update which includes that fix.


    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: If I change theme, will I lose the content? #106288
    Zed
    Cryout Creations mastermind

    Your content is created and saved within WordPress, and you can change themes at any time.
    Some particular elements are associated with the theme and may no longer be available with a different theme. Also, you’d need to re-configure the theme (if configuration abilities are available in the new theme) to the desired visual particularities.


    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 the background color to one page or entry #106287
    Zed
    Cryout Creations mastermind

    Try the following CSS:

    .page-id-243 #main {
        background-color: #123;
    }

    Adjust with the numeric ID of the target page (or post) and the desired color code;


    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: SVG in Nirvana site header image #106286
    Zed
    Cryout Creations mastermind

    The theme relies on WordPress’ get_header_image() to retrieve the header image URL used in the generated markup.
    I doubt the plugin can filter this URL, especially since that function does not include any filterable calls.

    To add extra attributes to the header image markup you’ll need to customize the theme code generating it. Look for nirvana_header_image() in includes/theme-functions.php. This function can be unhooked and a replacement hooked in its place.


    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 ability to do this is limited to the markup WordPress itself allows in the site title field (in the general 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.
    Zed
    Cryout Creations mastermind

    The ability to do this is limited to the markup WordPress itself allows in the site title field (in the general 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: Expand the width of “Landing Page » Text Areas” #106282
    Zed
    Cryout Creations mastermind

    In Esotera, text areas content is design to use up to 60% of the width. To increase, use the following CSS:
    body .lp-text-card { max-width: 90%; }


    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: Span code showing in shortcode generated pages #106281
    Zed
    Cryout Creations mastermind

    @Claire, I assume you’ve resolved this in the meantime, as I see nothing out of the ordinary on that page.

    For anyone else seeing markup in the breadcrumbs, check if you’re using some kind of ‘hide title’ plugin that’s filtering post/page titles and adding the extra markup.


    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: More Posts – Not loading on Landing Pages #106280
    Zed
    Cryout Creations mastermind

    I notice there are JavaScript errors on your site when trying to use the ‘more’ button.
    I suggest temporarily disabling active plugins to check for interference from them.


    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 adjust crop option for header image #106279
    Zed
    Cryout Creations mastermind

    You can adjust the cropping position while assigning the header image, however that only applies on the cropped mode of the header image behaviour option. In contained mode the whole non-cropped image is 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: Number of blog posts on landing page #106278
    Zed
    Cryout Creations mastermind

    The ‘hide post and page’ titles only refers to single post and single page sections. It has no effect anywhere else on the site. To hide titles for sections in the landing page custom CSS can be used:

    #lp-text-two h2.lp-text-title {
        display: none;
    }

    The number of posts displayed in posts lists (on the homepage, in search results, in categories, so on) is controlled by WordPress’ general reading options: https://wordpress.com/support/settings/reading-settings/


    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 images missing #106277
    Zed
    Cryout Creations mastermind

    I’ve moved your messages to a separate topic as you are referring to header images (not text headings – h1,h2…).

    It’s good to know that you figured out the source of the problem. We haven’t messed with the default value for that option so it couldn’t have reset by itself during an update (the option is disabled by default so your activation would’ve overridden it in all cases).


    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: Shortcodes on Presentation Page #106274
    Zed
    Cryout Creations mastermind

    That depends on the search form markup that’s outputted by the shortcode – specifically the action parameter, which can either be empty (meaning self) or be a specific URL.

    Does the shortcode work as expected inside other pages?


    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: Make image go all the way to top #106273
    Zed
    Cryout Creations mastermind

    Fluida does not include the option to display the menu (transparently) over the header image.

    Implementing something like this would require styling to conditionally adjust both the menu’s background and the header image’s positioning (depending on scroll position and screen size).


    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: Page excerpts not displaying in front page #106271
    Zed
    Cryout Creations mastermind

    Further testing would indeed require that you (at least temporarily) disable all active plugins to check if any of them are filtering excerpts.


    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 - 871 through 900 (of 6,629 total)