hydalive
Forum Replies Created
-
I was looking for a way to use your script to check browsers used to access a custom build php page(page not created using wordpress).
Let me know if this helps.David.
Forum: Plugins
In reply to: [HTML5 Responsive FAQ] Categorys don`t workHi duisburger,
Could you please share the FAQ plugin you ended up using?
Thanks,
David
Hi Liton,
I hope you are doing good.
Did you get the chance to release the update you mentioned in the last post about category not showing?
I haven’t seen any update pushed to my WordPress.Thank you,
David
Hi Liton,
I hope you are doing going.
Did you get the chance to release the update you mentioned in the last post about category not showing?
I haven’t seen any update pushed to my WordPress.Thank you,
David
Hi lifton,
could you explain more where the shortcode for the specific category is supposed to go.
I have tried to place them on the FAQ page that has the [faq] short code without success. I also try each individual FAQ’s. In both case I couldn’t get the category title to display.Thanks,
David
Forum: Themes and Templates
In reply to: [Enigma] Is there a way to disable/enable "Service on Home"Wow. It worked. I am impressed.
Thank you so much for your help.Forum: Themes and Templates
In reply to: [Enigma] Is there a way to disable/enable "Service on Home"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>Forum: Themes and Templates
In reply to: [Enigma] Is there a way to disable/enable "Service on Home"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.
Forum: Themes and Templates
In reply to: [Enigma] Is there a way to disable/enable "Service on Home"it is http://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
Forum: Themes and Templates
In reply to: [Enigma] Is there a way to disable/enable "Service on Home"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.