Artur - wildweblab.com
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Icy] How to add custom logoYou can upload your own logo in Appearance > Header.
To do that you would have to modify function wwl_post_author in lib/shortcodes.php or create new shortcode based on the original one.
Forum: Themes and Templates
In reply to: [Mosaic] Make category pages only show exceptsIt’s strange. Do you use any caching plugin? If so, make sure to clear the cache after any changes.
If it doesn’t help, send me URL to your site.
Forum: Themes and Templates
In reply to: [Mosaic] Center Logo & Make it Full WidthHello,
I would have to see your site to help you.
Forum: Themes and Templates
In reply to: [Mosaic] Missing pictures in the excerpt contentHi,
Go to “Theme Options > Advanced” and change Post Content to Full Content.
That will make the images from posts to appear.
To make content of a post shorter on the front page use <!–more–> tag.
Forum: Themes and Templates
In reply to: [Icy] Need to make the header menu bar FIXED.You could achieve that with only CSS using “position: fixed;”.
Hi,
You can manage these in the “Theme Options > Snippets” Post Info / Post Meta.
Just remove shorttags you don’t need.
You can email the translation: contact [at] wildweblab.com
Forum: Themes and Templates
In reply to: [Icy] Post thumbnails on category pagesThere is actually a setting for that in the theme options.
Go to Appearance > Theme Options and in “Featured Image” check “Archive Pages”
It’s not the theme fault.
This error comes from content of posts.
Edit one of the posts, in editor change from visual to text, find this div and remove id from it (I think you don’t need them anyway).
Forum: Themes and Templates
In reply to: [Icy] How to Make Only One Page Appear on Homepage?Hi,
Go to “Settings > Reading”,
Set “Front page displays” to “A Static Page”,
And choose from drop menu page you’d like to display for front page.
Forum: Themes and Templates
In reply to: [Icy] Change header of a postLook for wwl_post_comments in lib/shortcodes.php
It should be pretty straightforward if you look at it.
You could copy this function, create your own shortcode with slightly different name and save in in child theme or plugin.
Forum: Themes and Templates
In reply to: [Icy] how to rename "home" on the landing pageHi,
The “Home” text is not fixed in the theme, it’s part of a menu that you’ve created.
Go to “Appearance > Menu” click on arrow on the right side of the “Home” element, change text in the “Navigation Label” to whatever you wish and click “Save Menu”.
Forum: Themes and Templates
In reply to: [Mosaic] About the language fileI didn’t updated .pot file because I think nothing changed. But maybe I’m wrong.
I try to update it and upload the new version today.
Forum: Themes and Templates
In reply to: [Icy] Change header of a postJust to clarify, if you make changes in the Theme Options you don’t have to worry about updates.
Only modifications made to the theme’s files without using a child theme will disappear after update.
Forum: Themes and Templates
In reply to: [Icy] Change header of a postThat modification is actually very easy.
Go to the “Theme Options > Snippets > Post Info”,
Find this shortcode:
[post_comments]
and replace it with:
[post_comments before="" after="comments"]
You will need to add additional styling to make it look better.
If you want to make some further modifications, you can find this shortcode in the file: shortcodes.php.