56 comments found.
Hi there I bought your wonderful template bd0183cf-d817-4a29-91ae-5005ec0e5122 It seems to work fine online, but not locally. I know it sounds strange but I would need it to work on a windows operating system with a browser as well. thanks for your answer KR Olivier
Hi,
Sorry for the late response, but in order to work locally you will need to use a local server, like wamp. The template uses server side coding Ajax and Jquery and modern browsers are no longer supporting this without a server.
For some reason my preloaders are not loading prior to the index. The code is in the index as follows: <meta charset=”utf-8”> <meta name=”viewport” content=”width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui”> <meta name=”apple-mobile-web-app-capable” content=”yes”> <meta name=”apple-mobile-web-app-status-bar-style” content=”black”> <link rel=”apple-touch-icon” href=”images/apple-touch-icon.png” /> <link href=”images/apple-touch-startup-image-320×460.png” media=”(device-width: 320px)” rel=”apple-touch-startup-image”> <link href=”images/apple-touch-startup-image-640×920.png” media=”(device-width: 320px) and (-webkit-device-pixel-ratio: 2)” rel=”apple-touch-startup-image”>
Is there anything I need to do or is there something missing ?
how to use datepicker not working in form fields
?
Hi,
You want to use jquery datepicker? Or what library?
Just make sure to initialize the code for the page where the datepicker is, inside the my-app.js file, for that secondary page only. See examples in that file on how we are doing it for other scripts used for secondary pages.
Regards.
Hi,
That page and the datebpicker are included in the archive you downloaded. It’s a simple date type input make in that form, you can use it directly like it is in our files.
Regards.
Unfortunately, the file I downloaded is missing, can you update the files?
Sorry, I thought you are asking about Blix template, but it seems that you bought Lithium one.
Just add this in your html code in the form page:
<input type="text" name="date" value="" class="form_input" id="calendar-input">
And in my-app.js file add this on your form init section:
myApp.onPageInit('form', function (page) {
var calendarDefault = myApp.calendar({
input: '#calendar-input',
});
})
Regards.
unfortunately i tried the codes you gave but it didn’t work
Do you have an online demo I can see, I can guide you live on why is not working there.
Thanks.
Hi, in a form <select> has not show the options when click in a mobile view
Hi,
Are you using the one from our custom inputs page? It should work it’s a simple html select. What mobile type it is?
Regards.
Huawei P9 plus, Chrome and Opera, i use this URL in my phone http://sindevo.com/lithium/#!/form.html. Then replace the Framework7 1.4 for framework7-1.5.4, works but with bugs.
I replaced in my localhost project
Hi,
Send me an email using the contact form on our profile page sidebar, and I will send you some custom Select options fields, like this ones used on this page
http://sindevo.com/blix/blix-main/index.html#!/form.htmlAnd you can use one of those 3, the ones that will work best.
I think the bug is in the framework7 script, making the select non selectable on some mobiles.
Regards.
Hi, I want to insert google maps, but don’t work using the script, this looks like this
<script type=”text/javascript” src=”js/my-app.js”></script> <script src=”https://maps.googleapis.com/maps/api/js?key…
thanks
Hi,
Use the example we have in contact.html where there is a map that works.
If you want to add it dinamically make sure you add the code in my-app.js and only for the page you want to show it. Use the examples inside my-app.js to see how we added custom JS functions just for some pages only.
Regards.
thanks
Hi, a have this error: my-app.js:24 Uncaught ReferenceError: circlemenu is not defined at HTMLDocument.<anonymous> (my-app.js:24) at c (jquery-1.10.1.min.js:4) at Object.fireWith [as resolveWith] (jquery-1.10.1.min.js:4) at Function.ready (jquery-1.10.1.min.js:4) at HTMLDocument.q (jquery-1.10.1.min.js:4.
And i want to add javascript code in pages like “about” and don’t work, please give me a solution.
Hi,
Are you testing the template files on a server? On localhost you might get some errors, since the files and pages ases Ajax and jQuery wich no longer is suported on a local browser, so it need to stay on a web server.
To add a JS code just on one page, use the model we have in my-app.js file.
So for example to load just on the about page:
myApp.onPageInit('about', function (page) {
......your code here.......
})
Also make sure in the HTML code of ther page you have the data-page value set to “about”
div data-page="about" class="page no-toolbar no-navbar"
Regards.
May I have a complete guideline about how to add the features? i. Any video tutorial about how it works. 2. How to connect to database or if it is integrated here. ( I am a newbie)
Hi,
You have a HELP file included in the main archive. Includes the basic structure of the HTML and CSS files.
This item is an HTML/CSS mobile template using the Framework7 JS as main core framework. So you need to know how to edit HTML/CSS templates in order to edit the pages.
There is no database connection. In order to add that you will need to add some backend programming and a database.
Regards.
Hi. I order this perfect template.
Is included when loading the page loading icon?
when the pages are loading its very slow, I should include a loading image.
(sorry i speak litlle english)
Best regards: Zsolt
Hi,
Open my-app.js and add this 2 lines anywhere there:
$$(document).on('ajaxStart',function(e){myApp.showIndicator();});
$$(document).on('ajaxComplete',function(){myApp.hideIndicator();});
This will add a preloader to the template pages.
Regards.
Hai, I love your work.. I want to remove limit in Blog section.. at present it is showing only four post.. with load more button.. I do not want to Load More option, I want to load all the post
Hi,
Replied also to your email.
Just remove the code from my-app.js:
myApp.onPageInit('blog', function (page) {
$(".posts li").hide();
size_li = $(".posts li").size();
x=4;
$('.posts li:lt('+x+')').show();
$('#loadMore').click(function () {
x= (x+1 <= size_li) ? x+1 : size_li;
$('.posts li:lt('+x+')').show();
if(x == size_li){
$('#loadMore').hide();
$('#showLess').show();
}
});
})
Hello Sir,
I want to remove .html extension on pages, is it possible to remove the html extension through back end or any used scripts?
I gues to remove that you will need to use an httacces. Otherwise as it is the template cannot work without that, since the pages are html
How can i use this bar code for our website after customization?
I have purchased Lithium Mobile Template and i want to vustoimize for my website but i stuck somewhere because in this theme some inner pages are not working. So Can u please help me?
Hi,
Allways test your pages on a server. Inner pages are loaded with Ajax and jquery, so they need a server to work.
Also try to see my-app.js file and how each page load his custom JS functions there.
Regards.
I want to link other site page and facebook link on home icon.
How can I link it.
I found class=external
Hi,
Yes to link to an external link you need to use class=external to the link.
Regards.
How to implement recaptcha for Contact Form?
Any update for me?
Hi, I just purchased the template and trying to implement it in ASP.net with MVC. What i am trying to do is keeping the bottom toolbar and up navbar fixed and changing just the content as page. But when I do this, it still animate the navbar while new page loading. Is there a way to do what i want?
Hi,
That’s simple to do.
On all secondary pages on top you have this DIV with this classes:
For example about page:
div data-page="about" class="page no-toolbar no-navbar"
Just remove the “no-toolbar” and “no-navbar”.
And when you will enter about page the toolbar will be there.
The only issue is that on navbar we have a custom one on secondary pages. You will need to delete it
div class="navbarpages"....
And just use the one on home page.
Regards.
Hi
Nice theme, I like it. I need your help.
1- Can I add a sub menu in left navigation bar. 2- Is there a provision for top left “back” button 3- can we shift top right menu icon to top left
Thanks
Hi,
Yes I can provide a demo file to you with a submenu and the right menu icon shifed to left.
Regards.
Hi,
To add another page into the template just create a page using the same HTML structure all secondary pages have. And name it simple page.html. Then from the html simple link to page.html
To link to an external page just add class=”external” to the link that point to this external page. This is for external pages link a different website url.
Regards.
Hi,
To add another page into the template just create a page using the same HTML structure all secondary pages have. And name it simple page.html. Then from the html simple link to page.html
To link to an external page just add class=”external” to the link that point to this external page. This is for external pages link a different website url.
Regards.
I can’t make link from home page with other page not included in your template, and I see #! with all pages in your template. How I can add other pages for your template?
Hi,
To add another page into the template just create a page using the same HTML structure all secondary pages have. And name it simple page.html. Then from the html simple link to page.html
To link to an external page just add class=”external” to the link that point to this external page. This is for external pages link a different website url.
Regards.
Hello, dear sindevo! Immediately sorry for my English, it’s the G-Translator :))
Bought your template, great work! But there’s a problem, now I will explain what. It was supposed to use a template with GetSimple CMS (CMS without databases, uses HTML templates (HTML, CSS, JS)). But the index page in template for GetSimple CMS – template.php. All theme files (recycled template files) are contact files.php, about.php. etc. In GetSimple CMS they are not located in the site root. They are located in the folder: mysite.ru\theme\my-theme\. In that folder are folders containing css and js files.When I embed html in the template.php, graphics is displayed correctly, but transitions between pages (js), the sidebar (js) – is not working. Prompt how it is possible to integrate your template taking into account features of GetSimple CMS. The template was planned to be used for the mobile version of the site
Hi,
I am afraid we cannot help you with this, because we don’t know GetSimple CMS. We never used that CMS and cannot tell how it works. You will have to ask for support ar someone that knows GetSimple CMS
Our support is related to things that are inside the template as it is.
A small tip I can give, is that the template uses Ajax for page transition, and you must test it on a server. Don’t know if GetSimple CMS works on a server, but you need one to test the template.
Regards.
Good afternoon, synevo! I just need support related to the things that are inside the template:). How does the GetSimple CMS, I know. I tested the template on the local server (OpenServer), the template works. My problem is the way to the pages. JS files contain, for example, index.html, my index page is template.php. Contacts page in the template-contacts.html, I have-contacts.php. And these pages are not in the root of the site (they are in the /Themes folder). I also need to disable loading of content into the
<div class="view view-main" />block in js (this content will be loaded via files .inc (include) through the GetSimple CMS). I need advice in such matters. Will you be able to help me and can I contact the email that is listed above in the comments?
Hi,
First if you say you know GetSimple CMS, make sure it works integrated with templates that use “framework7” script as main page transitions. If the CMS works with that then you can integrate it, if not it meant the template will not work as it is integrated into the CMS.
You cannot change the structure of the template pages without modifications on the code that creates the transition of the page which is framework7.js
If you want to disable the content loaded into div class=”view view-main” you need to totally remove framework7 from the template, and built it as simple HTML template without Ajax. This means you willl have to manually edit all the HTML pages, adding all the header html content into all secondary page. This will work like you want.
Hope it helps.
Regards.
Thank you, sindevo! Areas of work I understand about. If I need a small advice on the inner workings of your template, I will be able to contact you?
Hi,
Yes you can contact us using the contact form on our profile page sidebar.
Regards.