wpimran
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Enigma] leave a replyHi,
To remove Leave a Reply text from page use following css In Theme Opitons Custom Css Editor.enigma_comment_form_section h2{ display:none; }
Thanks
Hi,
First create a page enter title “Home” and publish it.
Now go to Appearance >> MenusClick on view all tab on left side select Home page ( newly created ) and click on add menu button.
remove old ‘Home’ from menus.
save the menusNow go to settings >> reading option.
Select A static page Option.
Choose ‘Home’ as front page and “weTRAIN – Mein Blog” as Posts Page.
save Changes.Thanks
Forum: Themes and Templates
In reply to: [Enigma] Aren't displayed icons on websiteHi,
font-awesome.css file is missing from your site.
This css file is responsible for fa icons.
To enqueue this file first check that there is font-awesome folder persist under css folder.Than go to under /core/scripts/ and open css_js.php file
and paste this line of code
wp_enqueue_style(‘font-awesome’, WL_TEMPLATE_DIR_URI . ‘/css/font-awesome-4.3.0/css/font-awesome.css’);after this line
wp_enqueue_style(‘theme-animtae’, WL_TEMPLATE_DIR_URI . ‘/css/theme-animtae.css’);
save the changes
Thanks.Forum: Themes and Templates
In reply to: [Enigma] Our Services and Recent Work sectionsHi,
Go to enigma theme directory open home-services.php file,
go to line no. 9.
replace this line
<h3><?php echo esc_attr($wl_theme_options[‘home_service_heading’]); ?></h3>
with this
<h3><?php printf(__(‘%s’,’weblizar’),esc_attr($wl_theme_options[‘home_service_heading’])); ?></h3>Now Open home-portfolio.php file goto line no. 9
and replace this
<h3><?php echo esc_attr($wl_theme_options[‘port_heading’]); ?></h3>With this
<h3><?php printf(__(‘%s’,’weblizar’),esc_attr($wl_theme_options[‘port_heading’])); ?></h3>Save the changes.
Now try to update lang(.pot) file.Thanks
Forum: Themes and Templates
In reply to: [Enigma] footer menuHi,
YOu can put footer info using Footer Option under Theme Options.
ThanksForum: Themes and Templates
In reply to: [Enigma] Home content wont showHi mirp,
Did you uncheck the Home-Page or Custom Page Option checkbox in Theme Option?
ThanksForum: Themes and Templates
In reply to: [Enigma] Aren't displayed icons on websiteHi young_FIM,
Please provide your site url.
ThanksForum: Themes and Templates
In reply to: [Enigma] Client SectionHi lenaphoman,
Client section feature provided in pro version.
If you want to use this feature you have to upgrade to pro version.
ThanksHi Lxdcoms,
I Check this https://justin.jlinwebsolutions.com/portfolios/ page,and I found that it’s missing enigma-footer-script.js.
So either enqueue this file or copy and paste it’s content to your portfolio page you created .Thanks
Forum: Themes and Templates
In reply to: [Enigma] Can't change site titleHi,
This issue is fixed in new version just download it.
ThanksForum: Themes and Templates
In reply to: [Enigma] Can't change site titleHi,
Which version of Enigma you are using?
if v1.8.5:
Open header.php file go to line number 41 and replaceif($wl_theme_options['text_title'] =='on')
toif($wl_theme_options['text_title'] ==1)
.
Save the changes.Thanks
Forum: Themes and Templates
In reply to: [Enigma] Can't change site titleHi,
Which version of Enigma you are using?
if v1.8.5:
Open header.php file go to line number 41 and replaceif($wl_theme_options['text_title'] =='on')
toif($wl_theme_options['text_title'] ==1)
.
Save the changes.Thanks
Forum: Themes and Templates
In reply to: [Enigma] Some questions regarding the theme.Hi,
1) Use this css in Theme Options Custom Css Editor
to reduce the height of menu section..navbar-collapse.collapse{ height:0px !important; }
2) You have set .container { width: 100%; }.
may be in your theme options custom css field.
try removing it or use this css in Theme options custom css editor
.container { width: 1170px; }
3) Paste following js code at the end of the /js/enigma_theme_script.js file
jQuery(".nav .dropdown-toggle").click(function () { window.location = jQuery(this).attr('href'); });
Thanks
Forum: Themes and Templates
In reply to: [Enigma] Newest update removing thingsHi,
Follow this thread
ThanksForum: Themes and Templates
In reply to: [Enigma] theme down after last updateHi,
Open header.php file go to line no. 41 Find this line
if($wl_theme_options[‘text_title’] ==”on”)
and replace ‘on’ to 1This will enable your site title.
do same thing in line no. 51 replace ‘on’ to 1Now open footer.php file go to line no. 29
if($wl_theme_options[‘footer_section_social_media_enbled’] == ‘on’)
replace ‘on’ to 1Thanks