Forum Replies Created
-
AuthorPosts
-
August 1st, 2022 at 19:59 in reply to: Possible to have twitter feed in a “Featured Icon Block” on presentation page? #131601ZedCryout 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.ZedCryout Creations mastermindHi,
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.ZedCryout Creations mastermindThe 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.August 1st, 2022 at 19:45 in reply to: Header picture reduced weird by sending links on social #131598ZedCryout Creations mastermindHi,
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.ZedCryout Creations mastermindHi,
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.ZedCryout Creations mastermindHi,
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.ZedCryout Creations mastermindHi,
I cannot confirm or recreate this issue. Password protected pages work fine with Mantra in my tests (even with pages set up years ago on our test sites).
I suggest investigating the exact plugins you are using on the site, perhaps one of them is interfering, or perhaps the protected pages become cached in their unprotected state?
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 provided that CSS as a preview on the further issues that would need to be resolved concerning CSS sticky positioning for the sidebar content.
The main problem is that
position: sticky
only works when there’s a parent container that has scrolling active on it. As both the sidebar (regardless of its height) and the main content are part of the same parent container and share horizontal space, the container doesn’t need internal scrolling and it expands to fit whichever of the two child elements is taller.
To have the sidebar act as being sticky with the current theme layout most likely JavaScript is needed to manipulate its positioning on scroll.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 mastermindFor that location you can hook into the theme’s
cryout_branding_hook
with your custom code, for example:function my_custom_header_content() { /* your code here */ } add_action( 'cryout_branding_hook', 'my_custom_header_content', 5 );
You can place this either in a child theme (if you use one) or a mini 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.ZedCryout Creations mastermindCheck if disabling the numbered pagination option works with your custom links.
TwentyTwentyOne uses wp_link_pages() to generate the pagination links markup, while in Mantra we used get_pagenum_link() when generating the links.
These two core functions might have different behaviour when presented with unexpected permalinks 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.ZedCryout Creations mastermindHi,
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.ZedCryout Creations mastermindHi,
Tempera uses only circles as list bullets, but applies different indentation for nested lists. This can be seen in the theme’s demo: https://demos.cryoutcreations.eu/wordpress/tempera/typograpy/
You can restore the default browser list bullets with some CSS:
body .entry-content ul li { list-style-type: disc; } body .entry-content ul ul li { list-style-type: circle; } body .entry-content ul ul ul li { list-style-type: square; }
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 mastermindHi,
Yoast provides configuration options separately for each single content section in the editor (page, post). Category/archive configurations are handled in the plugin’s general options.
If you’re wondering how to configure these parameters for the homepage when the theme’s presentation page feature is active, that is just an extension of the regular homepage, which in Yoast can have its SEO parameters set in the plugin’s homepage 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 mastermindHi,
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.ZedCryout Creations mastermindHi,
Could you include a link to the site/page where that is visible?
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 mastermindHi,
From the behaviour you’re describing it sounds to me like the SSL configuration is not fully functional when enabled and causes the site (more specifically the browser) to fail to load resources, such as the styles.
Since the theme has nothing to do with URLs or SSL, the issue most likely falls between (the updated?) WordPress and the SSL 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.ZedCryout Creations mastermindHi,
The general font options apply to the entire theme/site except the elements that have individual control options (and which are set to something other than to inherit the general font).
Which specific elements are you trying to control separately?
You mention blog entry (that doesn’t indicate a particular element), menu titles (which menu?) and titles (which titles? as there are several, controlled by different 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 mastermindHi,
There is a compatibility issue in some of our themes, including Anima, that affects the availability of the Customize screen with WordPress 6.0.
We are working on updating all our themes that are affected by this issue, but some of them will take a bit longer than others because they are more out of sync with the main codebase we work with.
In the meantime, a workaround to the issue is to check and ensure that your site has no empty categories. If you do not use posts on the site, ensure that at least one (empty) post is assigned to the non-deletable Uncategorised category.
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.June 18th, 2022 at 13:58 in reply to: How to enlarge Posts’ Featured Image as large as Header Image #130609ZedCryout Creations mastermindHi,
I don’t see the posts list active on your site’s homepage, but in posts lists featured images are sized according to the featured image height option and the width resulted from the posts columns layout option and content width.
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 mastermindHi,
The theme does not handle or manipulate content links opening behaviour.
That’s managed at the content level through the anchor target attribute or by the browser itself. It can also be overridden with JavaScript if that is a requirement.
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 mastermindGenerally, leaving the background color field empty in the theme options disables that specific background.
Bravada uses the same background color for the submenus as the side menu, so if you want to customize the submenus independently you’ll need to use CSS:
body #access ul.sub-menu li a, body #access ul.children li a { background-color: 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.ZedCryout Creations mastermindDoes the category pagination work on that exact site with any other 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.ZedCryout Creations mastermindHi,
I believe we’re already resolved this through the support system, but for everyone having the same question it is important to note that plugins and themes need to be installed through different management sections in the WordPress dashboard:
– themes are managed and installed under Appearance > Themes
– plugins are managed and installed under PluginsMixing the two will throw an error like the one you are seeing because you are trying to upload the wrong extension type to what WordPress is expecting in that uploader.
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 mastermindHi @tomi-stark-ch,
Since we need to manually add the necessary access for everyone who has donated to us before we added the accounts system, please register for an account and order the free Premium Support Migration service. You will not need to make a payment.
If you’re using a different email address now, please include any helpful information related to the original donation or support ticket (such as name, original email, payment date or a ticket number) in the order’s Additional Information field.
You’ll receive a confirmation email when access is added.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 mastermindHi,
Could you include a link to your site?
You can also create a support request for speedier replies.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.June 17th, 2022 at 17:40 in reply to: WPML Translate Title and Description of Box in Landingpage #130579ZedCryout Creations mastermindHi,
You should be able to find the theme’s (configurable) input fields in WPML’s Strings Translation feature.
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 mastermindHi,
Before updating to WordPress 6.0 ensure that you have updated the theme to the current 1.8.8 release as that addressed some compatibility issues.
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 mastermindHi,
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.ZedCryout Creations mastermindHi,
Could you include 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.ZedCryout Creations mastermindHi,
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. -
AuthorPosts