Someone created a child theme, but I need to modify it to reorder content. How do I access the child theme?

You are looking at the right files area. The HTML is created through the php files. These files can be accessed/edited through the editor as you are viewing or through FPT as Laxmana suggested. Through ftp it would be in your public_html/wp-content/themes/your-child-theme folder. It may not only be the index.php file that you’re looking to … Read more

Create child theme after costumizing the original

Its always good practice to never edit your WordPress themes original files. I am referring mainly to the styles.css and the functions.php files. Any changes you make there will be lost if you ever update that theme. So yes, you definitely create a child theme. Any changes you make to the child them will overwrite … Read more

WordPress Child Theme PHP Code Change Issues

I understand that parent theme updates are not supposed to affect child theme modifications, but does that mean that if I have header.php in my child theme (wp-content/themes/enlighten-child/header.php), then no parent theme updates to the header.php will affect my website? WordPress will always load the Child Theme’s header.php on your site, so theoretically no, it … Read more

Specific custom child theme page

You have the right idea. Your child theme’s copy of front-page.php will take precedence over the parent theme’s, with no danger of it being overwritten by updates to the theme. You will want to make sure to also create an actual page in WordPress to represent that page, and that on the WordPress -> Settings … Read more

Child Theme Translations with PoEdit

Found a solution that works for me: add_action( ‘after_setup_theme’, ‘avia_lang_setup’ ); function avia_lang_setup() { $lang = apply_filters(‘parent-theme-slug’, get_template_directory() . ‘/lang’); load_theme_textdomain(‘avia_framework’, $lang); load_child_theme_textdomain( ‘child-theme-text-domain’, get_stylesheet_directory() . ‘/lang’ ); } Note: Exchange “parent-theme-slug” (typically the parent theme name in small letters) and “child-theme-text-domain” (child theme text domain of your choice)

Child them function.php ‘parent-style’: should I name this as parent theme name?

You can leave it as is (see Jacob Pettie’s comment) or you can change it, but the key here is to add the path to locate the parent theme’s CSS. <?php add_action( ‘wp_enqueue_scripts’, ‘my_theme_enqueue_styles’ ); function my_theme_enqueue_styles() {     wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );   } In your example you’re cutting it off after the … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)