Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other How could I integrate Google reviews into a membership site so I can respond?

  • This topic is empty.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #248209
    iizag
    Participant

    I want to know how I can make the following :

    I use WordPress.

    Let’s say I make it a locked site only for me.

    How can I add Google reviews, yelp reviews etc. to a page that will display all my business reviews in one organized location in which I will also be able to reply from without needed To go to a different site to respond

    #248225
    Shikkediel
    Participant

    By using iframes maybe?

    #248472
    I.m.learning
    Participant

    Curious to know if using JSON with AJAX would work.

    I came across this while looking into options for my own site:

    $.ajax(
    type:’GET’,
    url:”http://example.com/users/feeds/”,
    data:”format=json&id=123″,
    success:function(feed) {
    document.write(feed);
    },
    dataType:’jsonp’
    );

    #248475
    Shikkediel
    Participant

    I think you might be able to show active feeds on a site (if cross domain origin is allowed) but you won’t be able to post anything. Not that I still think that’s likely possible with an iframe. I haven’t ever actually tried but suspect it might generally be a security risk because the parent site could see what you’re typing. Same domain it’ll work though, I’ve embedded a contact page in an iframe before.

    #248822
    iizag
    Participant

    Thanks for all the responses. It sucks that doing this seems so complicated lol I noticed though that there are some websites offering this service for a monthly fee. Basically, you sign up and then you have a dashboard with all of your business reviews, besides being able to view them all in one place organized, you can also respond right there from the site’s dashboard instead of having to sign in and go to all the individual links.

    I wanted to do this myself without paying and just using wordpress. Guess not ! lol Seems super complicated to me, and it seems that I actually would have to pay for like using googles API to do this when I did some research. So, either way, theirs no escaping a monthly fee.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘Other’ is closed to new topics and replies.