3890 comments found.
on the email json feed, are there any limitations to length or anything like that? Also noticed that when we have quotes of any type ( ’ ) or ( ” ), within the body text, it will break the feed and it won’t show. Any fixes or guidance on how to work around?
No, there are no limitations. Everything will work fine as long as you follow the given JSON structure.
You can escape the ’ and ”” by preceding it with a backslash in the JSON.
ex:
{
"foo" : "It\'s a beautiful world!"
}
gotcha . . . how forgetful of me : ( thank you for the reminder!
No problem 
we have tested and tested and even ran our code through a validator that said all things were good, but for some reason it still won’t go through to the processing engine, can I send you a short version so you can help us see what we may have missed?
Sure. You can send it support@revox.io we’ll try to do our best.
actually ace, after too many hours of non-stop work by our entire team . . . we may have finally sorted it out . . . will know more in a few more hours. Thanks for your willingness to help always.
I’ll work with our team more until we can’t go further . . . want to do our best to make sure your time is focused on the up coming upgrade release . . . that’s priority : ) : ) : )
Hi ace, i bought the template but i have a question related to the calendar.
I need to get the json data from a feed.
I use Ajax to recover the feed and it works ok, but i cant asign it to the Events attribute 
this is my code: I have tried
events: [],
onViewRenderComplete: function() {
//You can Do a Simple AJAX here and update
$.ajax({
type: "POST",
url: "<?=base_url()?>player/feed",
data: {},
success: function(msg) {
/What is the line i need to add to assign msg content to events attribute?/
},
error: function(err, msg){
alert('error connecting');
}
});
},
this is the console.log result: {title Dave”,class”:”{}”}
thanks!
Im setting up a guide right now how to add events via json 
Something like this
to the ‘onViewRenderComplete’ call back which is called only once
onViewRenderComplete: function() {
$.ajax({
url: 'your url',
type: 'GET',
success: function(data) {
for(var k in data) {
//console.log(k, data[k]);
$('body').pagescalendar('addEvent', data[k]);
}
},
error: function() {
$('body').pgNotification({
style:'bar',
message:'Unable to connect to server',
position:'top',
type:'danger',
timeout:3000
}).show();
}
});
}
Your JSON object should look like this
http://pages.revox.io/doc/jquery/calendar.php#sampleevenobjHi! the code of your example don’t work for me ace
But… i have the fix. This code works perfect for me on the onViewRenderComplete (success event).
data = $.parseJSON(data);
$.each(data, function() {
// this = object in array
// access attributes: this.Id, this.Name, etc
alert(this.id);
});
Sorry, i mean that, the code data = $.parseJSON(data); is needed. (Your code works ok, but , at least in my case, need this line to work).
Hi there
Im abit confused now
so its working with $.parseJSON(data); ?
Your example code works perfect. Code looks like :
data = $.parseJSON(data);
for(var k in data) {
//console.log(k, data[k]);
$('body').pagescalendar('addEvent', data[k]);
}
Git invite ace please, username:”alfonsan”
Hi there
Sent you an invite 
Thanks
when will be released the new update with frontend. I need with urgency.
Hi there
This is our road map 
Hi,
I’m having an issue with buttons with dropdowns inside tables where if the table has no data and is quite small the dropdown options on the button are getting cut off by the bottom of the table. Is there any way to fix that?
Hi there
This is noted
and will be sending a fix over, Will try to get you a quick fix on the table buttons. Will let you know
Hello your theme is really great, but when the 1.x version will be released here on ThemeForest . I need email sending theme.
Hi there
Yes they will email you when its ready
but here is a detail road map
Could I get access to the repo? Github username is “iog3” Thanks
Hi there
Sent you an invite 
can you share with me the json/data feed structure for the CALENDAR app as well as the SOCIAL app? Just a sample set as you provided for EMAIL in “emails.json” file
Hi there
Just updated the doc for sample even json object
http://localhost:8888/ace/pages/docs/jquery/calendar.php#sampleevenobjin the socail we did not use any json just static elements on the html and the grid was made using jquery isotopes 
thank you for the updated docs, “on top of it” as always . . . also Yes, understood from the above question on jquery isotopes, will work with accordingly with our own dynamic injection.
btw, for the updated calendar docs, 2 questions . . . (1) where in the setup / config of options is the url for the json object named / indicated?. . . (2) do we need an updated calendar.js script from you? if so, please provide
Hi there
You can use jquery ajax to retrieve your json object of events
http://api.jquery.com/jquery.ajax/and then using the retrieved data to a variable and add it to the
events attribute in pages calendar.
events: myVarriable
Will try to get a detail how to guide 
cool, thanks for the guidance . . .
Hi there,
Could you send an invite for the Git rep please? Username: ppounder
Cheers Paul
Hi there
Sent you can Invite 
hey there Ace, do you all have more complete docs for the social pages? if so can you send or provide me the link?
Also I noticed the social pages bleeds into the navigation at the top header/navigation at top. What can we adjust to prevent this so it sets up like the other page layouts that “do not” overlap.
thanks ahead of time : )
Hi there
Currently we do not have a detail doc for Social. You want to dis-able the transparent header ? 
yup that’s it and also know how to add in the various feeds dynamically and in real-time
To remove the transparent header you will have to remove the class ‘no-header’ from body tag first. Social page loads ‘simple.css’ file for its theme. In that we have made the header transparent. So you’ll have to remove that line too. Look for class .page-container .header in simple.css
Sure, so are you using LESS or CSS ? if your using CSS then you will have to remove one line it’s in pages/css/theme/simple.css and in line 13037
you will find the following
.page-container .header {
background: transparent;
}
Remove it
how are you planing to add the content ? via AJAX currently its done static with jquery isotope to arrange the grid
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 );
Thanks for the guidance and info about the simple.css file.
For the adding the content, I was thinking of ajax feed of a json array or such to dynamically populate. thoughts / advice?
$.get("api.json", function(data) {
for (var i = 0; i < data.posts.length; i++) {
var newItem = '<div class="item share share-self col1" data-social="item">' + data.posts[i].myData + '</div>';
var allItems = $(newItem).appendTo('[data-social="day"]');
$('[data-pages="social"]').data('pg.social').$day.isotope('appended', allItems);
}
});
this is of great help, thank you!!
wonderful job!
Any predictions for the angular version? She retain all the functionality and graphics of the current template?
Lack just that in order to make the purchase and start a new project here the company.
thank you!
Hi there
Thank you! 
Yes we are going to have Angular version on v1.2 and v1.1 will be released on the 3rd of February 
Here is a detail view
There is already the initial code it in angular, so I can start my project?
Hi there
Angular JS is going to be on v1.2 and its going to be released on Feb 20th and unfortunately we did not start on it yet you will be able to see everything on github, have you got access to it ? 
can I access? My User is jonathanalves
Sent you an invite 
When I rotate my android tablet vertically, the left menu does not expand and collapse also the pages link is not visible either
Hi there
We did test it out on a android
before the release but do you see the menu collapsed or the three menu Icon to slide open ? a screenshot would be great and a little about your device, maybe the name and resolution.
Hi Ace, in the translated version of the app calendar all events are moved forward by one day. Both those already present and those that are created.
Thanks!
Hi there
You mean after changing the language ?
did you try checking your time zone ? the events can have timezones too so if its in a different timezone and your current system time is different it will adjust according to it. I will check it up on my end too 
Yes after changing the language. What I noticed is that if, for example, I try to create an event on Thursday, this event will have Thursday as date but it will displays on Friday…
I hope I was understandable,
thanks a lot

