Asmi Khalil
Forum Replies Created
-
Hi thanks for using my theme RedWaves lite.
Please go to Settings => General & check that your Site Address (URL) starts with https:// (if you are using SSL).The logo image path is generated by WordPress and the theme is only retrieving the link from WordPress and render it in pure HTML. I mean this issue is not caused by the theme code but If you have recently switched to SSL, you will need to update both links in Settings => General page.
Sometimes, clearing the cache (if you are using a caching plugin like WP Super Cache) solves the problem.
For further support, please consider visiting our Support Forum https://forum.themient.com
Forum: Themes and Templates
In reply to: [RedWaves Lite] Hide Title "Home"Hello everyone!
@razvancs Sorry for the very late response!
Just remove this code from /template-parts/content-page.php:<header class="entry-header"> <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?> </header><!-- .entry-header -->That’s all!
If you need more assistance, check our Support Forum
Kind Regards!
Asmi Khalil.Forum: Themes and Templates
In reply to: [RedWaves Lite] Menu Hover@rahul020691 No need to install any plugin. Custom CSS feature is already built in RedWaves lite (Appearance => Customize => Design & Layout)
Regards!
Forum: Themes and Templates
In reply to: [RedWaves Lite] Menu HoverIt’s better to add CSS rules directly to Custom CSS textarea. But you can edit your Child theme style.css file too. Both ways will keep your styles even after updating the Parent theme.
Now add the following CSS code to change the menu Color on Mouse-over ( Change the #C60000 to any color you want 🙂 ).secondary-navigation li:hover a, .secondary-navigation li:hover ul a:hover, .secondary-navigation ul li a:hover, .secondary-navigation ul ul li a:hover { background: #C60000 !important; }If you need more help, please consult our Support Forum https://forum.themient.com
Kind Regards!
Asmi Khalil.Forum: Themes and Templates
In reply to: [RedWaves Lite] Help! Font on mobile is wrong!Hi wittensworld! thanks for using my theme RedWaves lite 🙂
To change the theme main font first you need to replace the code responsible for loading the Roboto google font ( in functions.php ) and replace it with the font that you want to use ( Open sans in your case)
Then replace ‘Roboto’ with ‘Open sans’ in style.css.
If you need detailed instructions please consult our Support Forum https://forum.themient.comKind Regards!
Asmi Khalil.Forum: Reviews
In reply to: [RedWaves Lite] Awesome and CleanThanks for your feedback!
Much appreciated 🙂Forum: Reviews
In reply to: [RedWaves Lite] great themeThanks for your feedback!
Much appreciated 🙂hi dnuttall, thanks for using our theme RedWaves lite!
Please give me a link to your website so I could help you with CSS adjustment.Forum: Themes and Templates
In reply to: [RedWaves Lite] How do I get a full width header?@maria Antonietta Perna, thanks for your help
We do have a Custom CSS option ( Appearance => Customize => Design & Layout => Custom CSS )Forum: Themes and Templates
In reply to: [RedWaves Lite] How do I get a full width header?hi @wittensworld, thanks for using my theme!
This is easy to solve:
open header.php file with a code editor and replace this code ( from line 36 to line 45):<div class="container header-container"> <div class="header-inner"> <div class="logo-wrap"> <?php redwaves_logo(); ?> </div><!-- .logo-wrap --> <div class="header_area-wrap"> <?php redwaves_header_area(); ?> </div><!-- .header_area-wrap --> </div><!-- .header-inner --> </div><!-- .container -->with this code:
<div class="logo"><?php redwaves_logo(); ?></div>now add the following CSS rules to your style.css file or use the Custom CSS option ( Appearance => Customize => Design & Layout => Custom CSS ):
.site-header { background-color: #19120a; } .logo img { display: block !important; width: 100% !important; } .secondary-navigation { margin-top: 0 !important; }but this is not the best way. your site header will look ugly on widescreens .
Here is a better way:
use the suite as a background for the entire header and fade its left and right corners with a strong color #19120a.
Now use this CSS code to apply the background and center it in the middle of header:.site-header { background: url( /suit-tie.jpg ) no-repeat center center #19120f; }Now create a transparent 200×90 pixels .PNG logo (Witten’s World) and apply it using the Customizer.
You could add the other text (achieve more..) to a Text widget and style it using CSS. This will look more Professional!
Btw, you should create a child theme. If you apply these changes to the parent theme files, you will lose them next time you update your theme.
We have a dedicated forum for Support https://forum.themient.com
and I would like to invite you to join our community 🙂Forum: Reviews
In reply to: [RedWaves Lite] Nice clean theme plus a very helpful creator!Thanks for your great feedback!
Glad you like it 🙂Forum: Themes and Templates
In reply to: [RedWaves Lite] Meta Tags on Single post contentGlad I helped you 🙂
Thanks for your great feedback!Forum: Themes and Templates
In reply to: [RedWaves Lite] Meta Tags on Single post contentHi @msainion44 thanks for using my theme RedWaves lite & sorry for the late answer!
1# Open your functions.php with a Code editor and scroll down to line 399 and remove these 2 lines from the redwaves_post_meta function:
echo '<br>'; redwaves_entry_tags();( Don’t remove the ?> or you will break your website )
2# Now Open content-single.php file ( located in /template-parts folder ) and add this code after
<?php the_content(); ?>(line 14)<div class="entry-meta post-info"> <?php redwaves_entry_tags(); ?> </div><!-- .entry-meta -->That’s all!
If you like my theme please rate it! https://wordpress.org/support/view/theme-reviews/redwaves-lite#postformFor a better & quicker Support, please join our fast growing Community: https://forum.themient.com
Best Regards!
You’re Welcome!
If you don’t mind, please rate our theme RedWaves Lite! https://wordpress.org/support/view/theme-reviews/redwaves-lite#postform
Thanks in advance!Hi again,
Add this is very bloated, use shareaholic instead https://wordpress.org/plugins/shareaholic/You don’t need to show Floating social buttons on the homepage. not even on pages! you only need to show the Social buttons on Single posts not on the Contact page or Privacy page.. etc
Because your home page receives the highest traffic, you need to keep it very clean and lightweight ( I mean minimum HTTP requests, minimum JS & CSS loaded files )
So if you like Addthis, don’t use the WP Plugin, just Go to your Addthis dashboard. Profile => … => Profile Type and select Default – Custom Website as Type.
Now Go to Tools => Get the code and copy & paste it at the bottom of single.php file (open it with a code editor & backup original file just in case) This will enable Addthis ONLY on your posts and keep your homepage clean & Fast!