Forum Replies Created
-
AuthorPosts
-
ZedCryout Creations mastermind
Sorry, the indicated file does not apply to Parabola. In Parabola the author information is handled directly by the file responsible for the author archive: author.php (in the root of the theme), which you can copy over and customize in your child 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.January 19th, 2020 at 19:32 in reply to: Display colour background instead of header image below breakpoint value #97846ZedCryout Creations mastermindYou can do that with CSS:
@media (max-width: 640px) { #branding #bg_image { opacity: 0; } }
This will make the header image fully transparent (so it maintains its height and place in the header), leaving the header background color 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 mastermindTry the following CSS:
body:not(.home) #header-image-main { display: none; }
Keep in mind that the header titles and breadcrumbs are part of the header image area, so those will be hidden 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.ZedCryout Creations mastermindI am not seeing the same thing so I assume you have resolved this in the meantime.
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 placement of the post meta attributes is not configurable. Changing the position of the category indicator would require code customization to implement.
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 site is not using Tempera on mobile devices, but rather a “mobile theme” provided by the WP Touch plugin.
Additionally, the cache/minifying plugin you are using is interfering with Tempera’s styles loading order, breaking its layout in some instances. I suggest test-disabling some of the minifying 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 mastermindThe image displayed in the theme by default on the landing page (homepage), below the menu, is not the configured header image but a static slider placeholder, which is configurable from the theme’s options under Landing Page > Slider.
Due to a technical limitations, the sample image is not visible in the customizer panel. To replace it, simply assign a different image. To remove the sample image, assign any other image in its place and then remove it.
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.January 19th, 2020 at 18:59 in reply to: I want to remove the automatic post link below in all post #97836ZedCryout Creations mastermindYou can do that with CSS:
body #nav-below { display: 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 mastermindIf 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 menu is designed to open its submenu items by clicking/tapping the down arrows next to parent menu items which have sub-items.
Clicking/tapping the menu items themselves takes the browser to the URL linked by that menu item.
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.January 19th, 2020 at 18:33 in reply to: Landing Page – Text Area – edit or delete the text content #97831ZedCryout Creations mastermindThe _lptext() function is responsible for retrieving the source content which will be displayed in the text area, while the _lptext_output() function handles the actual (markup) output (using the previously retrieved content).
Depending on what part of the workflow you want to alter, you’ll need to customize one, the other, or both.
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 mastermindIf the issues you are having concern iPads, you can use the recently added iOS mobile menu option to replace the standard desktop menu with its mobile counterpart for all iOS devices.
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 mastermindIt doesn’t look that you’ve included an URL to exemplify this issue.
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 CSS identifiers may need to be more specific to override existing styles. For example
body #header-page-title h1.entry-title
instead of just.entry-title
.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.January 19th, 2020 at 18:22 in reply to: remove/disable the header image and the menu from a single page? #97825ZedCryout Creations mastermindTry this CSS:
.page-id-2016 #header { display: 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 mastermindGive this custom CSS a try:
body .gallery-item { margin: 0; }
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 am not seeing any icons missing at this time.
If that happens again, check that you’re accessing the site via its proper (configured) URL and that there are no JavaScript issues on the 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 mastermindMantra activates its presentation page feature differently (on other conditions) than our other themes.
Is the homepage in Mantra displaying the standard posts list, a static page or its presentation page (see demo for example)?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’ve seen such issues happen in the past when servers have trouble handling the processing of HTML entities in the form data.
First test if you are able to re-save the currently saved data, and if yes, look for any entity usage in the new text you’re trying to add/replace.If saving the (already) saved configuration triggers the same error then the server must have changed/migrated configuration since you’ve initially configured the theme. You can look for the presence of entities in the already saved data, but if that is not the case, it may be server-dependent (related to the hosting server configuration or the additional security layers).
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.January 19th, 2020 at 18:06 in reply to: Is it possible to have a separate menu on just one page? #97818ZedCryout Creations mastermindThe theme supports menus in its several menu locations (main, top and footer). Beside these it is additionally possible to display menus in the widget areas (using WordPress’ own menu widget).
However, the widgets areas are visible site wide so to further control or limit widgets visibility you will need to resort to additional plugins that provide such 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 mastermindReordering the landing page sections is a feature included in the Plus edition of the themes.
https://www.cryoutcreations.eu/docs/themes/options/landing-page/order/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 mastermindTo activate the mobile menu earlier you’ll need to duplicate styling found in style-mobile.css that’s applied on #nav-toggle and #access (and sub-elements) from the 650px screen width to the desired 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.December 29th, 2019 at 13:22 in reply to: Landing Page – Text Area – edit or delete the text content #97046ZedCryout Creations mastermindThe text areas are designed to display the full page content (and featured image, if set). To change this to the excerpt instead, you’d need to customize some theme code (namely the roseta_lptext() function which retrieves the page attributes that will be 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 header height value applies site-wide (the header image support is core WordPress functionality).
Customizing the height via CSS is somewhat complicated because the configured height value is used on multiple elements (sometimes with additional computations).
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.December 29th, 2019 at 13:17 in reply to: German translations on wordpress.org have been in “Waiting” status for a year #97044ZedCryout Creations mastermindAn editor with knowledge in German needs to approve the translations. Authors cannot approve translations for the simple reason that they cannot be skilled in all the languages and cannot check them for correctness.
If you have a history with translations on WordPress.org and would like to be an editor for the theme for German we can make a request for this to the moderation team.
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 intended theme design, and it works better with different background colors on the content and the footer – see 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.December 29th, 2019 at 13:12 in reply to: Add call-to-action button to top-bar, right of social icons #97042ZedCryout Creations mastermindIf you’d use a item that is not automatically detected based on the URL, the item label would be displayed as-is. In that case the CSS wouldn’t be necessary and simply entering Support Us! as the menu label would suffice.
You could avoid the Github link autodetection by using an URL shortener or using a custom on-site link that redirects to the target URL.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.December 29th, 2019 at 12:58 in reply to: how to make my front page full screen with double buttons #97040ZedCryout Creations mastermindCheck on whether or not you are using the theme’s landing page feature.
The full with slider (and other full-width sections) are part of this feature. The rest of the theme sections are contained within the configured site/content widths.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.December 29th, 2019 at 12:57 in reply to: Vebosa – Site Header Image always shows for all shared posts on Facebook #97038ZedCryout Creations mastermindBy default third party services will pick up the first image that appears in the source of the site that matches that service’s image size/other properties requirements best. As the sidebar is placed before the rest of the content in the site source, the header image (or sometimes logo) is the image usually getting picked up.
To fine tune which image gets used when sharing to social services (or some other external services) you can use a plugin that provides functionality to control this behaviour.
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 mastermindOn the homepage the H1 tag is used on the site’s title. The landing page sections use H2 (on the static slider caption) and H3s (for section titles).
To change this behaviour you’d need to customize the code that generates the site title/logo 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. -
AuthorPosts