GavickPro
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Perfetta] Add author avatarHello,
Yes, it is possible – but please visualize what do you want to achieve, because it will also need some CSS changes.
Forum: Themes and Templates
In reply to: [Perfetta] Search fieldImplementation is ready: https://github.com/GavickPro/Perfetta-Free-WordPress-Theme/commit/f06991065e3a88a4872a89284bc120c661f9a896
We are wating for an approval on the repository ??
Forum: Themes and Templates
In reply to: [Perfetta] HOME button in navigationHello again,
Sorry for the late reply, but in the last days we have been extremely busy due WordCamp Warsaw.
Regarding your issue – unfortunately currently it is not possible from the theme options level – I’ve added this to our ToDo for the v.1.2 version of the theme. Curently the only solution is using custom CSS code.
Forum: Themes and Templates
In reply to: [Perfetta] Images on Front Page (w/o featured post)Please try to modify the following fragment in the content-header.php file:
<header class="entry-header"> <?php if ( has_post_thumbnail() && ! post_password_required() ) : ?> <?php the_post_thumbnail(); ?> <?php elseif($video_code) : ?> <div class="video-wrapper"> <?php echo $video_code; ?> </div> <?php endif; ?> <h<?php echo is_single() ? '1' : '2'; ?> class="entry-title<?php if(is_sticky()) echo ' sticky'; ?>"> <a href="<?php the_permalink(); ?>" rel="bookmark"><span><?php the_title(); ?></span></a> </h<?php echo is_single() ? '1' : '2'; ?>> </header><!-- .entry-header -->
to:
<header class="entry-header"> <h<?php echo is_single() ? '1' : '2'; ?> class="entry-title<?php if(is_sticky()) echo ' sticky'; ?>"> <a href="<?php the_permalink(); ?>" rel="bookmark"><span><?php the_title(); ?></span></a> </h<?php echo is_single() ? '1' : '2'; ?>> <?php if ( has_post_thumbnail() && ! post_password_required() ) : ?> <?php the_post_thumbnail(); ?> <?php elseif($video_code) : ?> <div class="video-wrapper"> <?php echo $video_code; ?> </div> <?php endif; ?> </header><!-- .entry-header -->
Forum: Themes and Templates
In reply to: [Perfetta] HOME button in navigationYou can modify the font in the Theme Customizer section under the font options section: https://www.gavick.com/documentation/wordpress-themes/wordpress-themes-configuration/perfetta-wordpress-theme-configuration/ – you can select some standard font or paste some Google Fonts URL.
Forum: Themes and Templates
In reply to: [Perfetta] HOME button in navigationHere you should find useful informations about CSS: https://www.brit.co/css-for-beginners/
Forum: Themes and Templates
In reply to: [Perfetta] HOME button in navigationPlease install this plugin: https://www.ads-software.com/plugins/simple-custom-css/ and then please add in this plugin the following CSS code:
.nav-menu li a { color: #000; }
it should solve your problem.
Forum: Themes and Templates
In reply to: [Perfetta] Images on Front Page (w/o featured post)Hello,
If you want to hide the featured image on the single post page, please open file content.header and replace line:
<?php if ( has_post_thumbnail() && ! post_password_required() ) : ?>
to:
<?php if ( has_post_thumbnail() && !is_singular() && ! post_password_required() ) : ?>
Forum: Themes and Templates
In reply to: [Perfetta] HOME button in navigationYou should have a menu structure like on this screenshot: https://www.evernote.com/shard/s165/sh/b4358b65-3245-4fe7-91b5-fe561f212454/4f24e7d85e12b46f981509d062bdac2a
Forum: Themes and Templates
In reply to: [Perfetta] HOME button in navigationDid you tried to set up these menu items on the same level in the menu manager in your dashboard?
Forum: Themes and Templates
In reply to: [Perfetta] HOME button in navigationHello,
Could you better explain what do you want to achieve? Because I don’t understand your issue – the “About me” menu item exists in your main menu and it is the only menu item with submenu. What do you want to change in this menu?
By the way nice implementation of our theme ??
Forum: Themes and Templates
In reply to: [Perfetta] Search fieldWe will add the search field over the content in v.1.2.0: https://github.com/GavickPro/Perfetta-Free-WordPress-Theme/issues/13
Forum: Themes and Templates
In reply to: [Perfetta] side bar modificationHello,
Unfortunately this theme was designed as a one-column layout and adding a sidebar is a custom work which is beyond of our technical support for this theme, because it needs a total rewrite of the main part of the theme structure.
Forum: Themes and Templates
In reply to: [Perfetta] Picture sizeHello,
It seems that you have selected wrong image or image size while selecting the featured image – you are using: https://blog.grubinminutes.com/wp-content/uploads/2014/05/Healthy-Living-copy-150×127.jpg
instead of: https://blog.grubinminutes.com/wp-content/uploads/2014/05/Healthy-Living-copy.jpg
Forum: Themes and Templates
In reply to: [Perfetta] Search fieldThe author block can be modified in the author-bio.php file – you can override it in the Child theme.
Regarding the search field – what exactly do you expect? A special area only for the search field or something other?