145 comments found.
thank you very much, it’s Great theme.
we have publish our website but we still have some problems with appearance in Google search engine, is there any guidelines to apply SEO to this theme?
also could you send instructions and code for integrating Google Analytics to this mail: (muath@ters.sa) please.
thank you very much.
how can we use wordpress as backend with Nectar as frontend?
Hello,
You can integrate your WordPress backend with Nectar using WordPress REST API.
Please check this link: https://developer.wordpress.org/rest-api
Thank You
Nectar is compatiblr with lates version of Framework7 ?
Hello,
Nectar is compatible with Framework7 v1 only.
Hi we have 8000 Educational videos in 150 playlist.
Can you please add filtering page(topics,tags,courses,teachers,...)
And also a nice ui for play a video and see other videos in playlist,comments and some attachment to that video like a PDF file.
Hi, great theme!! I need some help please. I would like to change default theme colo when init application.¿Where can i do the change?I have created new theme on pages.css. Thank you folks!!
Hello Bro
Is there’s a way to fix the scrolling on the Android webview? because Its slow and I can scroll down on the webview but it will not scroll up? how to fix this?
But the scrolling is working great on the IOS webview.
Best Regards,
I was able to fix it by disabling the swiperefresh layout on Android.
I have this error on the console:
[Intervention] Ignored attempt to cancel a touchend event with cancelable=false, for example because scrolling is in progress and cannot be interrupted.
how to fix this error?
Best Regards,
Hello,
Please have a look at this: https://forums.adobe.com/thread/2358290
Hello
I fixed the issue of the web view but how to fix this error on the chrome console?
The link you provided has nothing to do with this error?
[Intervention] Ignored attempt to cancel a touchend event with cancelable=false, for example because scrolling is in progress and cannot be interrupted.
how to fix this error?
Hello, Could to please help me reproduce this issue?
Hello bro
The issue is when you scroll down on the any page content that is showing a list
Best Regards
I want to be able to show a you tube clip, text and images and adsense on one html page which is the best page for that. I ask thins cause the page element on most pages prevents adsense from showing!
how can I load a page in a new window using the mainView.router.load({ url: ‘home.html’
I tried adding the ‘_blank’ but it does not work at all.
Hello,
Could you please share your email address? So that I can send you the solutions.
Thank You
Ok I figured that out, how can I change the splash logo to my own?
I think I have that sorted out, it is an animated SVG….mmmm any good online generators that you know of?
Yes, you are absolutely correct. It is an SVG animated using JavaScript. If you want to create such a logo then follow this guide I have wriiten: https://www.dropbox.com/s/0ek8w0zzuu3gk2a/svg.txt?dl=0
Thank you!
I would simply just like to use the splash page and then load say the recipes page and that is all how would I do this?
Hello,
Please follow these steps:
1. Open assets/custom/js/pages.js
2. Go to the section ‘Splash Screen’
3. Inside that page init event handler: ReplacemainView.router.load({
url: 'walkthrough.html'
});
With
mainView.router.load({
url: 'recipe.html'
});
Thank You
Thank you worked well 
You’re welcome 
Hi, this is a great template and enjoy developing with it. I’m just wondering, how do i call a specific page/route from the url base. assume i want to send my users to a specific article on the website
I understand this http://framework7.io/docs/routes.html is only possible for v2, how easy might it be for me to migrate to v2 with nectar https://blog.framework7.io/migration-to-framework7-v2-eb6dc38ede3b because of the routes issue
Hi, do you have training how to connect a website? I have a website on the Wordpress and I can connect woocommerce it will it work? Maybe you have video training?
Hello,
Nectar does not provide out-of-the-box integration for WordPress.
However, you can integrate your WordPress/WooCommerce website with Nectar using REST API.
Here is list of resources you will need:
WordPress REST API: https://developer.wordpress.org/rest-api WooCommerce REST API: http://woocommerce.github.io/woocommerce-rest-api-docs Backbone JavaScript Client: https://developer.wordpress.org/rest-api/using-the-rest-api/backbone-javascript-client Thank You
Hey, can you tell me the file location where the links to the icons in the menu are stored please? Thank you very much!
Hello,
The markup for Side Panel (Menu) is present inside index.html file. All the links to the menu icons are written there. And the icons are located in assets/custom/img folder.
Thank You
Hello again
i activated “pushState: true,” but when i access a link (https://marazul.app/#!/produto/1633 ) it returns to “home.php”
Hello this is a pre-buy question, i like this template 1. Can this template be install and run has a native app will ? 2. Can you help customize it, set it up with database connect 3. Can it run off line (when no internet on mobile device)
Hello,
1. Yes, you can convert this template into a native app using Cordova/PhoneGap, which can be uploaded to Google’s Play Store and Apple’s App Store.
2. If you face any issues while customization related to this template, I will surely help you out. For server/database connectivity, this template uses AJAX. So, you should have your database and server APIs ready, then I can help you with the AJAX connectivity.
3. Of course, you can run it offline by setting up service worker, as this template is PWA ready.
Thank You
i am already have blog with wordPress and woocommerce. Your Nectar app have possible to get post and product date using with REST API?
Hello,
Yes, you can integrate your WordPress/WooCommerce website with Nectar using REST API.
Here is list of resources you will need:
WordPress REST API: https://developer.wordpress.org/rest-api WooCommerce REST API: http://woocommerce.github.io/woocommerce-rest-api-docs Backbone JavaScript Client: https://developer.wordpress.org/rest-api/using-the-rest-api/backbone-javascript-client
Thank You
it have service worker? It mean automatic home screen add feature.for PWA site
Yes, it includes the manifest.json file for ‘Add to Homescreen’ feature.
I am already purchased this product. And also give support request also. But how to contact you. Kindly reply or give mai id
For support, mail me at praveen.mujawdiya@gmail.com
How can i use google analytics on pages?
Hello,
Could you please give me your email address? So that I can send you the instructions and code for integrating Google Anaytics.
Thank You
Hi,
I have sent the mail. Please check.
Thank You
is there a way to prevent the app from closing when the cellphones back button is clicked on android? Not all users want to only use the apps top navigation
Nevermind, i saw your response to a previous comment. Awesome template!
Hello Bro
This is the best framework7 template so far and great work good job!
Just wondering if I buy it will be easy to convert this template into a wordpress theme?
Any upcoming updates for it?
Best Regards
Great template! I’m just wondering, how do i pass values through the query string?
Hello,
There are two ways for passing values through query string:
1. Using element<a href="page.html?id=1&name=John">Link</a>2. Using JavaScript
mainView.router.load({
url: 'page.html',
query: {
id: 1,
name: 'John'
}
});
Now to access these values:
myApp.onPageInit('PAGE_NAME', function(page) {
console.log(page.query.id);
console.log(page.query.name);
}
By when do we expect the updated version to the latest framework7, working on a new project and there are major changes in the old currently used version vs the current framework7 version. Dont wish to be recoding if an update is around the corner.
Hello,
I’m currently working on adding few important features in Nectar using Framework7 v1.
I also have plans for Framework7 v2 based release. But it will take some time.
Therefore, you can continue your new project with v1. I will provide continuous support for this version.
Thank You
Great, Thanks for your reply, Any plans on having the stepper component for numeric fields ?
I have added the stepper component, and it will be available in the next release.
Could you please give me your email address, so that I can send you the files and instructions for adding stepper in the current version of Nectar?
sure, you can send to nash81@gmail.com
Hi,
I have sent the mail. Please check
Thank You