Hari Maliya
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Spasalon] Changing banner color for pages after the firstHi santana
Thanks for using our theme.
For the color of the banner to refer this link.
https://www.ads-software.com/support/topic/pink-strip-change-colour?replies=6
It will resolved your issue. If have more query let me know.
Thanks
Forum: Themes and Templates
In reply to: [Spasalon] Product Section, links go nowhereHi lcapponi
Thanks for using our theme.
The product lines hover color is clearly.
Using theme custom css option and add given some line of code in custom css box.
ul#flex_new li a:hover{ color:#353c3f; }
It resolved your issues.
Thanks
Forum: Themes and Templates
In reply to: [Spasalon] Color, Size and FontHi sarabaptistadesousa
Can you share us your site url.
Thanks
-Hari MaliyaForum: Plugins
In reply to: [Webriti SMTP Mail] troubleshooting fdailureHi DoocesWild
Yes! you can enable Open SSL Service in your hosting.
Thanks
-HariForum: Themes and Templates
In reply to: [Spasalon] Add sections to homepageHi bluestarmultimedia
Thanks for using our theme.
Can your share your site URL. We look it.
And share us screenshot of your site layout layout.
Thanks
-Hari MaliyaForum: Plugins
In reply to: [Webriti SMTP Mail] Location of emailsHi Tenkepadu
Easy SMTP Plugin are useful for your wp-mail() function.
It send a email own your email address.
Thanks
Forum: Plugins
In reply to: [Webriti SMTP Mail] Unable to connect with Amazon SES SMTP relayHi Atabayoyon
We are working on Encryption feature.
Encryption option provide next update.
Thanks
-HariForum: Themes and Templates
In reply to: [Spasalon] How to add differents images on SpaSalon ThemeHi Mario
Thanks for using our theme.
The home page images and text changed by using theme option panel.
Goto->Admin dashboard ->appearance ->option panel->Home tab
After that full fill your required home page images and text.
No need to replace these images.
Thanks
Forum: Themes and Templates
In reply to: [Spasalon] Description in pink header bar for all pagesHi Sara
Thanks for using our theme.
In the spasalon pink header text changed by using given instruction.
1 . The home page pink header text changed by using theme option panel->Pink Highlight Strip option setting
2 . The pages pink header text changed by using meta boxes.
Meta box are available in the page editor below.It will resolved your issue.
Thanks
Forum: Themes and Templates
In reply to: [Busiprof] Article/blog excerptHi larry
You want to display limited text in recent blog section.
In this section the_excerpt(); function not use full.
Crete first child theme after that follow the given instruction.
Here i provide another custom function. It work to similar the_excerpt(); function.
You can find given code in recent blog section
<div class=”media-body”>
<p><?php echo ‘‘ . $recent[“post_title”].’‘; ?></p>After that add below code in recent blog section
<p><?php echo $excerpt = substr($recent[‘post_content’], 0, 75); ?></p>It will resolve your issue. If you have any confusion let me know.
Thanks
Forum: Themes and Templates
In reply to: [Rambo] Wrap-text issue on PagesHi Socho
For blog and single post text-align justify to add given css in theme option custom css box.
.blog_section2 p, .blog_single_post p { text-align:justify; }
If you want to text-align justify in other pages.
Find a specific element id and class using inspect element option in a browser and Add text-align justify; css.Thanks
Forum: Themes and Templates
In reply to: [Busiprof] page titles wrongHi larry
Create child theme using child theme creator plugin
After that create banner-header-archive.php and archive.php file in child theme.
Open the both file and copy paste one by one file code.
Remove some line of code form banner-header-archive.php and add your hard-coded title text and description .
For Example :
<h2 class=”about_head pull-left”><?php the_title(); ?><span><?php bloginfo(‘description’);?></span></h2>
To
<h2 class=”about_head pull-left”>Your Archive Title Text <span>Your Archive Title Description </span></h2>Save it.
After that open child theme archive.php file and link your banner-header-archive.php file like this type:
get_template_part(‘banner’,’header’);
To
get_template_part(‘banner’,’header-archive’);Save it.
It will resolved your issue.
Thanks
Forum: Plugins
In reply to: [Webriti SMTP Mail] Switch off SSL??Hi Paulio
Here are provide some instruction to turn off SSl.
1. Find $phpmailer->SMTPSecure = get_option(‘smtp_ssl’);
code in webriti-smtp-mail.php file.2. Add given code $phpmailer->SMTPSecure = ‘none’;
3. Save it.
4. After that save your plugin details.
It will resolved issue. Otherwise wait for next update.
Thanks
Forum: Plugins
In reply to: [Webriti SMTP Mail] Test email process is failed.Hi Webmaster
Thanks for using our plugin.
I will provide a option for SSL on/off in next update.
Thanks
Forum: Plugins
In reply to: [Webriti SMTP Mail] Switch off SSL??Hi Paulio
Thanks for using our plugin.
SSL Turn off option provide a next update.
If you able to edit some line of code ?
Then i will provide line of code.Thanks