• I am using WordPress 4.3 and Enigma 1.9.6.
    I was wondering whether there is a way to a way to disbale/enable “Service on Home” the same way you can disable/enable “Portfolio on Home”
    Currently there is no enable/disable checkbox at:
    Appearance >> Customize >> Theme Options >> Service Options
    or
    Appearance >> Theme Options >> Home option >> General Option >> Service Option

    Thank you,

    David

Viewing 12 replies - 1 through 12 (of 12 total)
  • Hi,

    Sorry for inconveniences. Service On Home not have such Option to enable/disable it.
    If you want to remove Service Section please go to admin Dashboard-> Appearance-> Customize-> Theme options-> General Theme Options And find Custom CSS editor. Now copy below css in custom css editor

    .enigma_service {
      display: none !important;
    }

    Save the changes.

    Thanks.

    Thread Starter hydalive

    (@hydalive)

    Thank you for the fast response. I followed your instruction and added the piece of code to the css editor under General Theme Options, but after doing so I am no more able to save and publish the changes I made.
    As matter of fact if I add anything to the css editor then I will not be able to save and publish the change.

    Hi,

    Please provide Site URL.

    Thanks

    Thread Starter hydalive

    (@hydalive)

    it is https://www.carryoutvalet.com

    By the way in F12 developer tool mode when I add:
    display: none !important;
    to the below css style code, the “our services” section does disappear. But this is just a temporary to see if the script work.

    .enigma_service {
    padding-top: 90px;
    padding-bottom: 90px;
    display: none !important;
    }

    Thank you

    Hi,

    Please deactivate all your plugins and then copy provided CSS into Custom CSS editor.

    Thanks.

    Thread Starter hydalive

    (@hydalive)

    Unfortunately, disabling all plugins and copying and pasting the CSS code into the Custom CSS edit did not help either. I am still not able to save and publish the changes.

    Hi,

    Please copy code from footer.php and post here.

    Thanks.

    Thread Starter hydalive

    (@hydalive)

    I have made a small progress and was able to partially disable the test that shows under the 3 icons of our services. However I am not able to disable the header title “OUR SERVICES” and the 3 icons themselves.
    The way I did was while I was logged into WordPress as admin,
    – I open the home page and click on edit this page
    – Next there is a visual editor with a row of test that says the following by default “This is an example of a WordPress page, ……. manage all of your content inside of WordPress.”
    – I click on the edit row icon on the right hand corner of the visual editor (not the edit row that shows when you click on the wrench icon on the top right corner of the visual editor )
    – Next went to attributes >> CSS styles and pasted the below code:
    – added the below code to the CSS styles:

    .enigma_service{
    display: none !important;
    }

    Below is the code for from the footer.php file

    <!– enigma Callout Section –>
    <?php $wl_theme_options = weblizar_get_options(); ?>
    <!– Footer Widget Secton –>
    <div class=”enigma_footer_widget_area”>
    <div class=”container”>
    <div class=”row”>
    <?php
    if ( is_active_sidebar( ‘footer-widget-area’ ) ){
    dynamic_sidebar( ‘footer-widget-area’ );
    } else
    {
    $args = array(
    ‘before_widget’ => ‘<div class=”col-md-3 col-sm-6 enigma_footer_widget_column”>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ‘<div class=”enigma_footer_widget_title”>’,
    ‘after_title’ => ‘<div class=”enigma-footer-separator”></div></div>’ );
    the_widget(‘WP_Widget_Pages’, null, $args);
    } ?>
    </div>
    </div>
    </div>
    <div class=”enigma_footer_area”>
    <div class=”container”>
    <div class=”col-md-12″>
    <p class=”enigma_footer_copyright_info wl_rtl” >
    <?php if($wl_theme_options[‘footer_customizations’]) { echo esc_attr($wl_theme_options[‘footer_customizations’]); }
    if($wl_theme_options[‘developed_by_text’]) { echo “|” .esc_attr($wl_theme_options[‘developed_by_text’]); } ?>
    “><?php if($wl_theme_options[‘developed_by_weblizar_text’]) { echo esc_attr($wl_theme_options[‘developed_by_weblizar_text’]); } ?></p>
    <?php if($wl_theme_options[‘footer_section_social_media_enbled’] == ‘1’) { ?>
    <div class=”enigma_footer_social_div”>
    <ul class=”social”>
    <?php if($wl_theme_options[‘fb_link’]!=”) { ?>
    <li class=”facebook” data-toggle=”tooltip” data-placement=”top” title=”Facebook”>“><i class=”fa fa-facebook”></i>
    <?php } if($wl_theme_options[‘twitter_link’]!=”) { ?>
    <li class=”twitter” data-toggle=”tooltip” data-placement=”top” title=”Twitter”>“><i class=”fa fa-twitter”></i>
    <?php } if($wl_theme_options[‘linkedin_link’]!=”) { ?>
    <li class=”linkedin” data-toggle=”tooltip” data-placement=”top” title=”Linkedin”>“><i class=”fa fa-linkedin”></i>
    <?php } if($wl_theme_options[‘youtube_link’]!=”) { ?>
    <li class=”youtube” data-toggle=”tooltip” data-placement=”top” title=”Youtube”>“><i class=”fa fa-youtube”></i>
    <?php } if($wl_theme_options[‘gplus’]!=”) { ?>
    <li class=”twitter” data-toggle=”tooltip” data-placement=”top” title=”gplus”>“><i class=”fa fa-google-plus”></i>
    <?php } if($wl_theme_options[‘instagram’]!=”) { ?>
    <li class=”facebook” data-toggle=”tooltip” data-placement=”top” title=”instagram”>“><i class=”fa fa-instagram”></i>
    <?php } ?>

    </div>
    <?php } ?>
    </div>
    </div>
    </div>
    <!– /Footer Widget Secton –>
    </div>
    <i class=”fa fa-chevron-up”></i>
    <?php if($wl_theme_options[‘custom_css’]) ?>
    <style type=”text/css”>
    <?php { echo esc_attr($wl_theme_options[‘custom_css’]); } ?>
    </style>
    <?php wp_footer(); ?>
    </body>
    </html>

    Hi,

    Sorry for inconveniences. There is some issue with custom css editor of customizer.
    Please Go to admin dashboard-> Appearance-> Theme Options-> General Settings and find custom css editor there.
    And put below css there

    .enigma_service{
    display: none !important;
    }

    Thanks.

    Thread Starter hydalive

    (@hydalive)

    Wow. It worked. I am impressed.
    Thank you so much for your help.

    Hi,

    Most Welcome.

    Thanks.

    Managed to resolve this issue today. Thank you.

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Is there a way to disable/enable "Service on Home"’ is closed to new replies.