Discussion on Go Mobile

Discussion on Go Mobile

Cart 3,359 sales
Well Documented

VegaThemes supports this item

Supported

441 comments found.

I changed the email account and not receive emails

Hi,

1. Make sure your server is email ready. 2. Make sure you did not get the messages in the spam folder. 3. Make sure when editing code not to ruin the email php code

Regards.

Do not edit the php code my email is active and I did not get my tray spam. I am dealing meter single page

Hi,

But when sending a message using the form you get the success text? “Email successfully sent….etc” ?

If that text is apearing after the form is submited means the code is executed corectly and there is no errors there. It’s the server job now to receive the messages.

Make also a test changing the email adress you inserted there. Use for example a gmail adress if you have.

Regards.

I have problems when editing “Metro” I’ve tried from dreamweaver and from the hosting, opening index.html works well, but I opened another page appears plain, and the messages do not arrive

Hi,

In order to edit the template, you need to switch to code view mode in Dreamweaver. This is not a table design that works editing in desig mode. It’s code template with javascript. You need code knowledge in order to edit it. I guess this why the other pages looks plain.

You need to test the contact form on a web server, that have the email service enabled. Everything should work fine after changing the email adress. It’s been test hundred of times.

Regards.

Hi, how can I disable the return to the top of the page if the content is larger? thanks you

Hi,

1. In onepage version at the end of each section/slide you have

<div class="scrolltop radius20"><a href="#"><img src="images/icons/top.png" alt="Go on top" title="Go on top" /></a></div>

2. In multipage version at the end of each page code you have

 <div class="scrolltop radius20"><a onclick="jQuery('html, body').animate( { scrollTop: 0 }, 'slow' );" href="javascript:void(0);"><img src="images/icons/top.png" alt="Go on top" title="Go on top" /></a></div>

This is the manually remove.

But if you want to remove it just when the content is larger you will need to use javascript to detect the content height or width value and remove the lines just in that case.

Regards.

Hi guy,

I like this items, i have questions.

I using Wordpress for Blog, so can i include CMS with this item ? Can i use build.phonegap.com for make the application ?

Thanks for great jobs.

Hi,

This item is a simple HTML template. You can use it with Wordpress only if you transform it to an Wordpress theme. Will require coding and programming.

A Wordpress version will be released soon.

As an HTML item you can use it with phonegap.

Regards.

As this is just CSS and HTML you could intergrate this to use in a BizzApps App right??

Hi,

We are not familiar with BizzApps but yes this item is just HTML/CSS and JS. Can be used to create web apps, and native apps with phonegap for example.

Regards.

Hello,

i am having big issues with your template, using Multi-page version, i must add a Onclick function for the script to be executed for example in blog.html , when i use normal <script> tag with Jquery $(”#Id”).click on it, it doesnt see it, and no errors to be found, even debugger doesnt reach there… but when i add Onclick= function ,it works… ?

Hi,

“Big issues” sounds a little too much on your problem :) We don’t want to scare users with this and make them run from this item.

The issue is not that big.

When adding new js/jquery functions on secondary pages, being an ajax system you need to load the functions for the pages like we did in code.js file.

See the function

