Sonal S SinhaModerator
- Topics: 0
- Replies: 31337
- Total: 31337
Member since: August 16, 2013
Hi,
Kindly check this article: https://www.wpbeginner.com/wp-themes/how-to-create-a-wordpress-child-theme-video/
Regards,
Brad
eljay09Participant
- Topics: 2
- Replies: 2
- Total: 4
Member since: January 22, 2019
Reply to myself and others. I used two different plugins to create a child theme, so the above problem is solved. HOWEVER, the child theme only shows the original Hotel theme with the default setup and nothing of the changes in content I already made.
How can I change this?
BTW I’m surprised that after almost 24 hours still no one of SKT has bothered to reply.
eljay09Participant
Member since: January 22, 2019
Hi, I need to put scripts in the HEAD tag of my SKT Hotel Pro theme but I want to do that in a child theme. Can anyone advice on how to set up a child theme for Hotel Pro (i.e. if possible)?
SylviaParticipant
Member since: May 19, 2016
Hi!
I have Complete pro installed via a child theme.
I have 2 specific issues.
First, since a while, the social icons (facebook) in the footer as well as in the our team section doesn’t show the right icon or any icon at all.
Second, on the front page, I want to include a slider into the different home sections. I tried this with multiple sliders, but all seem to not “fill” the specific home sections, I get them to be full wide but there stays a border at the button and at the top, so I was wondering how I can change that?
Sonal S SinhaModerator
- Topics: 0
- Replies: 31337
- Total: 31337
Member since: August 16, 2013
Hi,
Kindly go to Appearance >> Theme Options >> Basic Settings >> Custom CSS Box:
Add this code there:
#sidebar #meta { display:none;}
#sidebar .widget-title:nth-child(3) { display:none !important;}
Regards,
Chris
Yves JalbertParticipant
- Topics: 1
- Replies: 3
- Total: 4
Member since: April 21, 2016
Oh boy, this is so simple it’s almost embarrassing! Thank you, it worked perfectly. I didn’t put it in the Custom CSS portion of the Customizer but in the styling sheet of a child theme I linked to the parent farming theme. Your answer was perfect considering my absolutely novice question, but the child theme will work better in the long term. Now I have to spend much needed time on improving my knowledge of css, php and wordpress so I don’t ask such questions again.
On an unrelated subject you might be interested to know that your themes work beautifully with WPML users. The easiest (and quickest way) for novice users like me to translate fields in the Appearance Customizer is to use the WMPL shortcodes and the WMPL string translation. I just register new strings as I go in each field (example below) and then translate them in WPML string translation.
Reference: https://wpml.org/documentation/support/wpml-coding-api/shortcodes/
Anyways, many thanks, love your themes and will continue to refer people to your site!
Regards,
Yves
JimakoParticipant
- Topics: 3
- Replies: 3
- Total: 6
Member since: November 27, 2018
I sent it to you as soon as I created this post. Then I found problem. Your options for fonts need to be resaved and you have problem with options and child theme.
Sonal S SinhaModerator
- Topics: 0
- Replies: 31337
- Total: 31337
Member since: August 16, 2013
Hi,
Do you want SKT Welder Pro child theme?
Regards,
Brad
JimakoParticipant
Member since: November 27, 2018
Hi,
SKT Welder Pro theme is not working with child theme out of box. I didn’t find this in documentation. Maybe this helps somebody.
There are 2 ways how to detect theme options name in this theme:
$themename = wp_get_theme();
and
$option_name = get_option( 'stylesheet' );
This means that you can:
1. to name your child theme the same name as your child theme folder (Theme Name in your child style.css)
or you need to add this code to function.php in child theme:
if ( ! is_admin() ) {
function optionsframework_option_name() {
// Change this to use your theme slug
$themename = wp_get_theme();
$themename = preg_replace("/\W/", "_", strtolower($themename) );
return $themename;
}
}
Otherwise you don’t get correct options values and your site doesn’t work.
Edited: added test if it’s not admin area. Otherwise you get fatal error, because in admin area it works different way.
Sonal S SinhaModerator
- Topics: 0
- Replies: 31337
- Total: 31337
Member since: August 16, 2013
Hi,
Kindly go to Appearance >> Customize >> Basic >> Scroll down to find Custom CSS and paste there:
Q.2 Answer
.post_block_style1 { width:31.30%;}
.post_block_style1:nth-child(3) { margin-right:0;}
.post_block_style1 .style1-post-thumb { height:275px;}
Q. 1 Answer
Kindly send us your URL of the site and WordPress admin details (Username & Password) via email: [email protected] Please mention this forum URL while replying so that we understand what needs to be done.
Regards,
Chris
james14Participant
Member since: July 24, 2017
I am having a couple of issues with a new website I am creating using the SKT Spa Pro theme. Note: I created a child theme for it.
Here is the website: https://envynailswintersprings.com/
I have changed all the colors from the lime green to a Burgundy color, but I can’t change the color of the dots under the testimonials section on the home page or the “Learn More” buttons on the home page. They are green and I want them Burgundy (like the header). If you take a look at the blog section buttons on the home page, you’ll see the way I want them to look. The Burgundy color is #831913.
Can you help me fix that issue, please?
procopiaParticipant
- Topics: 8
- Replies: 17
- Total: 25
Member since: November 17, 2017
It does not delete its data, but it deletes all changes that have been made to the functions.php, header.php etc. So I guess I will have to work with a child theme, if I want to avoid this in the future?
Regards,
Thomas
Sonal S SinhaModerator
- Topics: 0
- Replies: 31337
- Total: 31337
Member since: August 16, 2013
Hi,
Kindly go to Appearance >> Theme Options >> Basic Settings >> Custom CSS Box:
Add this code there:
.team-columns:nth-child(5) { margin-right: 0 !important;}
.lastcolumn { margin-right: 20px !important;}
.team-columns { width:23.40%}
.team-columns .teamthumbs { width:200px; height:200px;}
Regards,
Chris
Sonal S SinhaModerator
- Topics: 0
- Replies: 31337
- Total: 31337
Member since: August 16, 2013
Hi,
Kindly go to Appearance >> Theme Options >> Basic Settings >> Custom CSS Box:
Add this code there:
.header .header-inner .nav ul li:first-child a { color:#c01819;}
Regards,
Chris