Maruti Mohanty
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Fashionistas] Change Continue Reading – How to?Hi
What J has mentioned above would also work but the problem is it would all be lost if the theme gets updated. This is the sole reason why I advocate about child theme so highly.
Thanks
[ Moderator note: Link corrected. Please use the Codex link instead of using a third party blog link. ]
Forum: Themes and Templates
In reply to: [Fashionistas] Woocommerce with Fashionista themeHi R
can you share a link to your site.
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] "Next Article"/"Previous Article"Hi A
You can do it by adding the following set of codes at the bottom of your theme’s functions.php file. Like always I would ask you to do the following change using a child theme, so this change along with any further change would remain preserved.
function se_change_previous_text( $output, $format, $link, $post, $adjacent ) { $output = str_replace( 'Previous Article', 'Previous Recipe', $output ); return $output; } add_filter( 'previous_post_link', 'se_change_previous_text', 10, 5 ); function se_change_next_text( $output, $format, $link, $post, $adjacent ) { $output = str_replace( 'Next Article', 'Next Recipe', $output ); return $output; } add_filter( 'next_post_link', 'se_change_next_text', 10, 5 );Thanks
Forum: Themes and Templates
In reply to: [Hiero] delete date from posts but keep authorgreat 🙂
Glad it helped.
Forum: Themes and Templates
In reply to: [Hiero] delete date from posts but keep authorHi M
Did you try to use the css I have suggested to use.
Forum: Themes and Templates
In reply to: [Hiero] delete date from posts but keep authorHi M
You can add the following css to the theme’s style.css file to make this work. I will advice you to add this css using child theme, so that the changes made remain preserved even after theme update.
.entry-meta .posted-on { display: none; }hope it helps!!
Thanks
Hi S
You can add the following css to the theme’s style.css file to make this work. I will advice you to add this css using child theme, so that the changes made remain preserved even after theme update.
.aps-social-icon-wrapper .aps-group-vertical { width: 55px !important; } .aps-each-icon { width: 50px !important; }Thanks
Forum: Themes and Templates
In reply to: [Hiero] Change featured image to a strip?Hi F
You need to make changes in the image size for the front page. it is using the image size namely thumb-featured
so change the following line from functions.php
add_image_size( 'thumb-featured', 250, 175, true );to
add_image_size( 'thumb-featured', 640, 150, true );After this regenerate all the images using the regenerate plugin to see the effect in the existing images.
Hope it helps
Thanks
Hi S
You can make the change in line number 25 of the single.php file of the theme.
I would recommend to do the change using a child theme.
Thanks
Forum: Themes and Templates
In reply to: [Hiero] Rename Continue ReadingHi M
can you share a link to your site for us to have a look?
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Submenus don't show up on mobileHi S
I just checked the site and the sub menu works fine. Please do let us know if the issue still exists.
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Social Media Widget not working in FooterHi S
Actually the social media widget is working in the footer, except there are some css issue.
Add the below css at the bottom of the child theme‘s style.css to make the icons work.
.site-extra .widget-social-icons li { float: left; margin: 5px 10px 5px 0; text-align: center; } .site-extra .widget-social-icons li a { display: block; } .site-extra .widget-social-icons li a [class^="ico-"]:before { width: 40px; margin: 0; color: #fff; font-size: 20px; line-height: 40px; background: #333; } .site-extra .widget-social-icons li a:hover [class^="ico-"]:before { background: #1fa0ae; }Forum: Themes and Templates
In reply to: [Fashionistas] Category displayHi L
This would need a fair deal of customization (coding) to achieve this change.
If you are comfortable with coding then create a file name category.php in the theme folder and staring coding taking the theme structure into reference. and add style to the theme’s style.css file.
Please do these changes using a child theme, as these changes would lost otherwise on theme update.
once this is done, any category page will follow the structure.
Also the width of the logo is beyond the container width and hence add a scroll at the bottom. it would be better to add a logo of width (max) 980px for your site.
hope it helps!!
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Change Continue Reading – How to?Hi P
can you confirm if you have used the code in the child theme’s function.php file?
Thanks
Hi
I checked your site and the responsiveness is breaking due to the width of the logo you are using.
Use a logo of width max to the width of the container and it would work, for eg if the container width is 980px, logow with should be less than or equal to 980 and same goes for 1200px container width.
Hope it helps!!
Thanks