Artur - wildweblab.com
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Icy] After -tag content is missingYes, I just discovered this bug today. Sorry for that. I will update the theme tomorrow ASAP.
Forum: Themes and Templates
In reply to: [Icy] W3C errorsHi,
Yes, the theme has minor HTML errors (according to the validator), but if you look closely there are two types of error:
1. category attribute in the rel tag is generated automatically by WordPress (I could use older version of HTML or do some dirty hack to remove this attribute, any of those solutions are not worth it, in fact rel=”category tag” is part of the specification but W3C validator still marks it as an error).
2. iframe from a Vimeo’s video player (to fix it I would have to remove videos from the demo site, which makes no sense).
As you can see, there is no reason to panic.
Forum: Themes and Templates
In reply to: [Icy] Theme breaks when trying to insert ad code in headerJust add to this div margin:
<div class="span12" style="text-align: center; margin-bottom: 20px;">Forum: Themes and Templates
In reply to: [Icy] POT file duplicate definition errorPlease remove last 3 lines from file icy.pot it will fix the problem.
I will include fixed file in the next release, so others won’t run into the same problem.
Forum: Themes and Templates
In reply to: [Icy] Theme breaks when trying to insert ad code in headerIt will print code in the exact place you want. Just change “test ad” inside the div to your adsense code.
Try it, I’ve written and tested it. It’s safe.
Forum: Themes and Templates
In reply to: [Icy] Theme breaks when trying to insert ad code in headerTry the code below, you can add it to functions.php or use this plugin: http://wordpress.org/plugins/pluginception/ to create new plugin with this code.
function my_test_ad() { echo '<div class="span12" style="text-align: center;">test ad</div>'; } add_action('wwl_before_content', 'my_test_ad');Forum: Themes and Templates
In reply to: [Icy] Theme breaks when trying to insert ad code in headerHi,
Try to enter your ad to the “Header Right” widget area using “Text” widget.
Hi,
1) You can eather remove description from your profile or hide it with custom CSS:
.hentry #entry-author-info { display: none; }
2) Add custom CSS in the the Theme Options > Styling:
#archive-title { display: none; }
Forum: Themes and Templates
In reply to: [Icy] trying to make a blog coment on one of my pagesYou can create new category e.g. “Life Blog” for your posts and add it to the menu. To exclude this category from the home page you can use plugin “Simply Exclude”.
Forum: Themes and Templates
In reply to: [Mosaic] Child theme not workingIf you’re using W3 Total Cache, try change “Performance > Minify > CSS” “@import handling” to Process
Forum: Themes and Templates
In reply to: [Mosaic] Flickr ImagesHi,
Send me URL to your site here or through: http://wildweblab.com/contact
I’ll take a look and update the theme if needed.Forum: Themes and Templates
In reply to: [Icy] Javascript errorHi,
I tried to replicate the error on a clean WordPress installation but everything worked just fine. It may be something unusual.
There’s a couple of things you can do to track this error.
1. Clear the cache in your browser (some script could not load properly)
2. Type and run in your browser console: jQuery() to make sure jQuery is loaded.
3. Find in source of a page JS code that causes the error and copy it here, I’ll make sure this is really from a theme.Forum: Themes and Templates
In reply to: [Mosaic] Featured image caption and positionOh, right.
You can add images with caption at the beginning of posts, and add this CSS to hide those images in archives:
body.category .entry-content img, body.category .entry-content .wp-caption { display: none; }That’s the simplest solution, alternatively you could modify mosaic_post_thumbnail() function in functions.php to achieve the same result with thumbnails.
Forum: Themes and Templates
In reply to: [Mosaic] Featured image caption and positionHi,
Go to “Theme Options > Advanced > Show Featured Image On” and check places where you want thumbnail to show up.
To align it to the right add this CSS code to “Theme Options > Stylign > Custom CSS”:
.wp-post-image { float: right; margin: 5px 0 10px 10px; }Forum: Themes and Templates
In reply to: [Mosaic] How to append secondary menu to mobile dropdown navIt is possible but not easy. It would be much more simpler to enable sidebar on mobile, see how to do this here: http://wildweblab.com/theme/mosaic#comment-13