Darshan Saroya
Forum Replies Created
-
Forum: Reviews
In reply to: [Color Your Bar] Shame thats only for ChromeCurrently this feature is available only for Chrome mobile version. It work on all Chrome mobile version whether device is iOS, Android or Windows.
Forum: Plugins
In reply to: [reCaptcha by BestWebSoft] reCAPTCHA v3 not workingIts not working when I disable the contact form 7 recaptcha option.
Even on my other website, it not working, where I do not use Contact Form 7.
Forum: Fixing WordPress
In reply to: get_sample_permalink is not working, give function not defined errorThanks for help.
I think it is better to find another way. It’s litle bit confusing as codex page related to this function provide this information.
Forum: Themes and Templates
In reply to: [Enigma] Picture on Blog displayhi,
Go to admin panel-> settings-> discussion and unchecked the show Avatars option.
Thanks.Forum: Themes and Templates
In reply to: [Enigma] can i edit it ?hi,
Yes you can. Go to appearance-> theme options-> social media
you get option there.
ThanksForum: Themes and Templates
In reply to: [Enigma] Parent pages not navigatable in the Nav Menuhi,
create a child theme first and after it create menu.js file into child theme directory now copy the below code and paste into menu.js file
jQuery(document).ready(function() { var bMobile; // true if in mobile mode var isMobile; // Initiate event handlers function init() { var isMobile = { Android: function() { return navigator.userAgent.match(/Android/i); }, BlackBerry: function() { return navigator.userAgent.match(/BlackBerry/i); }, iOS: function() { return navigator.userAgent.match(/iPhone|iPad|iPod/i); }, Opera: function() { return navigator.userAgent.match(/Opera Mini/i); }, Windows: function() { return navigator.userAgent.match(/IEMobile/i); }, any: function() { return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows()); } }; var oMenus = jQuery('.navbar-nav .dropdown'),nTimer; if( isMobile.any() ) { // Set up menu on click for Mobile and ipad mode oMenus.on({ 'mouseenter touchstart': function(event) { event.preventDefault(); clearTimeout(nTimer); oMenus.removeClass('open'); jQuery(this).addClass('open').slideDown(); },}); jQuery('ul.dropdown-menu li a').on('click touchend', function() { var link = jQuery(this).attr('href'); window.open(link,'_self'); // opens in new window as requested return false; // prevent anchor click }); } else { oMenus.on({'mouseenter touchstart': function(event) { event.preventDefault(); clearTimeout(nTimer); oMenus.removeClass('open'); jQuery(this).addClass('open').slideDown(); }, 'mouseleave': function() { nTimer = setTimeout(function() { oMenus.removeClass('open'); }, 500); } }); } } jQuery(document).ready(function() { // Your other code to run on DOM ready... jQuery(".nav .dropdown-toggle").click(function () { window.location = jQuery(this).attr('href'); }); init(); }); jQuery(window).resize(init); });
save the changes.
ThanksForum: Themes and Templates
In reply to: [Enigma] Functionality of Premium Themehi,
Its a part of more code customization. You can only change background and social media icons/ service icons without any customization.
And all other queries can by done with custom css option but you can’t change social media icon position without code customization.
Thanks.Forum: Themes and Templates
In reply to: [Enigma] Change The Colors In The Menu NavBarhi,
use theme options->general option-> custom css.
Now write below css rules into custom css editor :
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li.active > a,
.navbar-default .navbar-nav > li.active > a:hover{
box-shadow: 3px 3px 3px #aed691 !important;
}Change color Code as per your requirement.
save the changes.
ThanksForum: Themes and Templates
In reply to: [Enigma] Picture on Blog displayhi,
Go to dashboard admin panel-> appearance-> theme options->general Options -> custom css.
now write below css into custom css editor
.enigma_blog_comment {
display: none !important;
}
save the changes.
ThanksForum: Themes and Templates
In reply to: [Enigma] Picture on Blog displayHi…
Firstly create an Gravatar account using https://en.gravatar.com/ and set your image there it will automatically shown here.