wpimran
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Enigma] Change Home Slideshow SpeedHi honeyibk,
follow this link
This will explain why you need to create a child theme and how can you achieve this.
Thanks
Forum: Themes and Templates
In reply to: [Enigma] i want show my all blogs on home pageHi nealrango,
to achieve this follow the given bellow instructions:
First of create a child-theme.
after creating a “child-theme” copy the “home-blog.php” file from your core theme directory and paste into your “child-theme” directory.
Now open it in any text editor and find the given below line of code
<div class="row" id="enigma_blog_section">
and remove the id=”enigma_blog_section” section from it.
This will stop horizontal scrolling.Now find and remove the below whole code-
<div class="enigma_carousel-navi"> <div id="port-prev" class="enigma_carousel-prev" > <i class="fa fa-arrow-left"></i> </div> <div id="port-next" class="enigma_carousel-next" > <i class="fa fa-arrow-right"></i> </div> </div>
This will remove arrow navigation.
If you want to show all blog posts on home find this line –
$args = array( ‘post_type’ => ‘post’,’posts_per_page’ => 6);
and replace 6 to -1
Now save the changes.Thanks
Forum: Themes and Templates
In reply to: [Enigma] Footer widgets do not displayHi ohorses,
It`s seems that you have used some custom css in theme option panel.
To enable footer widget area, paste following css in theme options custom css field and save changes..enigma_footer_widget_area { display: block; }
Hi fitnessfactory,
To slow down blog posts slide :Go to your Enigma theme directory under js > carouFredSel-6.2.1 folder
Open file caroufredsel-element.js, and change the time duration (line number 10,11) from 2000 to whatever you want and then save the changes.
Thanks.Forum: Themes and Templates
In reply to: [Enigma] Enigma header contact infoHi deian97,
You can change default contact information under Appearance > Theme Options in Social Media options tab.
Thanks.
Forum: Themes and Templates
In reply to: [Enigma] How to change the Slide pictures?Hi xGolex,
To change slider image and text go to Appearance > Theme Options then click on Slide Show Option tab.
There you can change slider image,text,Read More button text and button link as well.Thanks.
Forum: Themes and Templates
In reply to: [Enigma] Adding a Sub Page Overwrites the OriginalHi ameredith,
Go to your theme directory, under js folder open enigma_theme_script.js
file and paste the following code at the end of the file.
jQuery(function($) { if($(window).width()>769){ $('.navbar .menu-item-has-children > a').click(function(){ location.href = this.href; }); } });
Thanks.
Forum: Themes and Templates
In reply to: [Enigma] Theme option menu is only showing "home option"Hi asybr53,
Because all these settings are stored in your database in
wp_options table.
run following query in your database and delete resultant row.
SELECT * FROM 'wp_options' WHERE 'option_name' LIKE 'enigma_options'
Thanks
Forum: Themes and Templates
In reply to: [Enigma] change what shows in enigma home page blog postsHi ohorses,
Go to your theme directory open home-blog.php filereplace this line
$args = array( ‘post_type’ => ‘post’,’posts_per_page’ => 6);to this
$args = array( ‘post_type’ => ‘post’,’category_name’=>’example’,
‘posts_per_page’ => 3);where example is your category name.
ThanksForum: Themes and Templates
In reply to: [Enigma] Home Page slideshowhi Ranit,
show me your line number 233 code of functions.php file .Hi horatiocaine93,
which version of enigma you are using?try this-
Goto Theme Option >General Option
in Custom CSS Field paste this code and save it..navbar-default .navbar-nav > .current_page_item > a, .navbar-default .navbar-nav > .current_page_item > a:hover, .navbar-default .navbar-nav > .current_page_item> a:focus{ border-radius: 0; box-shadow: 3px 3px 0 rgba(201, 201, 201, 1); color: red; font-family: "Arimo",Arial,Helvetica,sans-serif; font-size: 15px; font-weight: normal; }
Hi Tonk,
Yes you have to enabled that option.
I saw your site and it functioning properly.
I think problem is resolved. ??Do same thing @ana1111111111 to make slider working properly.
Thanks
Forum: Themes and Templates
In reply to: [Enigma] Bread crumbs display issueHI sirjuliantaylor,
replace that line with following-
echo $before . _e("Posts tagged","weblizar") .'"' . single_tag_title('', false) .'"'. $after;
Thanks
Forum: Themes and Templates
In reply to: [Enigma] Icons don't workHi duendedetoca,
It seems that in your sitefont-awesome.min.css
file not loaded properly.Forum: Themes and Templates
In reply to: [Enigma] Site title is duplicated in all pages titlesHi Hani Draidi,
Can you please tell me which version of Enigma you are using?