The_Waste_Land
Forum Replies Created
-
Forum: Plugins
In reply to: [Pinpoint Booking System - #1 WordPress Booking Plugin] Price not showingFor anybody looking for a solution:
Opacity was set to 0
.dopbsp-price {
opacity: 0 !important;
}Just change the value to make it visible again.
Forum: Themes and Templates
In reply to: [Theme: Spacious] Hide header on a specific pageSorry: it just took some more time than usual for the changes to be applied. This morning everything is ok.
Forum: Themes and Templates
In reply to: [Pure & Simple] How to remove banner imageI panicked too, after the update: just go into “Basic settings” of the Customizer and flag “Hide default content from theme”.
Forum: Themes and Templates
In reply to: [Customizr] qTranslate and featured pagesYay, it works now! I used Unicode for the quote and suddenly remembered that I had the same problem at the beginning, with letters with accents.
Thank you for your help and the suggestions: I suspected that the adjustments were no longer necessary, but I was afraid to take them down. I have removed them now.
Have a nice day! ??
Forum: Themes and Templates
In reply to: [Customizr] qTranslate and featured pagesHi d4z_c0nf,
thank you for your help!
This happens with the parent theme too.
What I did was raising the characters limitations to 500 instead of 200, following this post:
To remove the 200 chars limitation for featured pages description (between the image and the button, on first page) you need to comment out lines 118 to 125 in /wp-content/themes/customizr/parts/class-content-featured_pages.php.
An alternative to removing the limitations is to set them higher, in accordance with the number of languages your multilingual website will be set to (double the limit for 2 languages, triple it for 3, etc.).
I think the lines of code are 154-156 in my child-theme file and look like this:
//limit text to 500 car per language $default_fp_text_length = apply_filters( 'tc_fp_text_length', 500 ); $text = ( strlen($text) > $default_fp_text_length ) ? substr( $text , 0 , strpos( $text, ' ' , $default_fp_text_length) ). ' ...' : $text;
Here is the text I put into the featured text fields: https://pastebin.com/WEfnHb1L
Thank you very much again!
Forum: Themes and Templates
In reply to: [Customizr] qTranslate and featured pagesI switched to qTranslate X, had to make a few adjustments to get things back the way they were with qTranslate but no luck with the featured pages…
What puzzles me is the fact that one of them works just fine.
Forum: Themes and Templates
In reply to: [Customizr] qTranslate and featured pagesI’m currently using qtranslate: I will try to switch to qtranslateX and see what happens.
Thank you for your suggestion!
Forum: Themes and Templates
In reply to: [Customizr] Logo and favicon disappeared after upgrade to 3.1.11Thanks, d4z_c0nf ?? I think I managed to put it back the way it was!
Forum: Themes and Templates
In reply to: [Customizr] Logo and favicon disappeared after upgrade to 3.1.11Thank you very much, it worked.
Now I have to find out how to center again logo and menu, since after the changes this explanation is no longer applicable (which was the reason why I copied the file in the first place). ??
Forum: Themes and Templates
In reply to: [Customizr] Logo and favicon disappeared after upgrade to 3.1.11Yep, I did…
Forum: Reviews
In reply to: [Really Simple CAPTCHA] Conflicts with Contact Form 7So what is the solution?
No solution, just a workaround: I had to deactivate the captcha (luckily we don’t get much spam anyway) as the priority was to get Contact Form 7 to work.
Forum: Themes and Templates
In reply to: [Customizr] Center menu itemsFor future reference, this is the piece of code I used and it worked:
/* Variable number of floating elements */ .navbar .nav { float: none; width: 100%; text-align: center; } .navbar .nav > li { float: none; display: inline-block; }
I also adjusted the width of the navbar in
.navbar-wrapper .navbar.notresp.row-fluid { float: none; width: 90%; margin: 0 auto; }
Thanks.
Forum: Themes and Templates
In reply to: [Customizr] Featured text no longer shows, only on one itemThis post is a bit old, but I’m experiencing the exact same problem (I will post the link to my website as soon as it is published).
@terrierlogic, did you manage to solve it? If so, how?
Thank you.
Forum: Themes and Templates
In reply to: [Customizr] Center menu itemsOk, thanks.
I’ll try and post the results.
Forum: Themes and Templates
In reply to: [Customizr] Center menu itemsHI nikeo,
thanks again for the awesome theme and for your help.
I’m already using a child theme, could you please point to me which bit of code do I need in order to achieve my goal?
I already have the following in my style.css and I’m afraid I would mess around:
/* navbar site desc remove but keep it for SEO */ .navbar-wrapper .navbar .site-description { position: absolute !important; clip: rect(1px, 1px, 1px, 1px); } /* navbar social remove */ .navbar-wrapper .navbar .social-block { display: none; } /* navbar adjust padding */ .navbar-inner { padding-top: 16px; } .navbar.resp .navbar-inner { padding-bottom: 4px; } /* Center navbar */ .navbar-wrapper .navbar { float: right; width: 70%; }