3890 comments found.
I`m trying to set up the notifications, but i get the same default notification topbar and no circle.
And the notification bar is visible all the time until i close it. It should close in two secounds automatilcy.
What did i wrong with this little js snippet ?
<script>
$(document).ready(function() {
// Apply the plugin to the body
$('body').pgNotification({
timeout: 1000,
style: circle
}).show();
});
</script>
Hi,
style option accepts string values. So it should be 'circle' (enclosed within quotes).
Here’s the code we have used to show the circle notification, just for your reference 
$('body').pgNotification({
style: 'circle',
title: 'John Doe',
message: message,
position: position,
timeout: 0,
type: type,
thumbnail: '<img width="40" height="40" style="display: inline-block;" src="assets/img/profiles/avatar2x.jpg" data-src="assets/img/profiles/avatar.jpg" data-src-retina="assets/img/profiles/avatar2x.jpg" alt="" />'
}).show();
thank you
Hi great work! Is this in angular.js?
Hi there
Not for now, will be adding it in v1.2 
Some Predicting New Version ?
Hi there
We have a list over here 
To get access to github please send your purchase code to support@revox.io with your github username 
Loving this theme, getting closer and closer to launching with it. Monserrat seems to be linked via http://. This is causing issues on my https version. How would you recommend I fix that? Do you plan on fixing this in the update?
Seems I spoke too soon, Montserrat is working for me, but i am getting these errors ” Mixed Content: The page at ‘private’ was loaded over HTTPS, but requested an insecure font ‘http://fonts.gstatic.com/s/montserrat/v5/zhcz-_WihjSQC0oHJ9TCYAzyDMXhdD8sAj6OAJTFsBI.woff2'. This request has been blocked; the content must be served over HTTPS.”
Hi there
I’m sorry about the confusion here, yes you have to replace “http:// to ”
are you using LESS or CSS ? I will give you a quick fix for it. Can you drop an email to support@revox.io will send you the changed CSS/LESS files
Hi Ace, it’s a wonderful template you have created. I would like to buy it. But first i want to know, if there is an navigation on the top of the header.
Greats comprano
Hi there
Thank you!
for now we have something like this
Will be adding the horizontal menu in the next update 
Hi Ace, please add me to your private Github repo – my username is etinif
Thanks!
Got it
Sent you an invite
Hello Ace, can you please add me to GitHub. My username is brownstone academy. Thanks!
Hi there
Will need your purchase code
can you drop it to support@revox.io
Just sent! Thank you!
Sent you an invite 
Hey,
If i want to append dynamic data to the isotope, how would i do it?
I’ve seen the isotopes methods, that i have to do something like this: $day.isotope().append( data )
But it’s not working.. I was then trying to make something like this: I dont know if i have misunderstood something?
$.post('page.php', function(data) {
var $social = $(this);
$social.data('pg.social').isotope().append( data )
});
You can try this code to append a new element:
var newItem = '<div class="item share share-self col1" data-social="item"> ...</div>';
var allItems = $(newItem).appendTo('[data-pages="social"]');
$('[data-pages="social"]').data('pg.social').$day.isotope('appended', allItems );
It docent append the data to , but else it’s fetching the data and append it on the screen, but not in the right element..
Do you mind inviting me to the github? Name: GunslerRage
Then i won’t spam the comments section 
“It docent append the data to:”
<div class="day" data-social="day" />
I dont know why it didn’t complete the comment 
Sorry, it should be:
var newItem = '<div class="item share share-self col1" data-social="item"> ...</div>';
var allItems = $(newItem).appendTo('[data-social="day"]');
$('[data-pages="social"]').data('pg.social').$day.isotope('appended', allItems );
In order to add you to our github repo, please send a mail with your purchase code to support@revox.io 
^ Replace [data-pages="social"] with [data-social="day"]
Thank you so much, for the support! Email have been sent,
Have a nice day!
Sent you an email 
How did you the little gif animations in the previews ? Is this made with photoshop -> gif or is this done in after affects ?
Could you send me some of the .ae files so i can see how you did this animations ? 
My email is info@hostianer.de
Yes.The animations were done using after effects and converted to gif from photoshop.
These were made by our in-house advertising team and cannot be disclosed to anyone by any chance. Hope you’d understand. 
Hello Sir, First of all what a wonderful template! I am a web developer and my client has purchased from you. His username is @hazelwoodm
Problem: However I am facing problem with ioslist when adding/remove users in list dynamically using web sockets. I did as much research on my own as possible and I found a “refreshElement” function (on github from some conrtibutor, not a part of origional js) can be added but since you have modified original variable references I find myself unable to do it.
I hope you understand that “chat list” has to be dynamic for a website intending to use it for very same purpose.
I can send you link to my project just tell me how to get in touch with you.
Hi there
Thank you! 
The List is powered by the following plugin
https://github.com/brianhadaway/iOSListI understand what you are talking about, Yes the plugin is very basic and does not have an option do add and remove dynamically,
Are you using something like socket.io ?
I should ask you how is your approach on updating the list ?
Are you trying to call a method like the following ?
$('#myList'). ioslist('update','your-userlist-json-path');
which is not implemented by that plugin
but instead you can do the following (Im not very familiarly with web-sockets but will try my best)
This is your list, which is blank at first
<div id="myList"> </div>
You will be actively connected to a socket and every time an update event is fired you update the html div myList by using jquery append. Appending helps you to append html tags to your DOM
http://api.jquery.com/append/
//Let data be the values you retrieve from web-service
var content = '<div>'+data+</div>;
$('#myList').append(content);
$("#myList").ioslist();
Let me know
Thank you for the prompt reply!
I am using append method and its fine, adding to list alright but the problem is with ioslist doesn’t populate its list and when scrolling, last header is always on top.
Did you get an console error on the console ?
a link would be awesome if you can drop to support@revox.io
Hey, amazing theme you have made!
I’m trying to use the Social page, with the masonry. It’s working fine.. but when i’m loading my content using angular routing, It’s loaded with dynamic content, and the masonry is not effecting the boxes..
What can I do to make masonry effect boxes loaded with dynamic content?
Thanks, and sorry for my bad english! 
Hi,
Thanks for your compliments 
In your case, you can use some of the AngularJS directives like angular-isotope to deal with dynamic content.
But first you’ll have get rid of jQuery Isotope initializations in pages.social.js (Line #53-62)
Thanks for the quick answer!
If i was going to use a ajax loading script, instead of angular routing, how would i do it then? 
When the DOM is ready, you can apply the isotope plugin using the following script:
$('[data-social="day"]').isotope({
"itemSelector": '[data-social="item"]',
"masonry": {
"columnWidth": 300,
"gutter": 20,
"isFitWidth": true
}
});
Thanks for the help.
I just removede the unload function for calling the script, and it worked 
Just another question, if i were to place a iframe as the content, how would i make so the search function work, also if you are in focus with the iframe?
It can be done if the both parent and child are in the same domain.
You can follow this SO question to learn how to call a parent function from the child iframe. Likewise you can trigger the search script in the parent.
Please add to the github: devilankur18
Added 
When will the PSD be ready? Please send it, I need it urgently.
btw great design! Love it.
Hi there
Thank you!
working on it, I will send you an email once its completed can you drop an email to support@revox.io ? 
great sent! When will the new update be? Very excited about new pages and design/features that will be coming out.
By a day or two
will drop an email as soon as its ready. Thank you for waiting.
Is it ready yet? Our whole team is waiting for it so we can implement it.
I understand, Im really sorry for the big deal. Doing my best to get it out. I will send it to you across. Will confirm a date in abit.
any update on the date? Thanks.
Hi there
Sorry about getting back abit late, v1.1 date will be 3rd of February. We are a small team of 4 and unfortunately our lead designer is out for a week that is why there is a delay on the PSD end. Will do my best to get it to you before the release date hope you understand and I apologies the big fuss that was created by this.
Hello, is it ready? Our small team is waiting for this. We just need the PSD.
Hi there
We have a few couple of PSD ready
can you drop an email to support@revox.io so that I have your email address
Hi there
we are ready with the PSD’s except the tables, I did send you an google drive invite 
Please add me to the GitHub repo. My username is jamesaps 
Added 
So fast!! Thanks 
Hello there is a possibility, that you insert the documentation for the mail app in the next update?
Greetings
Hi,
Yes, it’s already in our update list. Please find the steps below in case you’re stuck while attempting to re-use the email app.
In your pages.email.js please replace the URL “http://revox.io/json/emails.json” (Line #54) with your own end point URL which can return a JSON having a similar structure.
JSON Structure explanation:-
emails -(Array) List of all emails categorized by date
- group -Date category
-
list -list of emails received for the day
- id -unique ID to represent each email, should be an unique integer
- subject -Subject line of the email
- to -(Array) Recipients name list
- body -Email body. HTML is allowed
- time -Time email was sent
- datetime -Date and time combined
- from -Sender name
- dp -Display picture of the sender
- dpRetina -Retina version of the display picture of the sender
Let us know if you run into any problem while doing so.
Hi ace thanks a lot!
Hi Ace, the file structure .json have to be emails -> group -> list or group and list can be removed?
‘group’ should be a date. So all emails received on that date should be inside the ‘list’ array. I have created a sample JSON below, that you can use as a boilerplate.
{
"emails": [
{
"group": "Today April 23",
"list": [{
"id": 1,
"subject": "Pages - Multi-Purpose Admin Template Revolution Begins here!",
"to": ["David Nester", "Jane Smith"],
"body": "<p>First email body</p> ",
"time": "5 Mins ago",
"datetime": "Today at 1:33pm",
"from": "David Nester",
"dp": "assets/img/profiles/avatar.jpg",
"dpRetina": "assets/img/profiles/avatar2x.jpg"
}, {
"id": 2,
"subject": "Your site has some very imaginative animation /movement! ",
"to": ["Anne Simons"],
"body": "<p>Second email body</p> ",
"time": "45 mins ago",
"datetime": "Today at 1:33pm",
"from": "Anne Simons",
"dp": "assets/img/profiles/5.jpg",
"dpRetina": "assets/img/profiles/5x.jpg"
}]
}, {
"group": "Yesterday April 22",
"list": [{
"id": 3,
"subject": "Good design is obvious. Great design is transparent",
"to": ["John Doe", "Anne Simons"],
"body": "<p>Third email body</p> ",
"time": "1:33pm",
"datetime": "Today at 1:33pm",
"from": "David Nester",
"dp": "assets/img/profiles/b.jpg",
"dpRetina": "assets/img/profiles/b2x.jpg"
}]
}
]
}
Hi. I am trying to use this theme to build a tool to manage my project tasks and assignments. Does this theme support that?
Hi there
Pages comes with HTML, CSS and JS files which can be used in almost every web platform/ language like php, node, ruby on rails etc so You can use it to build your web app but you will require development to integrate it to your web service or web app
Hope this info helps
which files exactly required for the wysiwyg editor ?
Ah – First -> read the docu 
Yap
hope you found it
hey ace any reason why I get this http://puu.sh/eeCVR/fac5aa3376.png when my col-md-3
is using bg-white and full-height
this is taken from your builder 9:3 columns
Have you added full-height to the parent elements too? Please confirm.