Forum Replies Created
-
AuthorPosts
-
Zed
Cryout Creations mastermindHi,
Please follow the WordPress guideline on creating child themes, specifically the parent/child styles enqueueing code example: https://developer.wordpress.org/themes/advanced-topics/child-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 mastermindHi,
Wrapping happens dynamically depending on image sizes, text length and screen width. There is no catch-all solution to avoid having single words wrap around floating images, except perhaps to not use floating images at all (or disable floating on specific screen sizes).
@media (max-width: 640px) { /* adjust the maximum screen width floating should be forced-disabled on */ body .alignleft, body .alignright { float: none; margin-left: auto; margin-right: auto; } }
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 mastermindHi,
The overlay is not directly configurable through the options (it inherits the accent color values but its opacity is preset), but it can be customized with CSS:
body .post-thumbnail-container:hover .featured-image-overlay::after { opacity: 0.95; /* default value */ }
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.November 8th, 2021 at 00:37 in reply to: WooCommerce Single Product Page image too large. How to change image size. #123417Zed
Cryout Creations mastermindHi,
I believe we’ve discussed about this through the support service.
For anyone else having the same question, TwentyTwentyOne filters each image’s attributes (including products) and adds inline styling to set the maximum size attribute. We don’t do this in our themes because inline styling is generally bad practice.
If (all) the product images used are rather small, it should be possible to force shrink them with CSS:
body.woocommerce div.product div.images img { max-width: ...px; /* actual image files width or of the smallest of 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.Zed
Cryout Creations mastermindHi,
Could you provide a link to your 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.Zed
Cryout Creations mastermindHi,
You might need to duplicate the theme’s
content/content.php
file and rename it to match your post type and then edit theif ( 'post' == get_post_type() )
check in its code to include your post type.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 mastermindHi,
I believe we have discussed these topics (and more) through the support service.
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 mastermindHi,
Could you provide a link to your site to see your current configuration?
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 mastermindHi,
The list bullets are removed by styling loaded by the
gallery-videos
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.Zed
Cryout Creations mastermindHi,
The default content is displayed when there is no other content configured through the options or widgets. If you want to define your own columns, add them and the example ones will simply disappear.
If you don’t want to use that functionality at all, simply set the presentation page Columns option todisabled
.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 mastermindHi,
The theme’s don’t add theme specific classnames or identifiers to the markup. However you should be able to do this by writing some custom (PHP) code to append the theme’s slug as an additional class to the document body tag:
function my_body_class( $classes ) { $classes[] = 'theme-' . esc_attr( get_template() ); return $classes; } add_filter( 'body_class', 'my_body_class' );
https://developer.wordpress.org/reference/hooks/body_class/
https://developer.wordpress.org/reference/functions/get_template/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 mastermindHi,
The colour block effect is present throughout the theme’s design, behind multiple elements that can be called titles. Which specific content element(s) are you referring to?
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 mastermindHi,
If your site title/tagline are too long to fit in the header on all device screens, you’ll probably need to add some custom CSS to shrink it down further than the built-in responsiveness on smaller screens.
We’d need to browser your site to test out CSS.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 mastermindHi,
Could you provide a link to your site and to the page still displaying 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.Zed
Cryout Creations mastermindHi,
Your site appears to be using the default blog posts list homepage, which is core WordPress functionality intended to display your (latest) posts list and not a distinct (editable) page.
Yoast provides distinct SEO options for this homepage in its general options:
https://yoast.com/help/optimizing-the-seo-title-and-meta-description-of-your-homepage/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 mastermindHi,
That bit of code attempts to remove WordPress’ built-in styling applied to the recent posts widget. Perhaps the system the theme is running on does not have this functionality, making the function call fail.
If you have access to the theme’s files or are able to install the theme as zip on that system, edit the indicated
nirvana/includes/theme-comments.php
file and comment out (or delete)
add_action( 'widgets_init', 'nirvana_remove_recent_comments_style' );
on line 76 below to disable that part of code.Please let us know if that works and we’ll include an additional check in the next update to avoid this in the future.
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 mastermindHi,
1. The site title title should behave and look identical on all site sections.
Could you provide a link to your site for us to check out?2. Are you using a slider (plugin) or the default banner/caption 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.Zed
Cryout Creations mastermindHi,
Are you referring to the animation effect present on the theme’s section header titles?
Could you provide a link to the site so we can 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.Zed
Cryout Creations mastermindYour posts list is not displayed by the theme but generated by the ‘gp-premium’ plugin. You’ll need to look into its documentation and/or options on how to configure image sizes (if that’s even possible).
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 mastermindTry using the browser’s developer tools to check out if anything serious is reported while loading and rendering the site on your device.
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 mastermindYour first reply wasn’t visible immediately because it was held for moderation due to containing links and markup.
The theme’s landing page feature picks up content from the existing published pages and posts (this varies between sections). In its default configuration the theme automatically uses the most recent content of the necessary type for the active sections – if the content source options were never manually adjusted to select a specific page (or category), then this still happens and publishing new content automatically places at the top of the visibility list.
I am not sure what is happening on the site (if the headings are missing their markup or they exist as markup but they lack styling). Headings appear to still work fine on our theme demo.
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 mastermindHi,
You can use a logo in both theme editions using the available WordPress and theme options:
https://www.cryoutcreations.eu/docs/themes/site-identity/?theme=roseta#logo
https://www.cryoutcreations.eu/docs/themes/options/header/content/?theme=roseta#site-header-contentIf 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 mastermindHi,
Yes, there was an issue concerning header images in Bravada 1.0.6 which we fixed in the recent 1.0.6.1 update. Please see this thread for more info.
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 mastermindHi,
Your site is missing the mobile menu’s background color. You’ll need to set a value for the header/menu background color option (even if it’s the same color as the general site 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 mastermindHi,
Are you seeing the same issues on the theme’s demo page as well?
https://demos.cryoutcreations.eu/wordpress/tempera/
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 mastermindHi,
Video headers are core WordPress functionality that the theme supports. Please see the WordPress documentation for more info: https://make.wordpress.org/core/2016/11/26/video-headers-in-4-7/
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 mastermindHi,
URLs are handled by WordPress, not the theme. Double-check your permalink settings (and re-save settings to ensure the rules currently applying are in sync with what WordPress is expecting).
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 mastermindHi,
The presentation page columns are configurable through the theme’s settings: https://www.cryoutcreations.eu/docs/themes-legacy/settings/presentation-page/#columns-settings
If you cannot access the theme’s settings page, ensure that you have the companion settings plugin installed and active.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 mastermindHi,
Do you have a page/post currently accessible on the site where the headings are included in the content (and visible in the editor) but not visible on the frontend?
I’ve looked through multiple pages and I cannot locate any H tags in the code 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 mastermindHi,
In Roseta, the section titles (category titles, post titles, meta info) are displayed in the header location, on top of the header image.
It looks like you’ve set your header image height to 0, which hides the header image entirely and with it all content that’s part of the same element, including the titles.
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