Home Home child theme
How to install a child theme?

INSTALING CHILD-THEME FROM WORDPRESS DASHBOARD STEP 1: From the left-side menu, go to  >  STEP 2: From the top, click  STEP 3: Click the  STEP 4: Click  STEP 5: Browse and locate the theme file listingpro-child.zip, and click  STEP 6:  Click   

How to move translation to Child Theme?

  PART 1: EDIT CHILD THEME FUNCTIONS.PHP STEP 1: FTP into your site. (Example via cPanel or FileZilla) STEP 2: Go to STEP 3: Download and Edit STEP 4: Copy the code below. function listingpr_child_lang_setup() { load_theme_textdomain( ‘listingpro’, get_stylesheet_directory() . ‘/languages’ ); load_child_theme_textdomain( ‘listingpro-child’, get_stylesheet_directory() . ‘/languages’ ); } add_action( ‘after_setup_theme’, ‘listingpr_child_lang_setup’ ); STEP 5: Paste […]