Maruti Mohanty
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Fashionistas] Centred the featured image on postsYou are welcome 🙂
Forum: Themes and Templates
In reply to: [Fashionistas] get rid of continue readingHi Gwen
which one did you try?
child theme with priority or putting the code at the bottom of the functions.php file?
Forum: Themes and Templates
In reply to: [Hiero] Searchbar in menu ?I checked the link, the theme doesnt provide that. I guess the user has customised it.
Its a combination of css and js.
I will check if I can provide you a small script for this.
Thanks
Forum: Themes and Templates
In reply to: [Hiero] Extending the Menu bar colorOk sure
Hi
You can do this by adding the following codes to the theme’s functions.php file. Here I would suggest you to make the changes using child theme, so that this change along with other changes made will stay preserved even after theme updates
function se_comments_number( $output, $number ) { if ( '0' === $output ) return $output . ' comments'; if ( '1' === $output ) return $output . ' comment'; if ( $output > 1 ) return $output . ' comments'; } add_filter( 'comments_number', 'se_comments_number', 10, 2 );Hope it help!
Thanks
Forum: Plugins
In reply to: [WP Social Avatar] Google Avatar not workingAny updates!!
Forum: Plugins
In reply to: [WP Social Avatar] Installed WP Social Avatar and Cannot Access My WebsiteAny updates?
Forum: Themes and Templates
In reply to: [Fashionistas] Unlimited items in mobile web submenuHi
Please add the css code I have suggested at the bottom of the style.css file or add it using child theme.
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] get rid of continue readingForum: Themes and Templates
In reply to: [Fashionistas] get rid of continue readingHi Gwen
I see the issue.
Please add the above code I have mentioned at the bottom.
The file which is included right after where you have added the code now which is “require get_template_directory() . ‘/inc/extras.php’;” includes the same filter and hence overrides your code.
So in short add the code in the bottom and this would work.
Thanks
Forum: Plugins
In reply to: [WP Social Avatar] Installed WP Social Avatar and Cannot Access My WebsiteHi
I am equally baffled, cause this plugin adds nothing on header or anywhere. It works simply with a fb link and G+ api and that too when you select it, nothing on plugin activation.
Did you try and delete the plugin using ftp?
Thanks
Forum: Plugins
In reply to: [WP Social Avatar] Installed WP Social Avatar and Cannot Access My WebsiteHi
So sorry to hear you are having a problem.
This should never happen with this plugin. This is a very simple and light plugin.
Can you access your site through FTP, if yes please do and delete this plugin from the plugins folder and try and access the site and see if this issue persist.
Do the above and let me know.
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] get rid of continue readingIt should work, cause I tried it with my local setup before proposing the solution.
Please double check the solution and make sure you are making changes in the right file (many a times I keep making changes in a file located in a different location ) and last but not the least. clear your cache (though not really required, still give it a try)
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Unlimited items in mobile web submenuHi
You can do the following by adding the following css in the theme’s style.css file, but I would suggest you to make the changes using child theme, so that this change and any other changes made further will remian preserved even after theme updates.
#main-navigation > .sf-menu > ul { overflow: visible; }The above will show all the submenus.
But if you want to add a scroll to the previous height, add this
#main-navigation > .sf-menu > ul { overflow: scroll; }Hope it help!
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] slash in main menuHi
What Gwen advised will perfectly work, but here I would like to add/suggest you to do the changes using child theme, so that this change along with any other changes made will remain preserved even after theme updates.
You can just add the below code to make this work, you dont need the rest.
main-navigation .sf-menu > ul > li:after { content: ""; }Hope it helps!
Thanks