Sorry about delaying your request checking it now 
What is the approximate timeframe for this update?
Hi there
Working on it
Im sorry to drag this a bit but we always surprise everyone in every update 
Hi there,
If I’m going to use JQuery-2.1.1, is there any place I need to be careful or I need to make a change?
Thanks!
Hi there
You will have to change small part on pages.js in pages/js folder
line 1715 in pages.js .
From the jQuery Docs:
Deprecated in jQuery 1.8, removed in 1.9: The name “hover” used as a shorthand for the string “mouseenter mouseleave”. It attaches a single event handler for those two events, and the handler must examine event.type to determine whether the event is mouseenter or mouseleave. Do not confuse the “hover” pseudo-event-name with the .hover() method, which accepts one or two functions.
So this: this.$element.bind(‘hover’, sidebarMouseEnter);
becomes this : this.$element.bind(‘mouseenter mouseleave’, sidebarMouseEnter);
Hello there!!. Thanks for Pages! Amazing stuff. Couple of questions. 1) Did you try to integrate your selects2 or custom selects in modal window. They are totally broken. I fixed it with small hack – changing z-index for selects, but you need to look at them and find better approach.
2) Can you send to us Beta rails boilerplate(username: gnatok), because we stuck with implementation of less files. less-rails gem works bad and unpredictable.
Thanks! Thanks
Thanks for your compliments 
1) We’ll be releasing this fix in our upcoming update. Yes, it’s a matter of changing the z-index values.
2) Rails boilerplate is still a work in progress. For now you can follow this guide by Chris Jacob: https://gist.github.com/chrisjacob/a070de58e98dff4f6d62While exploring the live demo on an iPhone (5) I noticed that at the calendar the years have disappeared.
Hi there
It was done on purpose
the reason why is that the smaller screen has limited height and we wanted to focus on the events below. Its possible to get it back
sorry for the newbie question, but what does this theme do? which platform does it work on?
This is a theme based on Bootstrap, the most popular HTML, CSS, and JS framework. We have enhanced it with so many features including more themes, jQuery plugins etc. You can see a live demo at pages.revox.io/latest
It’s all HTML, CSS and JS. You can open all the HTML files from any web browser to view the theme. (it’s only the front-end we provide). Let us know if you have any questions and we’re happy to help 
Great Framework! Could you send an invite for the Git rep please? Username: VykintasZaboras
Thanks!
Hi there
Thank you very much, sent you an invite 
Good work! There shows that this theme is compatible with Rails, but I found that it’s hard to apply it in a ROR project. For example, in Rails, all the JS files are better in same folder, also the CSS files. But in the download files of Pages, there is a Plugins folder, with JS and CSS files all in. Should I separate them by hand? Would there be any advice?
Thank you!
Hi there
We do have a Beta Rails Boilerplate
do you have github access to Pages repo ?
Oh that’s cool! And I don’t have the access yet, my ID is cnkevinlee, could you please add me in?
Hi, I have done that, but there shows some bug http://grab.by/DYto
Hi there
Its in beta
I will setup it on Pages and push it over to github. Will let you know when its ready