edwardslabs
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Changes to Child Theme style.css Not AppearingNote (at least on Linux) you should not have to copy a zipped file in to be installed. Simply creating the correct directory and style.css is all that is needed to be able to select the child theme in the admin interface.
Forum: Themes and Templates
In reply to: [Customizr] Changes to Child Theme style.css Not AppearingExcellent. Have a great day!
Forum: Themes and Templates
In reply to: [Customizr] Changes to Child Theme style.css Not AppearingDo you have you child theme located here:
/wordpress/wp-content/themes/customizr-child?If so do you have you child theme selected in the wordpress admin menu I ask because I don’t see your child-theme style.css being loaded at all?
Also changes made in Firebug are only on the client side rendering. They have no impact on the actual files.
I found a temporary solution. The function causing issues is esc_html()
in $themeDirectory]/parts/class-content-featured_pages.php I changed the following line from:
$featured_text = esc_html($__options[‘tc_featured_text_’.$area]);
to:
$featured_text = $__options[‘tc_featured_text_’.$area];Now I am just going to copy the file into my child theme and once a theme update is released see if the issue is fixed.
Forum: Themes and Templates
In reply to: [Customizr] HTML Code in features pageI found a temporary solution. The function causing issues is
esc_html()in
$themeDirectory]/parts/class-content-featured_pages.phpI changed the following line from:
$featured_text = esc_html($__options['tc_featured_text_'.$area]);
to:
$featured_text = $__options['tc_featured_text_'.$area];Now I am just going to copy the file into my child theme and once a theme update is released see if the issue is fixed.
Forum: Themes and Templates
In reply to: [Customizr] HTML Code in features pageElectricFeet, what do you mean “clean text”? Just not use HTML? Does anyone have a way to force a newline?
Forum: Themes and Templates
In reply to: [Customizr] Social media buttons not showingAshley,
I had the same issue yesterday and found there was a CSS collision for the element
.icon-facebook:beforeI use the All-In-One Calendar plugin and found the offending css code in there. I don’t have a great fix for it yet but what I did in the meantime is to change the CSS in the calendar plugin to match what the Customizr theme says it should be which is:
.icon-facebook:before{content:"\f204";}Hope this helps. If you can give us a URL I am happy to check if it looks the same as mine did in firebug.
Forum: Themes and Templates
In reply to: [Customizr] How to add images to slider?Upload the image you want to be in the slider. Edit the image. Under the text editor there is an on off switch to add to slider. Turn it on and fill in the content as desired.
Forum: Themes and Templates
In reply to: [Customizr] Slider photos – top portion being cut offI am able to use images in the slider at size 1200×500 but I do notice that when the slider is in Full width mode that there are portions of the image that are cut off.
Are there any more details needed for this issue? I am happy to provide anything requested.