Forum Replies Created
-
AuthorPosts
-
Zed
Cryout Creations mastermindJetpack’s Mobile Theme is just that – a (separate) theme for mobile devices that’s entirely different from Tempera.
If you want a sidebar on it, perhaps the Jetpack forums might help.
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 mastermindSince Tempera 1.4 the read more (posts) button is part of the configuration and should also be translatable in Polylang. We’ll look into the widget translation support.
If you wish to contribute a translation, please use
https://translate.wordpress.org/projects/wp-themes/temperaIf 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 mastermindIf your host offers a hosting control panel to administer your site/domain (which you have access to) you might be able to find access to the logs in there.
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 mastermindAvailable translations will show up at the end of WordPress’ Updates section (if they weren’t already installed at a previous maintenance cycle) – when your WordPress is configured to that particular language.
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 mastermindMost of the bundled font files don’t include extended character sets. If you need them, use Google fonts (you can use the same font name as one that’s already bundled, filling in the Google font identifier field will make the theme load the font from Google). Make sure to include the needed character set(s) in the identifier.
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 mastermindI am not sure how wp-cli works, but it could be that the global namespaces $parabolas (from line 12) is not available at the moment this utility scans/processes the files, triggering the warning.
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 mastermindLooking at the speed results now, your site does load a bit sluggish (7.1s for a 1.5MB site):
https://gtmetrix.com/reports/passportandpixels.com/9Lw2uSQPYou could temporarily disable all your plugins and re-test the speed to see if it’s the content or the plugins slowing things down (could also be that the server has overload moments).
The presentation page columns should line up correctly on mobile devices in the latest Parabola update.
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 mastermindDo you have a link for the website exhibiting the problem?
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 29th, 2016 at 13:55 in reply to: Change Layout to 2 Sidebars Ruins Posts on Presentation Page #38688Zed
Cryout Creations mastermindHow did you manage to enable a sidebar on the presentation page? None of our themes display sidebar(s) on that section.
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 26th, 2016 at 19:36 in reply to: No possibility to translate certain parts of the theme. #38630Zed
Cryout Creations mastermindThe comment form is generated by a WordPress function that the theme barely touches.
The comment count you’re listing is not part of the form (you previously mentioned the form) and is correctly identified by WordPress’s Glotpress:

What are you making the translation with? Your program might not support (or incorrectly handle) translations with plurals.
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 mastermindThe actual error message(s) (that should get logged in the error log) would be very useful in identifying the cause.
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 25th, 2016 at 12:17 in reply to: No possibility to translate certain parts of the theme. #38607Zed
Cryout Creations mastermindBoth the Comments widget and the comments form are part of WordPress and not controlled by the 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.Zed
Cryout Creations mastermindWe’ve removed some bundled translations in favour of WordPress Translate ones – your WordPress should automatically download the latest versions from the online repository (double-check your dashboard Updates section for available translations).
The ‘More Posts’ text is now part of the theme settings (look under the Presentation Page section).
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 mastermindWe’ll fix the columns misalignment issue on mobile devices in the next update.
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 mastermindIf you’re viewing the site on a screen narrower than 1280px the sidebars will be repositioned below 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.Zed
Cryout Creations mastermindThe left sidebar menu does not display submenus. To customize its font weight you will need to use custom styling:
nav.sidebarmenu li a { font-weight: 700; }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 mastermindIf the panels are there but you cannot open them, you may have a JS issue in your WordPress dashboard. Try disabling plugins to figure out if any of them is causing this.
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 mastermindIf you use a caching plugin that provides CSS minification functionality, turn that part off and see if the issue resolves.
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 mastermindEven with the images being different sizes I notice no difference when they are displayed side-by-side at the same size:


Did you check if you have the same issue with images on a different browser and/or 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 mastermindYou’ll need to add that functionality in: create a html button or link in the text, encapsulate the rest of the text in a container that is hidden by default (with CSS) and trigger that container’s appearance (with JS) when the button/link is clicked.
Text:first part of text ....<a id="custom-read-more">Load the rest</a> <span id="custom-rest-of-text">The rest of the text that is hidden by default</span>CSS:
#custom-rest-of-text { display: none; }
JS:jQuery('#custom-read-more').on( 'click', function() { jQuery('#custom-rest-of-text').show(); } );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 mastermindRemove the IFRAME loading on http://www.londonbridgetoys.com and simply redirect that domain to the correct londonbridgecollectorstoys.com
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 mastermindYou can post that information here and mark the reply Private (so that only you and us admins can see the 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.Zed
Cryout Creations mastermindI assume your caching plugin was causing the delay in settings becoming visible, as the slider is now no longer displayed (as expected).
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 mastermindUse a custom menu and use a placeholder menu item with an empty link field (see the link in my signature).
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 mastermindUse custom styling with rgba() colors on the appropriate elements.
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 mastermindNirvana does not come with any sample “News” page, and the Blog page template has always been there from the first release.
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 21st, 2016 at 10:36 in reply to: 1.2.6 seems to have broken my HTML columns workaround for presentation page #38526Zed
Cryout Creations mastermindI see the same issue in Firefox and it’s caused by your Twitter feed trying to display a 1200x1200px image at full size. Use this custom styling to force twitter feed images smaller:
#pp-afterslider .kebo-tweets .ktweet .kmedia img { max-width: 330px; }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 mastermindDouble check your permalinks (disable them and re-enable if things appear configured correctly; test links with them disabled).
Your hosting representative is mistaken – themes don’t manage links and URLs in any way.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 21st, 2016 at 10:26 in reply to: Bullet Points Missing from Front Page – Nirvana Theme #38524Zed
Cryout Creations mastermindYou need to investigate your custom styling. There’s a lot of styling that improperly uses !important and is general enough to apply all over the place:
.page .entry-content li { margin: 0 !important; } ... .entry-content ul { list-style-type: none !important; margin: 0 !important; padding: 0 !important; }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 mastermindThe older images appear to be loaded at their full size (1500x1000px) while the newer one are resized to 825×550 (the size they are displayed at).
Check your WordPress image settings for the configured maximul image size – also plugin can force different image sizes (just like themes – however the theme’s settings do not apply to in-post images).
Does temporarily switching to one of the default Twenty themes make the images upload at their maximum 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. -
AuthorPosts
