acub
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Photo caption padding.wp-caption img {margin-bottom: 1em;}Should do the trick. Lower it to .9 or .7 or whatever… if it’s too big. If you only want this on pages, not on posts, category pages, search results, etc… use .page .wp-caption img as selector.
I have two websites running on qTranslate and Customizr 3.0.14, one with 2 languages one with 3. Flawless. No idea why it’s not working for you. Use a debug tool, see if any errors are being generated.
I’ll look into the theme functions and maybe get some ideas. Meanwhile, try estonian with lowercase, just to rule that possibility out. Or at least put in on last spot in your multi-lang texts.
Forum: Themes and Templates
In reply to: [Customizr] Photo caption paddingA link would be helpful, chappie.
Forum: Themes and Templates
In reply to: [Customizr] logo wrong place internet explorOk, leaving joke aside. Did you read this article? It’s the link I posted earlier and somehow it got removed. I hope I’m not being censored here. Apparently all 3 links in that post got mugged. The second and third were to download pages for chrome and firefox. Weird.
You’re using wrong qTranslate shortcodes. Remove the spaces and the caps and it might start working. (Instead of [: ET], [: en] and [: ru] you should use [:et], [:en] and [:ru]). See a working demo here.
Forum: Themes and Templates
In reply to: [Customizr] logo wrong place internet explorInnocent joke on your permissive legislation on grass. No offence meant.
Forum: Themes and Templates
In reply to: [Customizr] logo wrong place internet explorI hear 1 out of 2 dutch people can’t tell a circle from a square half the time. And it’s not ’cause they skipped geometry, either. It’s ’cause of their legislation, I hear…
Rumors, I say.
Forum: Themes and Templates
In reply to: [Customizr] logo wrong place internet explor@apestaartje: Well, all I can say is I don’t have a clue about IE compatibility modes either. But apart from you, I don’t need to, as I use a full CSS3 compliant browser and I see the circles regardless of browser settings.
If you want to see the circles, take 10 minutes to read this article on IE’s Compatibility View and maybe improve your web experience by a tiny bit. Or take 5 minutes to install this or this, for a guaranteed improved web experience. Circles included.
Forum: Themes and Templates
In reply to: [Customizr] logo wrong place internet explorThan you must have some compatibility-mode switched on or something. According to Microsoft, IE9 fully supports border-radius. And that’s the CSS3 property Customizr’s magic circles use.
See here. Says IE9+.
Forum: Themes and Templates
In reply to: [Customizr] logo wrong place internet explor@aperstaartje: IE9 and IE10 fully support CSS3. So the theme renders as it should in them. The problem only appears in versions 8.0 and below. So we’re talking roughly 5%, not 35%. That’s worldwide.
As for Netherlands, the only stats I could find are at statcounter.com.For last month:
IE 8.0 : 6,79%
IE 7.0 : 0,95%
IE 6.0 : 0,01%That’s a total of 7.75% users who see squares instead of circles. 🙂
Forum: Themes and Templates
In reply to: [Customizr] Category and subcategories on post breadcrumbAdd this to your child theme’s functions.php:
add_filter ('tc_breadcrumb_display', 'deinezauber_custom_breacrumb'); function deinezauber_custom_breacrumb($output) { /* generate your custom breadcrumb here and return the result (php) * $output variable holds the default breadcrumb of the theme, * in case you want to alter or use it. * For example, if you only want to change the breadcrumb * for single posts this would be a way to go about it: */ if (is_singular( 'post' )) { // php code for your custom breadcrumb here } else return $output; }Forum: Themes and Templates
In reply to: [Customizr] [Theme: Customizr] Remove footer logo.You don’t have to replace line number 3, but put the html inside the variable. Here’s an example:
add_filter('tc_credits_display', 'my_custom_credits'); function my_custom_credits(){ $credits = 'Customized by <a href="http://wordpress.org/support/profile/foodergolove" title="foodergolove\'s profile on WordPress">foodergolove</a>'; $newline_credits = ''; return ' <div class="span4 credits"> <p> · © '.esc_attr( date( 'Y' ) ).' <a href="'.esc_url( home_url() ).'" title="'.esc_attr(get_bloginfo()).'" rel="bookmark">'.esc_attr(get_bloginfo()).'</a> · '.($credits ? $credits : 'Designed by <a href="http://www.themesandco.com/">Themes & Co</a>').' ·'.($newline_credits ? '<br />· '.$newline_credits.' ·' : '').'</p> </div>'; }Of course, you’ll need to change the html to whatever you need. Also, make sure you escape any single quote in your html by preceding it with a backslash, the same way I have done in the title of the link, in the above example.
You’re welcome. Don’t forget to mark as resolved.
Thank you for using Customizr.
Forum: Themes and Templates
In reply to: [Customizr] Increase limit of 200 chars featured text excerptI finally understood what you’re after.
Copy class-content-featured_pages.php from customizr to /wp-content/themes/{child-theme-folder}/parts and comment-out (or just delete) lines from 135 to 142.
This solution allows you to disable the limitation, but you will lose any future updates of this file, as the one in your child theme takes precedence over the file in parent theme. You can avoid this by re-applying the same mod after each customizr update and saving the modded file from customizr over the version in your child theme.
Forum: Themes and Templates
In reply to: [Customizr] logo wrong place internet explorYou have two options: leave IE with rectangular images. IE users deserve to see uglier pages, if you ask me.
Or make the thumbnails rectangular in all browsers.
#main-wrapper .round-div {border-radius: 0;}Why? Because your client is “locked down” to IE 6.0. Or 7.0. Or 8.0. The version is not important. The “locked down” part is. How can you be locked down to a browser version that’s not even W3C compliant? What if your grand-grand…-grand fathers got locked down to 4-legged walking 2.7.1?