Forum Replies Created
-
AuthorPosts
-
ZedCryout 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.ZedCryout Creations mastermindYou 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.ZedCryout Creations mastermindThat 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.ZedCryout Creations mastermindThat 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.ZedCryout Creations mastermindEsotera 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.ZedCryout Creations mastermindThank 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.ZedCryout Creations mastermindThe 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.ZedCryout Creations mastermindThe 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.August 5th, 2020 at 20:10 in reply to: how to fix the product image appearing too big and blurry? #106332ZedCryout Creations mastermindAdjust 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.ZedCryout Creations mastermindAs 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.ZedCryout Creations mastermindYou 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.ZedCryout Creations mastermindI 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.ZedCryout Creations mastermindThe 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.ZedCryout Creations mastermindThe 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.August 4th, 2020 at 20:54 in reply to: how to fix the product image appearing too big and blurry? #106290ZedCryout Creations mastermindYour 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.ZedCryout Creations mastermindWe 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.ZedCryout Creations mastermindYour 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.August 4th, 2020 at 20:41 in reply to: How to change the background color to one page or entry #106287ZedCryout Creations mastermindTry 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.ZedCryout Creations mastermindThe 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.August 4th, 2020 at 20:24 in reply to: Nirvana or Fluida or other theme – Mix font sizes in site title #106285ZedCryout Creations mastermindThe 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.August 4th, 2020 at 20:24 in reply to: Nirvana or Fluida or other theme – Mix font sizes in site title #106284ZedCryout Creations mastermindThe 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.ZedCryout Creations mastermindIn 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.ZedCryout 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.ZedCryout Creations mastermindI 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.ZedCryout Creations mastermindYou 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.ZedCryout Creations mastermindThe ‘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.ZedCryout Creations mastermindI’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.ZedCryout Creations mastermindThat 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.ZedCryout Creations mastermindFluida 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.ZedCryout Creations mastermindFurther 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. -
AuthorPosts