Maruti Mohanty
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Fashionistas] WidgetsHi GirlWithNoJob,
It is always advisable to start a new thread for a new topic. This help to keep things clean and also help user(s) looking for relevant topics.
Thanks
Forum: Themes and Templates
In reply to: [Hiero] Center HeaderHi Bill,
Great to know that, you got the issue resolved. Now can you please mark this thread resolved, so that user looking for a similar issue gets the most out of it
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] How to edit the MARGIN?Hi Jasmine,
Can you please elaborate your issue here. It will be better, if you provide some screenshots or examples explaining what you want.
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] How to REMOVE SIDE BAR ON POSTS?Hi iamJasmine,
You can have a look into the below links for undertanding how to use child themes in wordpress.
http://www.sourcexpress.com/wordpress-child-themes-use/
http://codex.wordpress.org/Child_ThemesAfter giving above a good read, as above said copy the **single.php** file from the parent theme folder and paste it in the child theme folder and edit it to remove the line number 56 which reads as below
<?php get_sidebar(); ?>Once the above is done, sidebars would be removed from all the posts
Hope it helps!
Thanks
Forum: Themes and Templates
In reply to: [Hiero] my wp-admin is not working – error 500Hi
This seems to be a syntax error, and also seems you have figured it out.
If yes please add the steps and mark the thread resolved
Thanks
Forum: Themes and Templates
In reply to: [Hiero] Is this theme "Translation Ready"?Hi Rboj,
I have used the theme and it is tranlation ready.
Go for it and let us know if there are any issues?
Thanks
Forum: Themes and Templates
In reply to: [Hiero] Center HeaderHi billtnj
You can do it by adding the below code in your theme’s style.css file.
I would advice you to do the changes using a Child Theme or by using a My custom css plugin to keep the changes preserved even after the update
.site-branding { float: none; }The above should work, else just add “important” like below
.site-branding { float: none !important; }Forum: Themes and Templates
In reply to: [Hiero] Mobile menu overlapping adsenseThanks for sharing your solution for the adsense thing. I am sure this will help many.
And to answer the other question, yes the theme is good to work with the latest verion of WP ie 4.0
Thanks
Forum: Themes and Templates
In reply to: [Hiero] how to use Page navigation number on indexHi Naimur,
Can you please share a link to your site so that we can have a look?
Thanks
Forum: Themes and Templates
In reply to: [Hiero] Social sharing on postsHi OliveHockey,
To do so, you can choose from many already available social sharing plugins.
Thanks
Forum: Themes and Templates
In reply to: [Hiero] page title and article titleHi Marko,
I checked the site and can see what you are talking about.
Can you please check if any plugin, like All in seo has customized the wp_title, most probably through the filter Wp_title
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Featured image shows up on categoriesYou are welcome.
But if you are comfortable with coding. You can look into my suggestion too.
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Adding facebook and instagram accountsHi
I checked the site and you are using a plugin for social sharing.
Please check the plugin’s settings to find the instagram else contact the plugin author.
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Widget AT Social Icons open link in new window?Hi Mia
You can do this by adding
target="_blank"to the anchor tags of the social icons widget, but as there are no hooks available you will have to do it on the core theme files.The path to the file is /fashionistas/inc/widgets/widget-social-icons.php
Change line number 144 which now looks like
<li class="widget-si-<?php echo $athemes_widgets_name; ?>"><a href="<?php echo $athemes_widgets_field_value; ?>" title="<?php echo $athemes_widgets_title; ?>"><i class="ico-<?php echo $athemes_widgets_name; ?>"></i></a></li>to
<li class="widget-si-<?php echo $athemes_widgets_name; ?>"><a href="<?php echo $athemes_widgets_field_value; ?>" target="_blank" title="<?php echo $athemes_widgets_title; ?>"><i class="ico-<?php echo $athemes_widgets_name; ?>"></i></a></li>Hope it helps!!
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Adding facebook and instagram accountsHi
Can you please share you link, so that we can have a look?
Thanks