Mobile Layout

GK User
Thu Aug 27, 2015 8:51 pm
I am having some trouble with the layout of the twitter feed and the blog intros on mobile devices. Can you direct in how to get them to look like the demo?

Site url: womensluxuryguild.com

Screen shots:
1. Gavick Demo - image005.jpg (for comparison)
2. Site twitter layout - image002.png
3. Site blog layout - image003.png
User avatar
Expert Boarder

GK User
Fri Aug 28, 2015 8:03 am
I don't see such twitter content on our demo server.
User avatar
Moderator

GK User
Wed Sep 02, 2015 10:16 pm
Attached is the Gavick snapshot and a snapshot from my client's website. I would like to emulate the clean layout on the mobile devices. Can you point me in the right direction. I appreciate any help you can offer. Thanks in advance.
User avatar
Expert Boarder

GK User
Fri Sep 04, 2015 4:56 pm
Post Update:
The only pending issue that remains is the twitter feed. The GAVICK Social GK5 would not work properly, so I used another module for the tweets.
Is there a way to better present the twitter feed layout on a mobile device. I like the Gavick Layout in the demo, but if it was contingent upon using the Gavick module, there in lies the problem. Really need your expertise. Thanks in advance. B)
User avatar
Expert Boarder

GK User
Mon Sep 07, 2015 4:39 pm
If you want to make 3rd party module to look like ours - you need to style it on your own. Firebug / chrome dev tools can help you but it is a customisation beyond our technical support.
https://www.gavick.com/documentation/jo ... ss-changes
User avatar
Moderator

GK User
Thu Sep 10, 2015 5:15 pm
Is there support to get the Gavick Social module working so that the corresponding mobile layout can be implemented?
User avatar
Expert Boarder

GK User
Mon Sep 14, 2015 5:44 pm
Could you please describe what kind of issue do you have with GAVICK Social GK5
User avatar
Moderator

GK User
Mon Sep 21, 2015 10:48 pm
It wouldn't pull in the tweets. I used another module and it worked just fine..
User avatar
Expert Boarder

GK User
Fri Sep 25, 2015 1:53 pm
Perhaps it was some issue with configuration, or Twitter changed its API. Do you want to go back to GK plugin or are you fine with current one?
User avatar
Moderator

GK User
Mon Sep 28, 2015 3:48 pm
I would like to use the Gavick extension, so that I can get the mobile layout to work properly. What do you recommend? The module is loaded, but not published (bottom 2 position). Would you take a look? :shock:

The login is as follows:
login: ***
password: ***

Thanks so much! :D
User avatar
Expert Boarder

GK User
Mon Sep 28, 2015 8:53 pm
Never, ever post your credentials on a public forum.

Please send me a PM with:
1. URL to your website
2. login and password of user with admin/super-admin privileges (please create one for me)
3. ftp data (host, user, password)
4. link to this thread
User avatar
Moderator

GK User
Fri Oct 02, 2015 5:53 pm
So basically your Social GK5 module is set (correct twitter api keys are provided) and only thing I need to do is to enable it and check why it is not working?
User avatar
Moderator

GK User
Fri Oct 02, 2015 8:44 pm
Yes Cyberek. That's what I am asking.
User avatar
Expert Boarder

GK User
Wed Oct 07, 2015 4:04 pm
Ok, sorry for late response. Your data was provided to our devteam so as soon as somebody verifies why the module doesn't work as expected, I'll let you know.
User avatar
Moderator

GK User
Thu Oct 08, 2015 3:14 pm
Now its working fine.
1. You had data source set to Facebook instead of Twitter
2. Smal patch which is going to be release d soon was needed (due to changes in twitter api)
In:
gk_university/html/mod_social_gk5/twitterTweets.php
file:
Code: Select all
<img src="<?php echo $this->pData[$i]->avatar; ?>" alt="<?php echo $this->pData[$i]->name; ?>" />

needed to be replaced with this one:
Code: Select all
<img src="<?php echo $this->pData[$i]['avatar']; ?>" alt="<?php echo $this->pData[$i]['name']; ?>" />

and:
Code: Select all
<a href="<?php echo 'http://twitter.com/'.$this->pData[$i]->url; ?>"><?php echo $this->pData[$i]->username; ?></a>

with:
Code: Select all
<a href="<?php echo 'http://twitter.com/'.$this->pData[$i]['url']; ?>"><?php echo $this->pData[$i]['username']; ?></a>

and:
Code: Select all
<small><?php echo $this->pData[$i]->name; ?></small>

with:
Code: Select all
<small><?php echo $this->pData[$i]['name']; ?></small>
User avatar
Moderator

GK User
Mon Oct 12, 2015 6:12 pm
Thanks so much Cyberek.

The only question I have now is why it is only displaying 2 tweets as opposed to four as indicated. It is set to 4 tweets and 1 row with 4 columns.

NOTE: I unpublished the Gavick module and republished the other. (Client is very particular). I would love to get this resolved. Almost there...

Thank you again for ALL of your help. :woohoo:
User avatar
Expert Boarder

GK User
Mon Oct 12, 2015 6:43 pm
Our current implementation doesn't work well with rarely twitted messages. This way if you don't twit at lest few times a week, our module won't gather this data correctly. In that case it seems your alternative module gathers this data better.
User avatar
Moderator

GK User
Mon Oct 12, 2015 11:03 pm
Okay, I can share that with the client, and either she will tweet more often, or I can have it feed two tweets at a time. Thanks for all of your help!
User avatar
Expert Boarder

GK User
Tue Oct 13, 2015 7:29 pm
No problem and sorry it took so long.
User avatar
Moderator


cron