thezedt
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Tempera] menu orders not respondingYou are using a caching plugin, so you may not see the changes right after making them. Clear cache or disable the plugin while performing structure modifications on your site.
Excerpts are automatically generated by WordPress and do not include any kind of formatting. The theme does provide an option to select the length of this excerpt, though.
If you want finer control over your excerpts you should consider using either manual excerpts or plugins.
Forum: Themes and Templates
In reply to: [Tempera] Latest update wiped out my websiteSorry about this, it was an issue caused by a certain bit of code we added in combination with older PHP versions.
The update fixing it is now live.Forum: Themes and Templates
In reply to: [Tempera] PHP Notice: Undefined index: HTTP_USER_AGENTThanks for pointing that out. It will be fixed in the next update.
The 503 error basically means that the processing took longer than the server allows. This can happen if you have a very large amount of images (and/or very large images).
Try to process images in smaller sets.
The server may also have some resource limit enforcement (for sites that use too many resources), which you may have triggered at the same time you got the 503 error.
Forum: Themes and Templates
In reply to: [Nirvana] Code under Comments space blog-pageAnd the custom CSS area is in the Miscellaneous section of the theme settings page.
Forum: Themes and Templates
In reply to: [Nirvana] center logo in the headerbody #header-container { text-align: center; }
for the logo
If you’re using title/tagline, the CSS is a bit more complex.Forum: Themes and Templates
In reply to: [Nirvana] Presentation Page news widgertThe theme’s presentation page text fields accept shortcodes, if your plugin provides such functionality.
Forum: Themes and Templates
In reply to: [Nirvana] Insert text/code at end of postIf you only want to do that for posts, you can edit the single.php file.
Just make sure to use a child theme, otherwise you’ll lost your customization the next time you update.
Forum: Themes and Templates
In reply to: [Nirvana] Backgournd imageSet it from Appearance > Background. It will appear on the background of the entire document, but will be overlapped by all areas that have a background colour set (such as the main content).
Forum: Themes and Templates
In reply to: [Nirvana] Header imageYou can hide the top bar from theme settings.
Forum: Themes and Templates
In reply to: [Nirvana] Responsive image (size) in Header widgets areaReplacing the inline height with max-height: 90% and adding this custom CSS will do that:
#header-widget-area * { display: inline; }Forum: Themes and Templates
In reply to: [Nirvana] change padding on Presentation Page Text Area 1body #pp-texttop, body #pp-textmiddle, body #pp-textbottom, body #front-columns-box { padding-top: 10px; padding-bottom: 10px; }The original value is 75px, adjust it to your liking and place this in the theme’s Custom CSS field (or a custom CSS plugin).
Forum: Themes and Templates
In reply to: [Nirvana] Post on Presentation PageYou can disable posts from the presentation page with the “Show Posts on Presentation Page” option under Presentation Page Settings.
Magazine layout controls the one / two columns appearance of posts.
Forum: Themes and Templates
In reply to: [Nirvana] Child Theme IssuesThe original widgets functionality needs to be unhooked and then your own widgets hooked back in place. That’s not the simplest task to do.
We’ll get the images to be wrapped in links in a future update.
You should be able to customize the posts part to display anything you want by copying the content/content-frontpage.php file to the child theme (keeping the folder structure) and editing the query (and output) to fit your needs.