450 comments found.
Hi ace, i was also looking for the blog layout like a lot of people here. As i have github access i was checking there and found the sample 20. Is that the one or is there any other? Thanks!
Hi there
Do you guys have access to pages frontend repository ?
Yes I have, only dont know if the sample 20 lks the one for blog, or there.are other. Thanks!
Looking at the users from Pages Frontend. We have made a new product that is soon to be released. It will help anyone build a website/blog in real-time. This is why Pages frontend is not updated lately.
Hi ace. Yes as you say it doesn’t seem to be very complete. Is there any other blog layout included (maybe in github) that i can use? Thanks!
Hi ace, sorry to reask, was there any update on the blog layout? I think it’s missing a blog detail and also maybe some kind of pagination or filter? Thanks for your hard work!
Hi Ace, sorry asking again, but was there any improvmenet on blog theme?
Hi there
Yes Im updating to Bootstrap 4 and blog layout
started work on it
any plan for bootstrap 4 ? it is a critical for using the template in a new project Thanks
Hi there
Yes, first we are updating Pages Admin 
having trouble setting up mail gun with contact page. Have followed the steps in mail.php and it’s still not working.
Hi there
Mail Gun settings should be added to _lib/mail.php. Note that you should follow the mail gun guide to get the correct settings and ports. If your using something like google cloud. They usually block the mail port so you have to use an alternative port 
The document at http://pages.revox.io/frontend/1.0/doc/#tabs suggests code for making tabs work, but I’ve yet to get these to work, the tabs never work, all content is displayed at the same time.
How can I make tabs work with the Multi-Purpose template?
Hi there
Sorry, we missed this comment. You can get it to work by having jquery and bootstrap js included in your script tag list.
Does this template have a carousel slider? Looking for an example of slider for html blocks.
Missing Images. When I do a check of all the componenets there are a few missing css images. 1: In the plugins/swiper/css/swiper.css file it is missing data:images data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D’http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg’%20viewBox%3D’0%200%2027%2044’%3E%3Cpath%20d%3D’M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z’%20fill%3D’%23ffffff’%2F%3E%3C%2Fsvg%3E
2: From the pages/css/pages.css file is missing pages/img/icons/noti-cross.png No such folder or image exists.
Please advise how to fix these two issues.
Thanks
When my pages load I get a flash of a pale blue background before the ain hero image appears.
See http://australianguitarinstitute.com.au/index
Is there something I’ve done wrong?
Thanks
2aad9e90-22ac-4bb2-8f0d-9000d88b1117 – 22 Nov 2017 REGULAR LICENSE
Hi there
That is because slider div is set to bg-complete which is a blue color. I’m assuming you want something black? In your slider div inside it, you will find another child div “swiper-slide ” it has the class “bg-complete” remove it or add bg-master
Actually I don’t want any colour to show, I just want the image to show.
I tried it without the slider (as per sample #10) a little better but I’m still getting a flash of black and grey before the image appears.
More info: doesn’t do it in Chrome, does it a little bit in MS, but is really noticable in Firefox Quantum.
Hi there
This is because we are using the slider. Let’s use a simple background image or image tag. I will alter the code and send you. Is it possible to send an email to support@revox.io
Hello,
First of all, this is a great product. Thank you for bringing it.
I would like to ask you, if it is possible to combine font-page and admin-page themes together. I would like to purchase both. But I have doubt about their js, css files. If some files overlaps or total size would increase? Is there a way?
Hi there
Sorry we missed this now. And this is not possible now 
Hi Just bought the theme. How do I set the slider to move to the next image automatically? without having to swipe left or right. This is the particular design I am talking about. http://pages.revox.io/frontend/1.1.0/html/11/
Thanks!
Go to your 11 sample assets/js/custom.js
You will find the slider code and attributes add this extra attribute
autoplay: 5000,
something like this
var slider = new Swiper('#demo-hero-1 .swiper-container', {
pagination: '.swiper-pagination',
paginationClickable: true,
nextButton: '.swiper-button-next',
prevButton: '.swiper-button-prev',
parallax: true,
autoplay: 5000,
speed: 1000
});
Hi,
I noticed a lot of people asked for a blog layout. If it’s been done, how do I get a copy of it?
Thanks
Hi there
What is your github username ? 
MarkG33
Hope you got the invite 
No nothing yet.
Still never got anything.
Hope you got it
sent it via email on Sunday
Nope. Where did you send it?
hi Ace
I am using the wizard like in the demo form_wizard.html
I need to show a modal fade fill-in on submit
How can i remove the default circularProgress and use my modal for this purpose?
Hi there
Sorry about the late reply, I do not understand what you meant by “How can i remove the default circularProgress and use my modal for this purpose?” If you can elaborate further I can help you out
hi Ace
I have a wizard that is functional. There is step1 step2… summary tabs (based on the example in form_wizard.html). In summary tab, I have a submit button. On clicking Submit, I make an ajax call to a backend REST API. All this works perfectly fine
Now, the server sometimes takes 1-2 minutes to process the request and respond to the API. At this time, user should not feel like the screen is frozen. So I have added a modal (based on the ‘FILL IN MODAL’ example in modals.html)
Now in the JS in the submitHandler section, when i try to show the modal and after the ajax i try to hide the modal – it doesnt work.
Now I see this line:
$(‘[data-pages-progress=”circle”]’).circularProgress();
So I assume that is what is showing the circular progress on the right top of the wizard
How can i remove the default circularProgress and use my modal for this purpose?
Eagerly awaiting your response
Hi there
I understand now 
Yes well, I would suggest you to use Pages Cards. In your Wizard, wrap the entire wizard with the div
<div class="card" id="wizard-wrapper"> .. Wizard inside this </div>
Then in your JS
var card = $('#myCard');
cardcard({
onRefresh: function() {
}
});
Next in your AJAX submit
card.card({
refresh: true
});
And after success
card.card({
refresh: false
});
http://pages.revox.io/dashboard/latest/doc/partials/cards.html
hi Ace
I am on Pages v 2.1.4
How do I make cards work in this ver? Or alternatively what can you suggest for my Pages ver. I am unable to upgrade Pages version at this time
/rohit
Hi there
Use instead of the class name
<div class="panel" id="wizard-wrapper"> </div>
JS code is the same 
hi Ace,
i get error “Uncaught TypeError: $(...).card is not a function”
Changed card to panel in JS also, similar error i get error “Uncaught TypeError: $(...).panel is not a function”
Am I missing an import?
Can you point me to a sample implementation?
/rohit
Hi there
http://pages.revox.io/dashboard/2.2.0/doc/partials/portlets.htmlIf you get an error for panels, make sure you have included pages.js in your HTML file
hi Ace
Still doesnt work with portlets also
Just to remind you on this conversation:
I have a wizard that is functional. There is step1 step2… summary tabs (based on the example in form_wizard.html). In summary tab, I have a submit button. On clicking Submit, I make an ajax call to a backend REST API. All this works perfectly fine
Now, the server sometimes takes 1-2 minutes to process the request and respond to the API. At this time, user should not feel like the screen is frozen. So I have added the portlet code as seen in poortlets.html link above
Here is my code:
<div class="panel panel-default" id="auditPortlet">
<div class="panel-body bg-master-lightest">
<div class="row">
<div id="rootwizard">
<!-- my code here -->
</div>
</div>
</div>
</div>
My JS code is identical to what you have in portlets.js in the demo I download
I put in the refresh like you have mentioned above before the ajax and after success
But it does not work – any thoughts? Please help
/rohit
hi Ace
any help on this?!
much appreciated
Hi there Sorry I have been trying in Pages Admin, Let me try on Pages frontend
hi Ace, I am on Pages Admin, not frontend
Hi there
You have missed a small part
http://pages.revox.io/dashboard/2.2.0/doc/partials/portlets.htmlI tested it continuously and it worked fine. Please follow the doc 
It says ” $(’#myPortlet’).portlet(options)” not panels
That is why you get a JS error
hi Ace
Still doesnt work with portlets also
Here is my code:
<div class="panel panel-default" id="auditPortlet">
<div class="panel-body bg-master-lightest">
<div class="row">
<div id="rootwizard">
<!-- my code here -->
</div>
</div>
</div>
</div>
My JS code is identical to what you have in portlets.js in the demo I download
I put in the refresh like you have mentioned above before the ajax and after success
But it does not work – any thoughts? Please help
Ace – if you would think this is simpler to do a screen-share / call, we can get onto join.me or teamviewer and I can show you my code. Let me know please
hi Ace
Please help, am struggling to get Pages Wizard work with “inprogress” indication from almost 20 days!
really appreciate your quick help
Hi there
Sorry, we were offline during the weekend. Lets get this sorted. First I need your HTML code and JS code. Is that possible to get. You can drop an email to support@revox.io
What will be the total downlaod size in the browser.. as i am looking for a very light weight html templete.
Can I have the SASS files?
Additionally, is the SASS files found in Pages Admin compatible with the Pages FrontEnd?
Can I have the SASS files?
Additionally, is the SASS files found in Pages Admin compatible with the Pages FrontEnd?
Hi there
Just the core components
but not the layout.scss file. Yes its possible to merge
I going out hope just bought shopkeeper, and try and read all, to try make the letters getting out of my pages and still all there! Call hostgator they don’t know also, please someone can help me!?
Hi there
What is the product you purchased ? We sell “Pages – Multi-Purpose HTML5 Website Template” not Shopkeeper 
I bought shopkeeper from envato, I’m a beginner, I have been fallowing https://www.youtube.com/watch?v=Nl1wXkesCXE&t=6904s and in the page home is full of letters! Please someone help me?
Hi again, you got the wrong author, We only sell Pages Multi Purpose HTML template
Hi guys is there any scheduled update in near future
Hi there
Yes two big updates are coming and we are working hard to get it out 
This is one of my all time favorite template! Does this template have a 404 block by chance?
Hey, I would like to buy this great theme as extension for pages admin dashboard. Is there any plans to update it to bootstrap 4? It would be great!
Hi there
Planning to update after February 
Hey, could you please add me to the github repo? Username: kevcodez
Done 
Done 
Thanks 