function homenavclick() { ... function showNewContent() {

.................HERE

.................

}

All the new actions you want to add you will need to add them there.

Basically the js is read when the home page is loaded, after the secondary pages are viewing just the HTML content from their code. Only the home page header and footer will need to load the js functions. This why we are adding them there. When a link from the home menu is clicked the function showNewContent is executed.

Hope this make sense.

Regards.

Thank you, you should put that in your documentation

We are working on updating the documentation. Thanks.

My friend purchased the template and he is having issues with drop down menus… using iPhone with safari (also tested android) browser does not allow to select – but if you use a standard desktop PC with browser works ok… So it must be an issue with some style when using a mobile device.

For:
 
<select class="form_input radius4" name="ddlPropertyType" id="ddlPropertyType"> <option value="residential">Sale</option> <option value="rental">Rent</option> </select>

Hi,

Can we see a demo url ? So we can test it.

Select should work fine.

Are you using the single or multipage version?

I guess the problem must be on single page one? Because multipage is basically html code.

On single page we have a function to disable touch event for inputs. And select is added corectly.

$(function(){ $(’.form’).find(‘input, select, textarea’).on(‘touchstart mousedown click’, function(e){ e.stopPropagation(); }) })

Let us know if you can provide a demo url. We will make other tests as well.

Regards.

Support will be offline between 21-27 December 2014. All new comments from that period will be answered on 28 December 2014. Thank you.

Hi there! First of all… Great mobile theme!

Just one pre-sale question: is it possible to choose the style of “medical” template but with color combilation (b\w) of “white” template?

Thank you really, M

Hi M,

The designs are included the way you see them. So the medical theme is blue. You can only change it to B/W by modifying the CSS file.

Regards.

Hello,

Please I purchased this theme and I am using it to develop a phone gap application. However, I am having issues with the blog aspect.

When I dynamically load blog posts from the database using json and I use jquery or javascript to programmatically render the html of the post titles and post details, a click on the post title doesn’t open the post details. It just doesn’t respond to a click. But if I copy the html code generated with javascript and paste it in the blog section, it works pefectly.

I will really appreciate your help on this.

Thanks.

Hi,

Sorry for the late response.

1. The multipage version was just launched as a request from multiple users. So it’s fresh.

2. After analizing your problem, I must say that the only issue now seems to be the javascript code that shows the details page once the title is clicked. If the database results are showing corectly , this must be the only issue.

As you notice the code that handle the details section to show is found in code.js file

    $(".post_details_page li").hide();
    $(".posts li").click(function(){

        p_ID = this.id;

        $(".post_details_page").find("li").each(function() { 
            if(this.id == p_ID)
            {
                $(".posts_archive_page").hide(); 
                var detailspostid = $(".post_details_page li#" + this.id);
                detailspostid.show();
                swipernested.reInit();
                swipernested.swipeTo(0);
                $('.backtoblog').click(function(){
                     detailspostid.hide();
                     $(".posts_archive_page").show();
                     swipernested.reInit();
                });    
            }
        });

    });

Make sure that code is there. And if you changed something to the DIV names, make sure you change them also here.

Other than this I don’t see why it’s not working.

Regards.

thanks for the reply. I still can’t make it work. But please could you send me the multi page version so that I can try it out?

Hi,

The multipage version is available in your account. It’s free to download. Just download the item again, and see it there.

Regards.

Hi, i have a problem with the gallery content. I’m using a single version for different pages. After to get some photos from my web url with json , when i try to touch on a photo, it is showed in another browser page. it seems like the particular css for gallery doesn’t hear the call by clicking on a img tag…Can you help me… this is the code index .html <div class="pages_container" id="bodyGallery"> <h2 class="page_title">Gallery</h2> <div class="portfolio_item radius8"> <div class="portfolio_details"> <h4><a href="#" onclick="espandiGallery('27-11-2014');">27-11-2014</a></h4> </div> </div> <div class="clearfix" /> <div class="scrolltop radius20"><a href="#"><img src="img/icons/top.png" alt="Go on top" title="Go on top" /></a></div> </div> Here where there is the gallery get from json <div class="swiper-slide sliderbg"> <div class="swiper-container swiper-nested"> <div class="swiper-wrapper"> <div class="swiper-slide"> <div class="slide-inner"> <div class="pages_container" id="bodyListGallery"> </div> <!--End of page container--> </div> </div> </div> <div class="swiper-scrollbar" /> </div> </div> this is the json code function espandiGallery(nome){ var response = $.ajax({ type:'GET', url:'http://xxxxxx.com/app/get_dettaglio_gallery.php?nome='+nome, dataType: 'json', success:function(response){ var url = 'http:/xxxxxx.com/img/gallery/'; var listSubNews = $("#bodyListGallery"); listSubNews.append('<h2 class="page_title">'+nome+'</h2>'); listSubNews.append('<ul class="photo_gallery_13">'); for(i=0; i<response.length;i++){ var directory = response[i].dir; var foto = response[i].nome; var li = $('<li><a rel="gallery-3" href="'+url+directory+'/'+foto+'" class="swipebox"><img src="'+url+directory+'/'+foto+'" /></a></li>'); $(".photo_gallery_13").append(li); } listSubNews.append('</ul>'); listSubNews.append('<div class="clearfix" />'); listSubNews.append('<div class="scrolltop radius20"><a href="#"><img src="img/icons/top.png" alt="Go on top" title="Go on top" /></a></div>'); swiperParent.swipeTo(5); } }); }

Hi, thanks for your reply. this is a phonegap app. I try to add $(”.swipebox”).swipebox(); for each <li /> and now when i click on a photo i can see the black background with go, close, etc. buttons but not the image…??? the css files are there… help!!!!

Hi,

It’s great that you made the script work.

Now the image is found in the a href=”#” function of the link.

So the swipebox must be used on a “a href=”” ” function.

Not sure, but there is a way to view the source code of your app? I mean can you see if the location of the image is corect?

Basically this is the issue now, the corect url of the image. Make sure it’s corect, in the corect folder structure just like “href=”images/photos/photo1.jpg”“

Maybe on apps you need to add more details to the location of the image, like the full domain ///yourdomain.com//images///etc

Regards.

Thanks a lot for your replay. I solved the problem. Now i have a similar problem with the portfolio list…this is the code gerenated by jquery and json var li = $('<div class="toogle_wrap radius8">'+ '<div class="trigger"><a href="#">'+titolo+'</a></div>'+ '<div class="toggle_container">'+ '<ul class="listing_detailed">'+ $.ajax({ type:'GET', url: "http://xxxxxxxxxx.php?idn="+id, dataType: 'json', success: function(html) { var li = ''; for(i=0; i<html.length;i++){ var titoloSub = html[i].titolo; var lo = '<li><div class="trigger"><a href="#">'+titoloSub+'</a></div></li>'; $(".listing_detailed").append(lo); } } })+ '</ul>'+ '<div class="clearfix" />'+ '</div>'+ '</div>'); $("#bodyNews").append(li); the css is not respected…how can i refresh each li tag?...

I purchased this item but it doesn’t have dropdowns. pls help me with getting dropdown theme

Hi,

Can you be more specific about dropdowns? On the menu or where you whould like them to be?

I don’t see where dropdowns can be used here.

Regards.

Hi

I’m using the new multipage version with the “slider” theme. Really cool layout. I have set up and formatted all my pages. On the Contact page I had to implement the PHP SMTP mailer instead of the mail() function. All that working good now. I do however want to implement the reCaptcha function on the contact form. I have tried both the javascript version and the noscript version with no success. The reCaptcha never shows up. I have verified my captcha code in a blank page on the server and both the javascript and noscript version shows up. Any idea how to implement this on the contact form?

Thanks

Eivind

Hi Eivind,

Where did you add the execution function for the capcha. The javascript code ?

As you notice, being an ajax pages system all the functions are executed in code.js file.

The functions are loaded normally inside the HTML file, in diferent js files and executed inside code.js under
function homenavclick() {    

......

  function showNewContent() {

......HERE.......

.....}

So after the home button links are clicked (function showNewContent()....) the functions are activated for the secondary pages.

There you should add you captcha js code.

We did not test this, but I guess the captcha should work fine.

Regards.

Hi, Thank you for nice templates. I just got it but can you please add login page design & Tabs option at bottom…

Hi,

Thank you for buying it.

The tabs options should link to what? Other sections?

We will consider in adding them in a future update.

You can give more details about the things you want, so we will add them.

Regards.

Hi, Yes the tab should linked to new page and login page like this https://itunes.apple.com/ae/app/breeze-uae/id535729255?ls=1&mt=8 & Tab page like https://play.google.com/store/apps/details?id=com.scb.ae.bmw&hl=en but should be an option to put on top or bottom .. i can pay some extra amount for this as well but let me know if it’ can be possible..

Hi,

Thanks for your suggestions. We cannot make this customization just for you right away because we have a program to follow now. If you want it in a very short period you will have to hire a freelancer from “Envato Studio” website.

But we will consider in adding an option like this in the next update of the template. You will use it for free. At that point all you have to do it to download the item again (free from your account)

Regards.

Hi

Got a new problem. We are trying to add a universal footer (not in each page_container section) but could not figure out the way to do it. Also we want to make it stick to the bottom of the page. Any suggestion for this design?

Thanks!

Hi,

You can do that but will require some small js and HTML work.

1.Do you want like the footer to stay fixed over the content at the bottom just like the header does? 2. Do you want it to appear just for some sections, not all secondary ones?

Maybe I can help with some small code example here if you will tell more about that.

Regards.

Hi,

For your questions: 1. It should be always sticky to bottom but not fixed (after all of content). 2. We want it appears for all sections (that’s why we prefer making it universal, not a snippet appended to each section)

Hi,

So the footer should not be added after the content.

By fixed I meant to stay hover the content. When you will scroll the page content the footer to stay over the content sticky/fixed to the bottom screen of the mobile right?

2. All section, including the first menu/icons section?

So, I downloaded this, and haven’t tried it on a phone yet, but loading it into my browser (Safari), on the multi-page, no page changes are occurring. I get the spinning wheel, but it still re-directs to index.html#blog etc, rather than loading blog.html

Hi,

In the download the exactly js files are available as in the demo. Just checked.

Yes you can download the online code.js file. Just use the browser to view source code online.

As for “as it appears to be appending the ”#content” to the index.html” this is the corect behaviour. It will not switch the index.html to about.html. Just load the page extension to index.

Let me know if that will change something.

Regards.

OK… found the problem, and it was on my end. I had just downloaded and launched from the file system, where things used to run fine, but not the paging. When I copied to the web server, then things worked. Just an FYI, in case you get this question again.

Glad it works now.

Thanks for the feedback.

hi,

is it compatible with phonegap?

We did not test it, but a lot of users send positive feedback.

We also have in plan testing it.

Regards.

UPDATES – 04 December 2014 – Template version 3.0

1. Multipage version added. All pages content is loaded with jquery/ajax to keep the app feel and functionality.

2. Updates to onepage version navigation. All links from the menu are now individually editable allowing to add any action on any link.

When the new version is releasing with multiple skin on each page as was explain in comments.

The update was just released. See the latest comment or the item description.

ok thanks for the quick reply.

Hi, thx for this awesome template i really enjoy it.

But i need create a modal on the screen to make a Form how can i do that once i tried to use Bootstrap Js to create modal and doesn’t show the modal on the screen.

Regards.

Hi,

We did not tested Bootstrap Js to create a modal on this item.

But any good functionality js code will work as long as it’s correctly added. Also make sure that the js functions added are compatible with the js functions of the theme. And add the js code in the correct place.

Regards.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey