Register Advertise with usHelp Desk Today's Posts Search

Closed Thread
Thread Tools Search this Thread
Unread 23rd Jan 2013, 11:29 AM   #1
HyperActive Warrior
War Room Member
 
Jarrod's Avatar
 
Join Date: 2011
Location: Austin, TX
Posts: 404
Thanks: 165
Thanked 270 Times in 120 Posts
Default
have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

What are some ways to create a mobile website such that when the client updates their main site (changes content, adds photo, etc.) it will automatically flow through and update their mobile site as well?

I've had several clients (one I just got off the phone with) ask about that and the methods I have used thus far do not work that way.

What are some options?
Jarrod is offline  
Unread 23rd Jan 2013, 11:30 AM   #2
HyperActive Warrior
War Room Member
 
Jarrod's Avatar
 
Join Date: 2011
Location: Austin, TX
Posts: 404
Thanks: 165
Thanked 270 Times in 120 Posts
Default
Re: have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

Also, for anyone that uses a method where it does not do this, have you had clients ask about this option, and if so how do you respond?
Jarrod is offline  
Unread 23rd Jan 2013, 11:55 AM   #3
Active Warrior
War Room Member
 
Join Date: 2012
Location: Illinois
Posts: 74
Thanks: 7
Thanked 11 Times in 11 Posts
Default
Re: have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

Dudamobile will do this
cnckevin is offline  
The Following User Says Thank You to cnckevin For This Useful Post:
Unread 23rd Jan 2013, 12:24 PM   #4
HyperActive Warrior
War Room Member
 
Jarrod's Avatar
 
Join Date: 2011
Location: Austin, TX
Posts: 404
Thanks: 165
Thanked 270 Times in 120 Posts
Default
Re: have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

Originally Posted by cnckevin View Post

Dudamobile will do this
Thanks. Not a fan of duda mobile for a few reasons, but good to know it will do this.

Any others anyone knows of?
Jarrod is offline  
Unread 23rd Jan 2013, 01:53 PM   #5
Senior Warrior Member
War Room Member
 
Steve Solem's Avatar
 
Join Date: 2008
Posts: 1,164
Thanks: 170
Thanked 405 Times in 298 Posts
Default
Re: have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

What methods have you used so far, and what is the main website, Wordpress, html or something else?

I haven't done this myself with a mobile site, but with regular website used to use includes (server side or php) or now iframes I suppose, although that might be tricky if you just want certain content from a page.

Steve Solem is offline  
Unread 23rd Jan 2013, 03:31 PM   #6
HyperActive Warrior
War Room Member
 
Jarrod's Avatar
 
Join Date: 2011
Location: Austin, TX
Posts: 404
Thanks: 165
Thanked 270 Times in 120 Posts
Default
Re: have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

Good question Steve. TBH, not sure what this particular site is. Definitely not wordpress. I know hosting is with godaddy, but not sure what platform they used to build the site. Is there an easy way to tell?
Jarrod is offline  
Unread 23rd Jan 2013, 03:36 PM   #7
HyperActive Warrior
War Room Member
 
cjseven's Avatar
 
Join Date: 2005
Location: Europe
Posts: 239
Thanks: 51
Thanked 92 Times in 57 Posts
Default
Re: have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

Checkout this codecanyon user scripts:

WiseLoop | CodeCanyon

I bought the WP Grab plugin several months ago as a solution to grab content from several sources and display in one website.

I'm 99% sure that could be used to grab content from client pages and display in mobile site.

Some limitations could be a delay between sites updates and some content could not be grabbed such as javascript. To handle text and images should work great.
cjseven is offline  
Unread 23rd Jan 2013, 07:01 PM   #8
Senior Warrior Member
War Room Member
 
Steve Solem's Avatar
 
Join Date: 2008
Posts: 1,164
Thanks: 170
Thanked 405 Times in 298 Posts
Default
Re: have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

Originally Posted by Jedi Jarrod View Post

