778 comments found.
Hey there, bought your theme the other day and I absolutely LOVE it. I tried installing the MailChimp Subscriber Popup today and all of my header sliders stopped working. Just wondering if you had any suggestions.
Hi,
Could you please share your code so I can check it? An online demo would be great.
Thanks.
Here is the javascript I added:
<script type=”text/javascript” src=”//s3.amazonaws.com/downloads.mailchimp.com/js/signup-forms/popup/embed.js” data-dojo-config=”usePlainJson: true, isDebug: false”></script><script type=”text/javascript”>require([“mojo/signup-forms/Loader”], function(L) { L.start({baseUrl“}) })</script>
A demo of the site can be seen at www.zoobl.com
Thanks!
Have you tried to add the JS codes at the end of page? After script.js
BTW, you can add your googleAnalyticsId to script.js file, so you don’t need to place the google code inside your html file.
Moving the JS to the end of the page fixes the slider, but the MailChimp script doesn’t work then 
Seems both works here. Have you found a fix?
I found another way to work around it using the modal you supplied with the template and an embedded form instead of MailChimp’s popup code 
Great. Glad to hear that. Your site looks pretty 
Hi, would you be kind enough to tell us where you got the drawn icons used on Feature 3 on this page: http://thetheme.io/thesaas/block-feature-textual.html?
My whole team really likes then and we’d like to support the creator and use on our site…
Hi,
It’s not an icon set actually, I’ve got them from here: http://iconutopia.com/free-icon-design-guide/
ok thank you!
Hi, I purchased your theme nut I needed the wordpress theme and purchased the HTML version. Could I add the difference and purchase the wordpress theme? I haven’t done nothing with the HTML theme and not planning to.
Thank in advance, Semion.
Hi,
You can purchase the WordPress version and request a refund for your HTML version from https://themeforest.net/refund_requests/new . We’ll accept your refund request.
Thanks.
Hi, i bought this template but the animation is not working. could you please help?
the site is hosted at http://amanraikwar.in/ravendra/
Hi,
The animation is working fine for me. Have you fixed the problem?
Hi,
is it possible to expand the swiper to the page’s full width and to add a progress indicator? I would like to realize the following layout: https://www.dropbox.com/s/xgn539zmrfbn2ra/Screen%20Shot%202017-08-01%20at%2020.18.51.png?dl=0
Best regards, Michael
Hi,
Yes, you can expand the swiper to be full width by removing “offset-md-3 col-md-6” classes. Something like the following code:
<div class="swiper-container swiper-button-box">
<div class="swiper-wrapper">
<div class="swiper-slide"><img src="assets/img/bg-girl.jpg" alt="..." /></div>
<div class="swiper-slide"><img src="assets/img/bg-man.jpg" alt="..." /></div>
<div class="swiper-slide"><img src="assets/img/bg-cup.jpg" alt="..." /></div>
</div>
<div class="swiper-button-prev" />
<div class="swiper-button-next" />
<div class="swiper-pagination" />
</div>
Let us know if you need more help.
Hi, thanks for your fast reply! The locations of the swiper buttons and the progress indicator are okay now. But how can I reduce the width of the slider content to align with the content of the topbar? Maybe you could just correct the following code:
<section class="section" id="section-teaching">
<header class="section-header">
<h2>Teaching</h2>
<hr />
<p class="lead">Teaching abstract</p>
</header>
<div class="swiper-container swiper-button-box swiper-button-hidden1" data-space-between="20">
<div class="swiper-wrapper">
<div class="swiper-slide">
<!-- Modified slide-->
<div class="row">
<div class="col-12 col-md-6 text-center">
<img class="mr-40" src="assets/img/phone-2.png" alt="..." />
</div>
<div class="col-12 col-md-6 align-self-center pb-70">
<h3>More Than You Think</h3>
<p>Dramatically reintermediate effective applications after high-payoff core competencies. Authoritatively optimize collaborative benefits for error-free communities. Dramatically reintermediate effective applications after high-payoff core competencies. Authoritatively optimize collaborative benefits for error-free communities.</p>
<br /><br />
<div class="flexbox flex-grow-all gap-items-3">
<div>
<p><i class="fa fa-tv text-warning fs-30" /></p>
<h5>Productivity</h5>
<p>Appropriately communicate frictionless schemas rather than magnetic process improvements.</p>
</div>
<div>
<p><i class="fa fa-code text-danger fs-30" /></p>
<h5>Synchronize</h5>
<p>Appropriately communicate frictionless schemas rather than magnetic process improvements.</p>
</div>
</div>
</div>
</div>
<!-- End of modified slide-->
</div>
<div class="swiper-slide"><img src="assets/img/bg-man.jpg" alt="..." /></div>
<div class="swiper-slide"><img src="assets/img/bg-cup.jpg" alt="..." /></div>
</div>
<div class="swiper-button-prev" />
<div class="swiper-button-next" />
<div class="swiper-pagination" />
</div>
</section>
Best regards, Michael
Hi,
You should place your code inside .container, .row, and .col-* classes. Also, your code wasn’t HTML5, don’t close your divs with />. Here’s the working code:
<section class="section" id="section-teaching">
<header class="section-header">
<h2>Teaching</h2>
<hr />
<p class="lead">Teaching abstract</p>
</header>
<div class="container">
<div class="row">
<div class="col-12">
<div class="swiper-container swiper-button-box" data-space-between="20">
<div class="swiper-wrapper">
<div class="swiper-slide">
<!-- Modified slide-->
<div class="row">
<div class="col-12 col-md-6 text-center">
<img class="mr-40" src="assets/img/phone-2.png" alt="..." />
</div>
<div class="col-12 col-md-6 align-self-center pb-70">
<h3>More Than You Think</h3>
<p>Dramatically reintermediate effective applications after high-payoff core competencies. Authoritatively optimize collaborative benefits for error-free communities. Dramatically reintermediate effective applications after high-payoff core competencies. Authoritatively optimize collaborative benefits for error-free communities.</p>
<br /><br />
<div class="flexbox flex-grow-all gap-items-3">
<div>
<p><i class="fa fa-tv text-warning fs-30" /></p>
<h5>Productivity</h5>
<p>Appropriately communicate frictionless schemas rather than magnetic process improvements.</p>
</div>
<div>
<p><i class="fa fa-code text-danger fs-30" /></p>
<h5>Synchronize</h5>
<p>Appropriately communicate frictionless schemas rather than magnetic process improvements.</p>
</div>
</div>
</div>
</div>
<!-- End of modified slide-->
</div>
<div class="swiper-slide"><img src="assets/img/bg-man.jpg" alt="..." /></div>
<div class="swiper-slide"><img src="assets/img/bg-cup.jpg" alt="..." /></div>
</div>
<div class="swiper-button-prev" />
<div class="swiper-button-next" />
<div class="swiper-pagination" />
</div>
</div>
</div>
</div>
</section>
Hi,
thanks for your very helpful comments. However, now the swiper buttons are again indented. I want them to be the only element located at the outer edges of the page. Is this doable?
Best regards, Michael
Hi,
I’m not sure if I get you right, but the other variations of buttons are:
- Replace swiper-button-box with swiper-button-circular
- Remove swiper-button-box
Please check if you like any of these types.
Hi,
sorry for being not clear enough. I hope the following schematic image better conveys the layout I want to realize: https://www.dropbox.com/s/xgn539zmrfbn2ra/Screen%20Shot%202017-08-01%20at%2020.18.51.png?dl=0
Best regards, Michael
Hi,
I didn’t expect that we can accomplish this carousel without making changes in CSS or JS files, but it’s possible! Check this code: https://pastebin.com/5qs5xgMs
Cheers.
Hi,
great, thank you very much. That looks almost perfect now. I hope I do not seem too pedantic, but isn’t the swiper content still several pixels wider than the content of the topbar?
Furthermore, I tried to include in the swiper the following slide down/up effect: http://jsfiddle.net/amosrivera/AYWku/1/ For that purpose, I put the CSS under a <style> tag in the page’s <head> and the Javascript into your provided “script.js” file. Unfortunately, the slider vanishes as soon as the site is loaded. As you may have guessed, I’m a complete newbie to web design (I’m an astrophysicist by profession). Maybe you could give me some hints about how to solve this problem so that I’m able to figure out similar issues by myself in the future.
Thank you in advance for your help! Best regards, Michael
Hi,
To fix the sizing issue, add the following code to /assets/css/style.css file:
.swiper-container .container {
box-sizing: border-box;
}
For the second issue, use following JS code:
$('#myButton').on( 'click', function() {
if ( $('#content').is(':visible') ) {
$(this).html( 'Slide down ↓' );
}
else {
$(this).html( 'Slide up ↑' );
}
$('#content').slideToggle();
});
Good luck.
Hi,
thank you very much for solving the sizing issue. Looks perfect now!
Concerning the JS code: The slide button switches on click, yet no content appears 
Best regards, Michael
Hi,
Could you please bring it online to see your code? It works fine for me.
Hi,
you’re right. It is working everywhere else than inside the swiper. Maybe there is some sort of interference. Here is my swiper code (with the thing included):
<section class="section" id="section-teaching">
<div class="container-wide">
<header class="section-header">
<h2>Teaching</h2>
<br />
<p class="lead">Below you can swipe through the courses I have been teaching.</p>
</header>
<div class="swiper-container swiper-button-box" data-space-between="20">
<div class="swiper-wrapper">
<!-- First slide-->
<div class="swiper-slide">
<div class="container">
<div class="row">
<div class="col-12 col-md-4 text-center">
<img class="mr-40" src="assets/img/afm_icon.png" alt="..." width="320" />
</div>
<div class="col-12 col-md-8 align-self-center pb-70">
<small>Graduate course</small>
<h4>Astrophysical fluid mechanics</h4>
<p>Course description</p>
<!-- Not working part-->
<div id="content">
bla bla bla bla bla bla bla bla blabla bla blabla bla bla
</div>
<span id="myButton">Slide down ↓</span>
<!-- End of not working part-->
</div>
</div>
</div>
</div>
<!-- End of first slide-->
<!-- Second slide-->
<div class="swiper-slide">
<div class="container">
<img src="assets/img/bg-cup.jpg" alt="..." />
</div>
</div>
<!-- End of first slide-->
</div>
<div class="swiper-button-prev" />
<div class="swiper-button-next" />
<div class="swiper-pagination" />
</div>
</div>
</section>
I’ve appended the CSS
#content{
display:none;
}
#myButton{
color:#248;
padding:3px;
cursor:pointer;
}
to “style.css” and placed your JS code under a <script> tag at the bottom of the HTML file.
Hopefully you can find something.
Best regards, Michael
Hi,
It works fine here. Probably you have JS error in somewhere. Also, note that you have to paste the Javascript code inside script.js and bellow “Custom Javascript code” section, before “});”.
Hi,
I think I’ve found the reason why it wasn’t working: I had on my site two of those vertical sliders, one on each slide of the horizontal swiper. Should I use in this case different IDs or can I assign some sort of numeric index to the elements to make them unique?
Does the vertical slider also stops working for you if the right horizontal swiper button is pressed twice, i.e., if you return to the first slide.
By the way: I don’t use any other custom JS.
Best regards, Michael
Hi,
It’s hard to tell. If you provide online demo, it’s more convenient to inspect your page and find the problem.
If you have two slide-down components (i.e. #content element), you should use foreach in your JS code or give them different IDs (i.e. #content1 and #content2) and duplicate your JS code and modify it based on the html code change. It should be the problem I guess.
Regards.
Hi,
understood. I’ve put the site online now: http://www-astro.physik.tu-berlin.de/~schulreich/
Currently, the two implemented vertical sliders (“Details for summer term …”) doesn’t really work well with the horizontal swiper. It would be fantastic, if you could find the reason.
Best regards, Michael
Hi,
Maybe the problem is that Swiper create your content dynamically. Could you replace your JS code with following:
$(document).on( 'click', '#SliderButton1', function() {
if ( $('#SliderContent1').is(':visible') ) {
$(this).html( 'Details for summer term 2017 <i class="fa fa-chevron-down fs-9 pl-5" />' );
}
else {
$(this).html( 'Details for summer term 2017 <i class="fa fa-chevron-up fs-9 pl-5" />' );
}
$('#SliderContent1').slideToggle();
});
$(document).on( 'click', '#SliderButton2', function() {
if ( $('#SliderContent2').is(':visible') ) {
$(this).html( 'Details for summer term 2016 <i class="fa fa-chevron-down fs-9 pl-5" />' );
}
else {
$(this).html( 'Details for summer term 2016 <i class="fa fa-chevron-up fs-9 pl-5" />' );
}
$('#SliderContent2').slideToggle();
});
Seems this comment tool will change the code. Please copy the code from here: https://pastebin.com/WAJ3bfgP
Hi,
thanks for your effort. I’ve replaced the part in “script.js”, but now the second vertical slider does not display any content when clicked.
Try this one. It works for me: https://pastebin.com/Qksm39Fz
Hi,
thank you so much! Now it’s indeed working.
1) Is there an option for turning off autorun for the horizontal swiper?
2) When I open the second vertical slider “Details for summer term 2016” on my smartphone, the 4th column does not fit completely onto the screen; the word “Announcement” is cut off. Is there a way to correct this or are these simply too many columns?
3) Is there a way to specify which part of the (parallax-)header image is displayed when it is shrunk, e.g., to smartphone screen size? I want to keep the person always visible.
Hi,
You’re welcome.
1) Yes, add data-autoplay="0" to your .swiper-container element.
2) Maybe your best option is to change the flexbox from row to column in small screen devices. So, change:
class="flexbox flex-grow-all gap-items-3"
to:
class="flexbox flex-grow-all gap-items-3 flex-column flex-md-row"
Even, maybe remove gap-items-3 class to fix the spacing issue that you’ll see in small screens.
3) For this one, please send me an email using the contact form in my profile page. I should send you an updated file and instruction.
Hi,
1) I’ve added another vertical slider on the second swiper-slide (http://astro.physik.tu-berlin.de/~schulreich ; section: “Teaching”; slide: “Astrophysical seminar”). Owing to your advice, it displays correctly the content when clicked. When clicked another time, however, it hides the content but doesn’t switch to its original state (the arrow still points upwards). Could there be still some tiny error in “script.js”?
2) Could you give me an advice for how to reduce the whitespace between icon and text and thus to achieve aesthetic alignment in the grey box in the “Contact” section.
3) Can the map be prevented from being scrolled accidentally in desktop browsers (mobile already works fine)?
Best regards, Michael
Hi,
1) Change your JS code to this one: https://pastebin.com/E34UKR3A
2) Add a flex-grow class to div elements which has content.
3) Seems you found a fix.
Cheers.
Great, thank you very much for answering all my questions!
You’re welcome 
Hey there,
I purchased your theme yesterday and am just wondering why updating the css files don’t work?
I’m not overly familiar with sass or how that works but a .css.map file keeps being created and none of my css updates are taking effect on the local site. I just want to work by editing the css files and am not worried about sass, could you advise me as to the best way to do this?
Cheers.
Hi,
It would be great if you take a look at our articles: http://thethemeio.helpato.com/article/thesaas
For your purpose, you should start creating your website from “theme” folder, and for adding your css to template, write it inside /assets/css/style.css file.
Let us know if you need any further help.
The template is very nice but the overall readability is poor. Form inputs look like they are disabled because the default border color is too light for white backgrounds. If you check the template on large bright monitors you will notice these issues more. The pricing table has the same issue too and most components that have light gray border on white backgrounds. Text color needs a bit of tuning. I know it’s possible to customize these things, but it would be very cool if you improve readability in the next updates because it’s a great template.
Thanks for your feedback. I wrote your comment in our todo list and will work on them for the next release.
Is there a way to remove the SAAS branding on the main page? I appreciate the work but since it’s been paid for it looks unprofessional to co-brand.
It’s just there for a sample logo. Once you purchase, you can easily replace it with your own logo.
I did purchase – I can’t figure out how to remove it from the title bar. Or add more than two titles buttons. I’m doing all modification inside of elementor and it seems to have limited function.
So you’ve purchased the WordPress version. You should submit your comment here: https://themeforest.net/item/thesaas-responsive-saas-software-webapp-wordpress-theme/20136366/comments
Changing logo is placed inside customizer. You can upload your own logo in customizer. Please read this guide: http://thethemeio.helpato.com/article/thesaas-wp/customize
Regards adding buttons, you mean menu or buttons? You can add unlimited number of menu items, but your can only have 2 button. It’s worth to read this guide as well: http://thethemeio.helpato.com/article/thesaas-wp/page-builder
Hi, I have one more quick question.
For the newsletter block, I’d like to have people who subscribe to be added to my mailchimp list. I assumed there was a place where I enter my mailchimp key (or something) and then entries are put into mailchimp.
I see now that the sendmail.php only gives the option to send entries to another email (like how a contact form works). Is there any way I’m missing (or recommendation) for how to have subscriber information be entered to an email list service provider like mailchimp?
Nevermind! I see you have provide a video to set things up on the bottom of this page: http://thetheme.io/thesaas/block-subscribe.html
Great.
Hi there,
I have a question about the data-overlay class. I’m applying it as recommended in the instructions I believe… but the overlay is making everything within nested divs show up with the overlay over it as well. For example, it’s making the text/CTA button get darker, which makes it harder to read.
I’ve tried moving this to different parts of the code and can’t figure it out. Can you advise on how to make the overlay only apply to the background??
Here’s the code I’m using which you can see on line 140 here: http://imgur.com/a/LIRnA
The result: http://imgur.com/NAmPihR
Thank you very much for any help you can provide.
Hi,
I saw your code. You’ve added “style” and “data-overlay” attributes to .col-12 element, while you should add them to the <section> element.
Let us know if you need any further help.
Thank you for the quick reply… This didn’t really work because adding the “style=background-image…” to the <section> element breaks the layout.
The block I’m hoping to get overlays to work on are the Textual Feature Block, Feature 5 (http://thetheme.io/thesaas/block-feature-textual.html).
Here’s the updated code: http://imgur.com/a/fCLMG
Here’s the layout that is broken if I move the “style” element: http://imgur.com/a/EtkFG
What do you recommend to have the layout still work but with an overlay?
Oh, now I see what you want to do. For this purpose, you should add .bg-img to and wrap your content inside an element with position: relative. Here’s the code: http://imgur.com/a/io7fN
Hope it works.
Amazing! You are a god among mere mortals! Thank you! 
Hi,
I would like to upload this to wordpress and edit it via wysiwig as I don’t have html skills to edit the files. Would you please let me know how I can go about?
Thanks
Jerome
Hi,
You can purchase WordPress version here: https://themeforest.net/item/thesaas-responsive-saas-software-webapp-wordpress-theme/20136366
If you purchased the WordPress version, you can request a refund request for HTML version and we accept your request: https://themeforest.net/refund_requests/new
Cheers.
I would like a refund for this as I though I was getting the wordpress theme
You can request refund from https://themeforest.net/refund_requests/new
Also, WordPress version is available here: https://themeforest.net/item/thesaas-responsive-saas-software-webapp-wordpress-theme/20136366
Beautiful theme! Question for the Top-bar/sticky header at the top of the screen. How do I have the text show up as one color before the scroll and then switch colors after the scroll when the background shows up white.
or if easier…
How do I change the background of the sticky header from white to something else?
.body-scrolled .topbar.topbar-sticky {
background-color: red;
}
Hope it helps.
Hi There,
Firstly, thank you for the fantastic work you’ve done here… This theme is really well done and has saved my team a ton of work already!
I have a question. I want to have a top navigation with Signup/Login buttons and then a hamburger icon w/ side menu. You have done it exactly in your Gmail demo (http://thetheme.io/thesaas/demo-gmail.html).
However, when I open this demo-gmail.html file locally, it just has the buttons with no hamburger and side menu. Is there some code I’m missing?? Can you please let me know how to see the code like in the gmail demo? I’m not skilled enough to write this from scratch myself.
Thank you.
Hi,
I’m so happy to hear that TheSaaS could save your team few hours in development process.
Probably you’re using an old version of the template. Please download the latest version. You’ll see a .drawer-toggler button in topbar source code and a .drawer div at the end of file (after footer).
Hope it helps.
Excellent! Thank you!!
Followup question: What’s the right way to update my site? Do I need to move any files files from the source or assets folders over?
I just tried to open the demo-gmail.html within my older directory and it works fine! But maybe there’s other files that have been changed that I need to move as well??
Read this FAQ to learn about how you should update your template: http://thethemeio.helpato.com/faq/thesaas#faq-22
You mean you have .drawer and .drawer-toggler in the old demo-gmail.html? and you have them in your project but your can’t see the hamburger menu and the drawer?
Ah that FAQ answered it! Thanks again.
Can we update to wordpress one? I was looking for a wordpress theme but at the end I decided to get yoru theme because of it’s beauty. Now, you released wordpress version. It would be nice to upgrade to wordpress theme one.
Unfortunately, Themeforest doesn’t have any future to change or upgrade license between items. I’m afraid you should purchase a separate license for WordPress version, but it’s really a bargain right now for $29.
Ok, I got Wordpress theme too, I use html version for the main page and will use Wordpress one for blog only for now.
BTW, I haven’t seen you use any serial numbers on your products, keyzy.io makes it very easy for you, if you like to use it, just let me know, I can apply a good discount for you.
Thanks for your offer. There’s few templates that use serial number or purchase code to activate a theme. Right now, we don’t have any plan to add this restriction, maybe later.
I use bookmark links in the topbar but when I press these links on iOS safari phone, the menu bar doesn’t close. What should I do for it?
Could you please describe the problem more precisely? I can’t understand the problem. Would be great if you provide pictures as well.
Sorry, I didn’t give you enough details. I think I can share the address, www.keyzy.io you can look at it with a phone. I use bookmark links, the links with ”#” character to page’s parts. When I use the phone, the menu is opened, when I click a link, the background is gone there (the right place) but the menu is not closed.
Oh, I see. You should use data-scrollto attribute for scrolling to a section. Please read the documentation about “Scroll To” in this page: http://thetheme.io/thesaas/doc-component.html
As you can see in Helpato sample, side bar closes just fine: http://thetheme.io/thesaas/demo-helpato.html
Also, if you wish to remove the shadows from sections, you should remove class="thesaas-sections-split" from body tag.
Hope it helps.
Yeah, it solves the problem, thanks.
Hi. Recently i used this template. The form is not working. I am unable to send the mail.http://adtechbeta.net/brillion/
This is my website.Can you please help me.
Hi,
Have you set the receiver email address in /assets/php/sendmail.php ?
Read the second part of this article: http://thethemeio.helpato.com/article/thesaas/getting-started
yes. i changes mail ID and subject.But is is not working.
please see the form code below
<form action=”#” method=”POST”> <input class=”form-control” type=”text” placeholder=”Name”>
<input class="form-control" type="text" placeholder="Company name">
</form>
<input class=”form-control” type=”text” placeholder=”Work email”>
<input class=”form-control” type=”text” placeholder=”Phone number”>
<button class="btn demo btn-block" type="submit">Schedule Demo</button>
Please set an email from your server and try again, like info@adtechbeta.net .
Our sendmail.php uses internal PHP mail function which also uses the internal server settings for sending email. There’s chances that you’re server didn’t configured for sending emails or its IP address is blocked by gmail, hotmail, yahoo, etc.
I’ve just checked your code! It’s not right. Please take a look at page-contact.html source code. Each input has an ID attribute. The send button also has ID and there’s some alerts for feedback. It’s totally fine that your contact form doesn’t work.
as i see in the form, the form action is # . name attribute is also missing from every input field. I thought the from is submitting from any js coeds. So i viewed script.js also.But there is no any code for form or mail in script.js .From where you are receiving input field data from form and posting it to sendmail.php
Those codes are inside thesaas.js, line 514
I viewed thesaas.js code. There you are receiving the values with the help of ID’s like #contact-send ,#contact-name ,#contact-email .But in the form you didn’t given ID to any form fields. Can you please send proper form.
The JS code is also incorrect. You have designed form for NAME COMPANYNAME WORK MAIL AND PHONE NUMBER. But you are receiving data for contact-name contact-email and contact-message in js file.
You started creating your contact form from a wrong form. I guess you started from the form inside page-demo.html, you should have started from page-contact.html. Check the form code inside page-contact.html
I want page-demo.html form only. for this what i have to do
If you have added a form in any page then it should work. Why page-demo.html page form is not working.
This form doesn’t have server-side support right now. We leave it to application developers to handle it, like login and register forms. Since these kind of forms could have different inputs based on the application usage. We try to find a generic way to provide support for different kind of forms in the next version.
Meanwhile, you can create a mailsender file in your webapp to handle requests which send from this form.
so why you have added this form if it is not working. if i have to do these things from my side only so why should is purchased this template. Send me proper form code, and js code so that i can replace it. Its urgent
i am waiting for your reply
We’ll work on it and let you know when the update was available.
How much time it will take
Probably about 24 hours.
The update is ready. Email us to receive it: https://themeforest.net/user/thethemeio#contact
ok. i am sending an email. send there
i didn’t get any email yet.please send me asap. my website is live but form is not working
I’ve sent it to your account email ( ahmed_h*@hotmail.com ). Will send it to the mentioned one in the email as well.
i updated all the files that you have given. i changed receiver mail id (info@brilion.net) But still the form is not working. the live link is brilion.net I hosted it on AWS server
Please host your website in another PHP web host provider. AWS returns 403 Forbidden when the form sends data to sendmail.php. Or maybe you can get help from an expert to configure your EC2 to support PHP and set default SMTP for sending mail.
hello there
I accidentaly purchased your design (i didnt realize its HTML pages, I need wordpress theme)
I’d appreciate a refund….
Thanks anyway
Zohar
Hello,
Good news, WordPress version is available now. You can purchase it here: https://themeforest.net/item/thesaas-responsive-saas-software-webapp-wordpress-theme/20136366
You can ask refund for the HTML version and we accept it: https://themeforest.net/refund_requests/new
Cheers.
Hello Themeio team. I just used your product on my website.(bahdcasts.com ) I’m a backend developer who’s not good at design, so i bought your theme. I just wanna take this opportunity to say a big thank you for making my life so much easier. You guys are going a tremendously wonderful job, so please keep up the good work, do not relent, and as you keep helping people, you’ll become successful (
—Jack Ma). Thanks again.
Hello Jack,
It’s so pleasing to read such a nice words. Thank you so much. Your website seems very good, hope you make a lot of money from it. I saw you used animation in most sections and the animations cause displaying a scrollbar in some points. You can add .overflow-hidden class to your .section tags to fix this issue.
BTW, it would be so nice of you if you leave 5 star review for TheSaaS.
Thank you.