Maruti Mohanty
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Fashionistas] Menu Mobil VersionHi V
This is how the menus are designed for the theme by default, except the main seems to be customized. The default main menu comes in a single row.
can you tell me how do you would like to have it ?
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Hyperlink/ Menu ColorsHi D
You can do these by adding the css in the following selector
This one for the link color and font for the main navigation
#main-navigation li a { }This one for the hover of the main navigation
#main-navigation li a:hover { }I will suggest you to add these or any changes using a child theme, so that the changes you have worked on remain preserved.
Thanks
Forum: Themes and Templates
In reply to: [Hiero] Hiero Side BarHi D.
can you share a link to your site.
Forum: Themes and Templates
In reply to: [Hiero] Full Width PageHi D
to do this, while publishing/editing page, under page attributes, in template choose full width and update the page.
This will do the trick š
Forum: Themes and Templates
In reply to: [Hiero] Heiro Greyed-out menu title on MobileHi D
can you please share a link to your site for us to have a look?
Thanks
Forum: Themes and Templates
In reply to: [Hiero] Search bar at bottom and AT Tab cut offHi F
This is mostly css changes, can you share a link to you site.
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Child Theme Changes Appearance and MobileForum: Themes and Templates
In reply to: [Fashionistas] Linking blog posts to pages on the headerHi E
can you share a link to you site for us to have a look?
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Post Excerpts Missing / No Long ThereHi J
can you share the link to you blog page?
Forum: Themes and Templates
In reply to: [Fashionistas] Submenu on mobile and tablet deviceHi B
can you share a link for me to have a look?
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Category displayHi L
can you share a link to your site and also more explanation on how you want your category page to be. Add a screenshot for us if possible to make thing more visible
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Child Theme Changes Appearance and MobileHi M,
I checked the site and saw the style.css file of the child theme, I dont see an importing of the parent theme style.css into it.
So Iām assuming you have something like this in your child functions.php file where you have enqueued parent theme style.css:
add_action('wp_enqueue_scripts', 'function_name');Try adding a priority like this to the same:
add_action('wp_enqueue_scripts', 'function_name', 99);or you can follow this blog, to know more on child themes.
Hope it helps!!
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Social Icons Header SizeHi V
1) The best width for a header (I guess you mean logo here) would be anything less than equal to 980px. 980px width image will take the complete space.
2) and 3) you cant do it without custom coding. If you do so you will have to modify the theme files.
The concerned file is fashionistas/inc/widgets/widget-social-icons.php
Forum: Themes and Templates
In reply to: [Fashionistas] Showing full blog post and excerpts on homepageHi both,
I have answered someone with a similar issue here https://wordpress.org/support/topic/code-for-first-full-postexcerpt-for-rest?replies=1#post-6794545
Hope it helps!!
Thanks
Forum: Themes and Templates
In reply to: [Fashionistas] Code for first full post/excerpt for restHi D
You can do it customizing the wp-content/themes/fashionistas/content.php file. I will suggest you to use child theme for making the change, so that the change remain preserved even after the theme is updated, which you need to do.
Replace the following set of codes from line number 30
<?php if ( ( is_search() && get_theme_mod('athemes_search_excerpt') =='' ) || ( is_home() && get_theme_mod('athemes_home_excerpt') =='' ) || ( is_archive() && get_theme_mod('athemes_arch_excerpt') =='' ) ) : ?> <div class="entry-summary"> <?php the_excerpt(); ?> <!-- .entry-summary --></div> <?php else : ?> <div class="clearfix entry-content"> <?php the_content( __( 'Continue Reading <span class="meta-nav">→</span>', 'athemes' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'athemes' ), 'after' => '</div>' ) ); ?> <!-- .entry-content --></div> <?php endif; ?>with the following code
<?php $recent_post = wp_get_recent_posts( array( 'numberposts' => 1, 'post_status' => 'publish' ), OBJECT ); ?> <?php if ( $recent_post[0]->ID === get_the_ID() ) :?> <div class="clearfix entry-content"> <?php the_content( __( 'Continue Reading <span class="meta-nav">→</span>', 'athemes' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'athemes' ), 'after' => '</div>' ) ); ?> <!-- .entry-content --></div> <?php else : if ( ( is_search() && get_theme_mod('athemes_search_excerpt') =='' ) || ( is_home() && get_theme_mod('athemes_home_excerpt') =='' ) || ( is_archive() && get_theme_mod('athemes_arch_excerpt') =='' ) ) : ?> <div class="entry-summary"> <?php the_excerpt(); ?> <!-- .entry-summary --></div> <?php else : ?> <div class="clearfix entry-content"> <?php the_content( __( 'Continue Reading <span class="meta-nav">→</span>', 'athemes' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'athemes' ), 'after' => '</div>' ) ); ?> <!-- .entry-content --></div> <?php endif; endif; ?>Also make sure you have checked, excerpt for home page in the theme customizer.
Hope it helps!!
Thanks