Good question Steve. TBH, not sure what this particular site is. Definitely not wordpress. I know hosting is with godaddy, but not sure what platform they used to build the site. Is there an easy way to tell?
I would hope you could ask and he'd know what he's using, but usually you can look at the source code and see if its wordpress or another cms if any.

Originally Posted by cjseven View Post

Checkout this codecanyon user scripts:

WiseLoop | CodeCanyon

I bought the WP Grab plugin several months ago as a solution to grab content from several sources and display in one website.

I'm 99% sure that could be used to grab content from client pages and display in mobile site.

Some limitations could be a delay between sites updates and some content could not be grabbed such as javascript. To handle text and images should work great.
That looks real nice, and according to the description seems like it may do what you're looking for Jarrod.

Steve Solem is offline  
Unread 25th Jan 2013, 08:00 AM   #9
Digital Marketer
War Room Member
 
WillR's Avatar
 
Join Date: 2010
Location: Australia
Posts: 12,475
Thanks: 1,984
Thanked 8,187 Times in 4,079 Posts
Default
Re: have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

PHP is the answer to this.

WillR is offline  
Unread 26th Jan 2013, 02:28 AM   #10
HyperActive Warrior
 
Join Date: 2008
Location: Toronto, ON
Posts: 108
Thanks: 11
Thanked 14 Times in 13 Posts
Default
Re: have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

A way to create dynamic mobile sites is via the use of PHP scripting. The code contained in the mobile site can be made to extract current content directly from the standard site.

This can work swimmingly. Because the code in the mobile site makes an HTTP call to the standard site's URL before loading any page, all content extracted, parsed and shown to the viewer is up to date.

The only downside to this is that apart from grabbing the entire page (in the standard site) to display as is on the mobile site, which would defeat the purpose of having a mobile site altogether, the code works when only content (on the standard site) is modified, not the code structure.

This is due to the fact that in order to grab bits and pieces of content (those deemed necessary to appear on the mobile site) within a page on the standard site, the PHP code needs to look for pre-selected HTML tags from which to pull content. If the HTML tags are changed in any form, the code won't work and the mobile site will show errors on some or all its pages. The mobile site will need to be re-coded to work in conjunction with the new code structure.

Hope this helps.

JohnE is offline  
Unread 26th Jan 2013, 04:32 AM   #11
HyperActive Warrior
War Room Member
 
Stewart Alexander's Avatar
 
Join Date: 2006
Location: United Kingdom
Posts: 478
Thanks: 443
Thanked 176 Times in 116 Posts
Blog Entries: 7
Default
Re: have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

A responsive theme might be the way to go. Has it's pros and cons however.
Stewart Alexander is offline  
Unread 26th Jan 2013, 08:59 AM   #12
Anne-Pottinger.com
War Room Member
 
AnniePot's Avatar
 
Join Date: 2009
Location: Anne-Pottinger.com
Posts: 2,788
Thanks: 3,723
Thanked 2,150 Times in 1,135 Posts
Default
Re: have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

WillR seldom blows his own trumpet, but this feature is built in to his very popular WSO: http://www.warriorforum.com/warrior-...ml#post3911233
AnniePot is offline  
Unread 26th Jan 2013, 10:22 AM   #13
HyperActive Warrior
War Room Member
 
Stewart Alexander's Avatar
 
Join Date: 2006
Location: United Kingdom
Posts: 478
Thanks: 443
Thanked 176 Times in 116 Posts
Blog Entries: 7
Default
Re: have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

Originally Posted by AnniePot View Post

WillR seldom blows his own trumpet, but his feature is built in to his very popular WSO: http://www.warriorforum.com/warrior-...ml#post3911233
Nice one Annie,

That's great support for someone who helps a lot of Warriors for free. Good job.
Stewart Alexander is offline  
The Following User Says Thank You to Stewart Alexander For This Useful Post:
Unread 26th Jan 2013, 10:36 AM   #14
DJL
Advanced Warrior
War Room Member
 
DJL's Avatar
 
Join Date: 2008
Location: Texas, USA.
Posts: 577
Thanks: 54
Thanked 248 Times in 164 Posts
Default
Re: have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

