How i change mail address in getwid base theme

To change the mail address in the Getwid base theme, you'll need to modify the theme's code. Here's a step-by-step guide to help you do so:

Method 1: Using the Theme Options

  1. Log in to your WordPress dashboard and navigate to Appearance > Getwid Theme Options.
  2. Scroll down to the Contact Information section.
  3. Update the Email Address field with your new mail address.
  4. Click Save Changes to save your changes.

Method 2: Editing the Theme Files

  1. Log in to your WordPress dashboard and navigate to Appearance > Editor.
  2. In the editor, navigate to the getwid-base.php file (located in the getwid directory).
  3. Search for the following code: <?php echo get_option('getwid_contact_email');?>
  4. Replace the code with your new mail address, wrapped in quotes, like this: <?php echo '[email protected]';?>
  5. Click Update File to save your changes.

Method 3: Using a Child Theme

If you're not comfortable editing the theme files directly, you can create a child theme and override the contact information in the child theme's files.

  1. Create a new folder in the wp-content/themes directory and name it (e.g., getwid-child).
  2. Inside the child theme folder, create a new file called functions.php.
  3. Add the following code to the functions.php file: <?php function getwid_child_contact_email() { return '[email protected]'; }?>
  4. Add the following code to the header.php file (located in the getwid-child directory): <?php echo getwid_child_contact_email();?>
  5. Activate the child theme in your WordPress dashboard.

Remember to replace [email protected] with your actual mail address.

After making these changes, your new mail address should be displayed on your website. If you encounter any issues or have further questions, feel free to ask!