Galegri
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Site breaks when width is 980px or lessSolved! I put a couple of ‘!important’ in the ‘margin-left’ of the footers and headers.
Forum: Themes and Templates
In reply to: [Customizr] Upload image/media issueIt works!
Thanks acub for ALL your answers.
I’m provably wrong but you need to change [name of your text domain] for ‘customizr’.
(‘ included)
But I don’t know where you should put this code… that’s all I can help you. Hope it’s enough.Forum: Themes and Templates
In reply to: [Customizr] How to specify skin color for Customizr themeThere is no way to do it automatically, if it’s what you are asking for.
You need to copy one of the css you have to your child-theme. And replace all the hex code by hand.
If you you still want to do it, but need more help, I can give you some tips.
Forum: Themes and Templates
In reply to: [Customizr] Alt Language OuputI don’t know how does WPML work. I just read somewhere that qTranslate is full supported with customizr, so i recommend to use this one.
Forum: Themes and Templates
In reply to: [Customizr] customizing author archive templateTo do something like that you should create a page-template which requires some programing skills (PHP, CSS, HTML).
I didn’t find any tutorial to do this with Customizr, I already tried this twice and is beyond my knowledge of wordpress, sorry.Forum: Themes and Templates
In reply to: [Customizr] Alt Language Ouput@ocianciarelli:
If you use the plugin qTranslate you can use [:en]English text[:es]Spanish text in every text-field of your back-office. This way you can translate slider’s text, featured pages…@jpangburn:
It should be done via WP or some plugin. How did you translate your site? Are you using multisite? Or some plugin? Witch one?It might be due the logo size.
Could you provide us your site’s link?The bubble with comment number is written in the same file, line 231. But i don’t know how to get the post’s date.
May be @electricfeet or @acub could help you.Forum: Themes and Templates
In reply to: [Customizr] How I can disable the glow effect ?I don’t see any glow effect. Do you mean the zoom in when mouse is over?
May be this helps you:.gallery-icon img:hover { transform: none; }
I think it’s in class-content-headings.php:197
Original:
$comments_enabled = ( 1 == esc_attr( tc__f( '__get_option' , 'tc_page_comments' )) && comments_open() && get_comments_number() != 0 && !post_password_required() && is_page() ) ? true : false;
Changed:
$comments_enabled = ( 1 == esc_attr( tc__f( '__get_option' , 'tc_page_comments' )) && comments_open() && get_comments_number() >= 0 && !post_password_required() && is_page() ) ? true : false;
Forum: Themes and Templates
In reply to: [Customizr] Diferent slider images for each lenguageI doesn’t mean that.
Some of my images contain text so i need to show different images for each language.Did it like i was telling in the first post. Creating a function in functions.php that compares image name and $_GET[‘lang’]:
function CheckSlideLang($image) { //Search for '__' in the image name and take the 2 next characters(CA/es) $lang = substr($image, strpos($image, "__")+2, 2); $imageIsRight=false; if(isset($_GET['lang'])) { if($lang == $_GET['lang']) $imageIsRight = true; } //CA(catalan doesn't have GET so check this way) else if($lang =='CA') $imageIsRight = true; //returns true or false return $imageIsRight; }
And a conditional in class-content-slider.php:
if(CheckSlideLang($slide_background)) { $slides[$id] = array( 'title' => $title, 'text' => $text, 'button_text' => $button_text, 'link_id' => $link_id, 'link_url' => $link_url, 'active' => $active, 'color_style' => $color_style, 'slide_background' => $slide_background, ); //increments active index $i++; }
I know it isn’t the best way… but it works.
Forum: Themes and Templates
In reply to: [Customizr] Image buttonsPut a link to your site, it would help a lot.
??Forum: Themes and Templates
In reply to: [Customizr] Adding line break to slider caption descriptionHahahaa!
After all the wordwrap function was doing the same sooo… I don’t know how didn’t see it before, sorry.
Good job!Forum: Themes and Templates
In reply to: [Customizr] "Home" to be a linkThe problem you have is the title of the pages is somehow over your breadcrumb so you can’t click it.
Add this css on your CT or your custom css box.
.breadcrumb-trail { position: relative; z-index: 90; }
Let us know if it worked!