145 comments found.
Hi, very nice. Seems exactly what I need to create a pwa in a very short time. You say it is PWA ready, what do you mean please ? Thanks
Hello,
This template contains the essential meta-tags, and a manifest required for the PWA. The service-workers.js is not included by default. You can get the code here: https://googlechrome.github.io/samples/service-worker/basic/
Thank You
What’s version of F7 include?
Hello, It’s 1.6.4
Can update to 1.6.5?
Of course, it can be updated to 1.6.5. As there are no breaking changes, Nectar will be fully compatible with 1.6.5.
And in the next release of Nectar, will update Framework7 to 1.6.5
Thank You
Great!... Thanks for reply!
You’re welcome 
Hello. I see you provide a splash animation. Looking good so far. How can I use this splash if I want to build the app with Phone gap or Ionic? Is there any chance I can replace Phone gap splash with your animation? Or maybe do I need to have 2 splash screens? Let me know my friend.
Hello,
You cannot replace this splash screen with the native splash screen. If you want to use this animated splash screen in phonegap app then you will need to have 2 splash screens.
As far as I know, in android app, native splash screen in not mandatory. But in iOS it is mandatory, according to their app stores rules.
https://stackoverflow.com/questions/9832221/app-without-splash-screen-default-png-is-a-reject-reasonThank You
OK. This means the best part of your app, splash animation, cannot be used. Not good my friend.
I think it would be nice to let your clients know about this issue. What do you think?
purchased right now. Excited to use it.
Hello,
Thank You for purchasing Nectar. You will enjoy working on it. If you have any issues while using it, feel free to contact me. I will be glad to assist you.
Thank You! Have a great day!
Hello,
I want to develop a marketplace in PHP / MySql using this template and integrate into an android webview application, is this possible?
Can features be developed with PHP integrated into the layout?
Do I need knowledge of Cordova or Ionic in order to develop my application?
I await an answer to be able to make the purchase.
Hello,
1. You can develop the app using this template and wrap it inside Android webview.
2. I assume you are asking about mixing the server side (PHP) code with this template’s (HTML) code. If this is the case, then I recommend you not to mix server side and client side code. The best way is to create Web service (rest api) in php, and then consume the api via ajax using this template.
3. Unless you are using any native device features, you don’t need to have the knowledge of Cordova or ionic.
Hope it helps. If you have any further questions, feel free to ask me.
Thank You
Nice theme bro. wish to purchase. Before that let me ask you some questions, Is it possible to make splash screen like in template? if yes how to do
Hello, Of course you can make splash screen like this with your own text. If you want to learn how to create such animated SVG text, message me from my profile, so that I can show you how to do this stuff. Thank you
Good job! Congrats ..
How can I toggle div based on dropdown value. Simple java is not working …
var smth = $$(this).val(); if(smth == 1){ $$(#div).hide();
Some help ,please! i am new arround in framework field Thanks a lot!
Hello,
var smth = $$(this).val(); if(smth == 1){ $$(#div).hide();
In the above code, you did not put the css selector inside quotes. $$(’#div’).hide(); Please check if this is the issue.
If you are using <select> tag then you should write you toggling logic inside onChange event handler.
Example:
This is DIV.<select id=”dropdown”> <option value=”1”>Hide DIV</option> <option value=”2”>Show DIV</option> </select>
$$(’#dropdown’).on(‘change’, function(e) { var smth = $$(this).val(); if(smth == 1) { $$(’#div’).hide(); } else { $$(’#div’).show(); } });
Thank You
U did a really good job, i was waiting a theme like that, keep it updated and u will reach the top. I will definitely buy this theme for my next project.
Thank you very much 
Hello,
We have updated Nectar to Framework7 v7.1.5
Please check the demo at https://nectar.website/demo
Thank You
Well done!
Thank You 
Fantastic theme. I’ve done some $ajax script, how to get the loading icon appears while the ajax is working (waiting for results) ? I see it appears when I click in the left side menu items.
Hello,
By default, on every AJAX request the preloader is shown while request is being processed, and it hides after the request is completed. The code snippet present in init.js file does the job. Here is the snippet:
$$(document).on(‘ajaxStart’, function (e) { myApp.showIndicator(); });
$$(document).on(‘ajaxComplete’, function (e) { myApp.hideIndicator(); });
So, I assume, the code should work. But if it is not working, then in your $ajax request on .start and .success event add myApp.showIndicator(); and myApp.hideIndicator(); respectively.
Thank You, Have a great day 
Yes indeed it works. I got one more question. On the left panel, I have a “Logout” link. I’ve put a $(’.logout’).on(“click”, function (e) {} The click function works but when I try to load the login page with mainView.router.loadPage it doesn’t work.
Hello,
I tried to reproduce the problem using following code and it is working fine.
$(’.logout’).on(‘click’, function(e) { e.preventDefault(); myApp.confirm(‘Do you want to logout?’, function() { mainView.router.loadPage(‘login.html’); }); });
Please check if any error appears in the console.
If mainView.router.loadPage(‘login.html’); doesn’t work, try loading the page using mainView.router.load({url: ‘login.html’});
Thank You
Which tools and languages should I know to customise this template? I am a php developer.
Hello,
To customize this template, all you need is the basic knowledge of HTML, CSS, JavaScript and jQuery.
Thank You
Hi, I couldn’t find a file/image uploader. Is it not available?
Hello, The file/image upload input button is present in the template.
1. Goto Pages-> Careers->Apply Here, you will find a file upload button.
2. Goto Pages->Chat Here, you will find a image icon at the bottom bar. This is an image upload button.
Thank You
Also see their working implementation in pages.js file
Got it. Thanks 
You’re welcome 
I’ve just purchased your awesome theme. Is there a way to have a full screen image background for splash, logo & forgot password screen ?
Hello,
Thank you for purchasing the theme.
For full screen image background, you need to apply the following css on respective page.
Example:
.page[data-page=login] .page-content { background-image: url(‘https://source.unsplash.com/VxtWBOQjGdI'); background-position: center center; background-repeat: no-repeat; background-size: cover; }
Thank You
how to build apk ?
Hello,
If you are developing the app with some native features like push notifications, camera, or any other device features then there are two ways to build the apk.
1. Build apk on a local computer using Cordova tools. Here is the step by step tutorial: http://cordova.apache.org
2. Build apk remotely in the cloud. Here is the link: https://build.phonegap.com
If you are not using any native features and just want to wrap the code in a Web view then you can use https://gonative.io service.
The APK of Nectar is available for demo at https://gonative.io/share/deyono
Thank You
Your theme seems pretty cool, do you have something like a sticky menu at the bottom ? We need that for our app.
Hello!
Yes, sticky bottom menu is present in this template. We call it bottom toolbar. But it is not showcased in this template. You can easily add bottom toolbar as per your needs. Here is the link on how to add a bottom toolbar http://framework7.io/docs/toolbar.html
Thank You
Do you have a link so I can see it maybe ? Does it have icons etc ?
Go to this link http://framework7.io/docs/toolbar.html
There is an example of bottom toolbar. Of course, you can use icons. All you need to do is replace the text with icon (font awesome, material icons etc.)
is it easy to customizable the icons??I want to develop this template using vue js, it support for that??
Hello, The icons used in this template are in PNG format, so they are not customizable. These icons are also available for purchase in SVG format at https://icons8.com. You can then easily customize these SVG icons.
Of course, this template supports Vue.Js There is a good tutorial available on how to integrate Framework7 and Vue.Js Here is the link https://www.timo-ernst.net/blog/2016/11/13/how-to-get-started-with-framework7-vuejs-and-webpack
Thank You
Nice job. I think i can buy this theme for my cordova app. Did you test this template with phones? It looks great on pc.
Hello, Thank you for your interest in this template. This template is fully compatible with Cordova/Phonegap. You can test it on your mobile phone by navigating to this link. http://nectar.theprogrammers.website
Awesome job. Congratulations
Thank You 
Really nice work! Good Luck With Sales!
Thank You 
nice job on this fantastic work
all the best for your sales and a nice day 
Thank You 