Advertisement:

Author Topic: AMP: Accelerated Mobile Pages  (Read 3406 times)

buninsan

  • Full Member
  • ***
  • Posts: 104
AMP: Accelerated Mobile Pages
« on: November 29, 2016, 11:42:12 am »
Accelerated Mobile Pages is a Google initiative to build a faster version of the mobile Web. AMP is a new way of building web content for mobile devices that results in a simpler, much lighter version of HTML. Apart from a mobile ranking boost, there's a number of other reasons for going AMP:

Ultimate user experience. It's no secret that speed matters. Multiple research has shown slow loading time correlates with higher bounce rates. AMP pages were designed for lightning fast speed — their median load time is 0.7 seconds, while non-AMP pages have a median load time of 22 seconds. Yup, that's not just faster; that's 30 times faster.
The impressive load time of AMP pages is not just due to the lighter HTML and CSS. It's also due to the fact that AMP content is cached in the cloud and delivered not from your server, but from the Google-hosted cached version.

More clicks from search results. In his presentation at this year's SMX East, John Shehata shared the results of his AMP research. He found that AMP pages tend to perform better in search not only in terms of rankings, but also in terms of their CTR.

http://www.link-assistant.com/news/mobile-seo-2017.html?utm_source=email&utm_medium=broadcast&utm_campaign=mobile-15112016

Wordpress AMP plugin https://wordpress.org/plugins/amp/

NEED OSSCLASS AMP PLUGIN.

Jarosvet

  • Newbie
  • *
  • Posts: 27
Re: AMP: Accelerated Mobile Pages
« Reply #1 on: November 29, 2016, 01:19:53 pm »
You're right!

It's strange that this function is not implemented till now

Is there someone who can develop it?

Abhi

  • Jr. Member
  • **
  • Posts: 78
  • Love what you do :)
Re: AMP: Accelerated Mobile Pages
« Reply #2 on: January 09, 2017, 12:58:59 am »
Hi I am developing amp theme currently I am done with home page search page

item publish and edit won't be supported for amp as we need jquery for images and selection country city and all

Jarosvet

  • Newbie
  • *
  • Posts: 27
Re: AMP: Accelerated Mobile Pages
« Reply #3 on: January 09, 2017, 12:48:00 pm »
Hi I am developing amp theme currently I am done with home page search page

item publish and edit won't be supported for amp as we need jquery for images and selection country city and all

Hello! Nice work!

Could you share with us this theme? Or it will be available in pay edition only?

Abhi

  • Jr. Member
  • **
  • Posts: 78
  • Love what you do :)
Re: AMP: Accelerated Mobile Pages
« Reply #4 on: January 09, 2017, 01:40:00 pm »
Its Still Underdevelopment and probably i will release first version very soon

Jarosvet

  • Newbie
  • *
  • Posts: 27
Re: AMP: Accelerated Mobile Pages
« Reply #5 on: January 09, 2017, 01:50:42 pm »
Its Still Underdevelopment and probably i will release first version very soon

Looking forward  :)

Abhi

  • Jr. Member
  • **
  • Posts: 78
  • Love what you do :)
Re: AMP: Accelerated Mobile Pages
« Reply #6 on: January 09, 2017, 08:13:54 pm »
For my homepage Google started showing amp a great success for me now :) trying to complete it as soon as possible

Abhi

  • Jr. Member
  • **
  • Posts: 78
  • Love what you do :)
Re: AMP: Accelerated Mobile Pages
« Reply #7 on: January 19, 2017, 08:46:55 pm »
Hi


guys here is a beta version of my amp theme

« Last Edit: January 20, 2017, 12:27:31 am by _CONEJO »

Jarosvet

  • Newbie
  • *
  • Posts: 27
Re: AMP: Accelerated Mobile Pages
« Reply #8 on: January 20, 2017, 01:43:04 pm »
Hi


guys here is a beta version of my amp theme

Thank you very much for sharing it!

My suggestion is to make it something like this in index.php :

Code: [Select]
} else if(Params::getParam('desktop') == "amp") {
            WebThemes::newInstance()->setPath( dirname( osc_plugin_path(__FILE__) ) . '/themes/' ) ;
            WebThemes::newInstance()->setCurrentTheme('mobile') ;
            $functions_path = WebThemes::newInstance()->getCurrentThemePath() . 'functions.php';
            if(file_exists($functions_path)) {
                require_once $functions_path;
            }

So we'll be able to save the existing mobile theme, and to include in header of normal pages

<link rel="amphtml" href="https://www.example.com/?desktop=amp">

To complete the Google rules

crymatisticos

  • Newbie
  • *
  • Posts: 25
Re: AMP: Accelerated Mobile Pages
« Reply #9 on: February 06, 2017, 08:43:38 pm »
I don't see any link for the beta version

WEBmods

  • Hero Member
  • *****
  • Posts: 936
  • github.com/webmods-croatia/love-osclass/ | patrick
Re: AMP: Accelerated Mobile Pages
« Reply #10 on: September 01, 2018, 05:00:06 pm »
Its Still Underdevelopment and probably i will release first version very soon

Hello,

Any updates on this? Are you still developing the theme? Download link for beta is removed.

Regards.

Abhi

  • Jr. Member
  • **
  • Posts: 78
  • Love what you do :)
Re: AMP: Accelerated Mobile Pages
« Reply #11 on: September 05, 2018, 01:24:10 pm »
I have added but it has been removed by admin or moderator. Also many features are lost when using amp.I was waiting for someone who can put some bucks or required by someone to sponsor me for development.so I can continue the development of amp theme.

WEBmods

  • Hero Member
  • *****
  • Posts: 936
  • github.com/webmods-croatia/love-osclass/ | patrick
Re: AMP: Accelerated Mobile Pages
« Reply #12 on: September 06, 2018, 01:10:27 am »
I have added but it has been removed by admin or moderator. Also many features are lost when using amp.I was waiting for someone who can put some bucks or required by someone to sponsor me for development.so I can continue the development of amp theme.

Could you maybe put it on GitHub so others (like me) could help in the development? I think that would help a lot.
The lost features are the ones using AJAX I guess? I think that can be solved by separating some pages. For example, Item post page would be only category select and after clicking "Next" it would redirect to a new page which will load custom fields with the category ID from POST request in PHP, not with JS. Same for location.

Regards.

Abhi

  • Jr. Member
  • **
  • Posts: 78
  • Love what you do :)
Re: AMP: Accelerated Mobile Pages
« Reply #13 on: September 06, 2018, 10:59:34 am »
I have added but it has been removed by admin or moderator. Also many features are lost when using amp.I was waiting for someone who can put some bucks or required by someone to sponsor me for development.so I can continue the development of amp theme.

Could you maybe put it on GitHub so others (like me) could help in the development? I think that would help a lot.
The lost features are the ones using AJAX I guess? I think that can be solved by separating some pages. For example, Item post page would be only category select and after clicking "Next" it would redirect to a new page which will load custom fields with the category ID from POST request in PHP, not with JS. Same for location.

Regards.

Sure I will put up and will share you the code soon.

ala

  • Full Member
  • ***
  • Posts: 213
Re: AMP: Accelerated Mobile Pages
« Reply #14 on: September 06, 2018, 07:22:28 pm »
Waiting for your Best AMP