• Resolved farrahhm

    (@farrahhm)


    Hi,

    I’m using the theme to make a relatively simple site. URL farrahlash.com

    I would like some help with the below:

    1. Removing the Home Page Product Section.
    2. Description – I would like to add in paragraphs, bullet points for the top header description.
    3. Tagline – Again here I would like to make a list and add in bullet points

      4. Increase text size in the Description.

    Thanks
    Farrah

Viewing 1 replies (of 1 total)
  • Hi,

    First I’d suggest you to create A CHILD THEME.

    As you are customizing the theme.

    Found the=ta you have resolved (1) Removing Home Page Product Section.

    (2.) Description:

    You need to put comment a line of code in the parents theme functions.php

    Go to Parents Theme’ functions.php file and comment the line of code at line no. 56

    Now,Here all the below instruction must be done with in the CHILD THEME’s folder.

    Create your own functions.php

    put <?php require_once('option_pannel/option_pannel.php' ); ?> this code in it.

    Now copy and paste ‘option_pannel’ folder into your child themes folder.

    Open file spa_home.php

    find code $current_options['description']=sanitize_text_field($_POST['description']);

    here remove ‘ sanitize_text_field ‘ .

    In the same file find the code update_option('spa_theme_options' ,stripslashes_deep($current_options));

    Here remove the stripslashes_deep() from here and save these changes.

    Similarly You can perform the same thing for the tagline also

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘Remove Home Page Products Section’ is closed to new replies.