I own My Mobile Business from WillR.
Perhaps I missed it somehow, but I do not recall seeing any facility that would automatically update the content of the mobile site after it is deployed.
Please give reference to where this feature may be described.
Originally Posted by AnniePot View Post

WillR seldom blows his own trumpet, but his feature is built in to his very popular WSO: http://www.warriorforum.com/warrior-...ml#post3911233

None are more hopelessly enslaved than those who falsely believe they are free.
--Johann Wolfgang von Goethe, Elective Affinities (1809)
DJL is offline  
Unread 26th Jan 2013, 11:20 AM   #15
Anne-Pottinger.com
War Room Member
 
AnniePot's Avatar
 
Join Date: 2009
Location: Anne-Pottinger.com
Posts: 2,788
Thanks: 3,723
Thanked 2,150 Times in 1,135 Posts
Default
Re: have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

Originally Posted by DJL View Post

I own My Mobile Business from WillR.
Perhaps I missed it somehow, but I do not recall seeing any facility that would automatically update the content of the mobile site after it is deployed.
Please give reference to where this feature may be described.
It's built into the pre-formatted "News" page. It's described in Video #16 in the training videos included with the WSO.
AnniePot is offline  
The Following User Says Thank You to AnniePot For This Useful Post:
Unread 26th Jan 2013, 11:31 AM   #16
DJL
Advanced Warrior
War Room Member
 
DJL's Avatar
 
Join Date: 2008
Location: Texas, USA.
Posts: 577
Thanks: 54
Thanked 248 Times in 164 Posts
Default
Re: have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

Thanks, AnniePot, I do recall that now.
The "News" page can be set up to be updated automatically with new posts; however, other changes on the main site (AFAIK) would not be reflected in the mobile site.
For most users, the News facility would probably handle 90% of their needs.
My Mobile Business, like all of WillR's product, is a gem!
Originally Posted by AnniePot View Post

It's built into the pre-formatted "News" page. It's described in Video #16 in the training videos included with the WSO.

None are more hopelessly enslaved than those who falsely believe they are free.
--Johann Wolfgang von Goethe, Elective Affinities (1809)
DJL is offline  
The Following User Says Thank You to DJL For This Useful Post:
Unread 26th Jan 2013, 01:59 PM   #17
Active Warrior
 
Join Date: 2011
Location: Sarasota, Florida
Posts: 64
Thanks: 16
Thanked 19 Times in 17 Posts
Default
Re: have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

You can pull content from a specific Wordpress page using the code found here:

http://www.thewordpressblog.com/phph...specific-page/

At the beginning of the file you will need to use your sites version of:
require('home/blah/public_html/wp-load.php');

This particular code snippet will pull all of the content, though. Images, videos, everything. That may or may not be what you want.
JacobS is offline  
The Following User Says Thank You to JacobS For This Useful Post:
Unread 27th Jan 2013, 08:34 AM   #18
Digital Marketer
War Room Member
 
WillR's Avatar
 
Join Date: 2010
Location: Australia
Posts: 12,475
Thanks: 1,984
Thanked 8,187 Times in 4,079 Posts
Default
Re: have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

The feature in my template is only for news type pages, it doesn't do it for any page which is what I believe the OP is referring to here.

That's why you will need some type of php solution such as the one the person above me has posted to pull that content and display it elsewhere.

WillR is offline  
Unread 27th Jan 2013, 02:38 PM   #19
HyperActive Warrior
War Room Member
 
Jarrod's Avatar
 
Join Date: 2011
Location: Austin, TX
Posts: 404
Thanks: 165
Thanked 270 Times in 120 Posts
Default
Re: have updates from main site flow directly to mobile site
Share on: 
fb share twitter share gplus share more share

Right Will, that is what I was referring to.

Thanks everyone for the suggestions. Got a couple things to try out. For this particular client, they need to have the project done real quick like so ended up going with duda mobile, but good to have other options here to test out.
Jarrod is offline  
Closed Thread


Bookmarks

Tags
directly, flow, main, mobile, site, updates


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




All times are GMT -6. The time now is 10:00 AM.