Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • saipan Friend
    #173876

    Hi,

    I’m running J1.5 with T3 Framework v1.3.3. I tried to upgrade the framework to the latest version via extension manager but when I clicked on “Check Update” it says there’s no new update available.

    I also noticed v1.6 mentioned, but I can’t seem to find that on the site. I only see version 2.0.

    Can anyone tell me what’s the latest Framework release version and how can I update mine to the latest?

    I’m having some problems with mobile layouts with my Teline IV template and I was wondering whether the Framework is the problem.

    Any advise would be appreciated. Thanks.

    Dan

    pixelzombie Friend
    #438268

    Hi Dan,

    here’s the link to the T3 Framework for J1.5 http://www.joomlart.com/forums/downloads.php?do=cat&id=317 and as you can see, the latest version is 1.3.3.

    On the download page of Teline IV J1.5 Edition http://www.joomlart.com/forums/downloads.php?do=cat&id=10381 the latest version is 1.2.5 so I think you allready have the latest version installed.

    Maybe you want to describe your problem with the mobile layout a bit more. I’m going to help you wherever I can.

    Cheers

    Frank

    saipan Friend
    #438362

    H Frank,

    OK, so I guess I have the latest version. About the mobile issue, when I view my site on my Ipad, the width does not fit correctly – meaning it kinda got squeezed inward. My site width is set to AUTO and I’m viewing the site on my Ipad in Desktop mode.

    On my Blackberry, the mobile template comes up but there are no articles showing unless I select a category on the pull down menu. I want to be able to have the stories visible as soon as I connect to the site.

    If you need to a look at the site, let me know and I’ll give you the login info. Thanks.

    Dan
    <em>@pixelzombie 300520 wrote:</em><blockquote>Hi Dan,

    here’s the link to the T3 Framework for J1.5 http://www.joomlart.com/forums/downloads.php?do=cat&id=317 and as you can see, the latest version is 1.3.3.

    On the download page of Teline IV J1.5 Edition http://www.joomlart.com/forums/downloads.php?do=cat&id=10381 the latest version is 1.2.5 so I think you allready have the latest version installed.

    Maybe you want to describe your problem with the mobile layout a bit more. I’m going to help you wherever I can.

    Cheers

    Frank</blockquote>

    pixelzombie Friend
    #438363

    Hi Dan,

    I’ll take a look, please give me the site details. PM is okay if you don’t want to share it in public.

    Cheers

    Frank

    pixelzombie Friend
    #439011

    Okay, I had a look and it seems that somehow this code is called:


    body.bd .main {width: 84%;}
    body.bd #ja-wrapper {min-width: 84%;}

    That’s why the page isn’t full width and gets scrumbled on your iPad or small browser window.
    To fix it, add this to you template.css


    body.bd .main {width: 100% !important;}
    body.bd #ja-wrapper {min-width: 100% !important;}

    About the iPhone, It can’t display any articles because your menu item “home” is a frontpage-item with every option set to 0.
    You’ll have to put some numbers in # Leading, # Intro, #Columns and # Links. Otherwise the page will be blank on iPhone.

    I hope this solves your problems.

    Cheers

    Frank

    saipan Friend
    #442485

    Hi Frank,

    Thanks for the suggestions in fixing my width issue. Now, my problem remains with the width issue, however, more in the mobile sense. For example, the fix that you gave me allowed my site to show up nicely on my Ipad. What I would like to do is on my desktop, I don’t want the width to be 100%, perhaps at least 85%. On my Ipad, I want to be 100%. Is there a way to have the template detect that’s it an Ipad and have it set to 100% and if it’s a desktop, 85%?

    Also, I have a slideshow on ‘slideshow’ module position. When on the desktop, and my width for my site is 1000 pixel, for example, I set the image for the slideshow to 1000 pixel to fit nicely on the site. However, when I’m on my Ipad, the width of the image does not auto resize to fit the width of the site on my Ipad. Is there a way to fix this problem? If not, the other option is to disable slideshow from showing up on any mobile device including the Ipad but show up on desktop computers. Is this possible?

    I hope you understand my issue here and able to assist. Thanks for your excellent advise so far.

    Dan

    pixelzombie Friend
    #443034

    Hi Saipan,

    the T3 Framework is not able to load a custom layout / profile for iPad devices. I’m working on a tutorial how to add this feature of creating custom settings just for iPad (as you do with iPhone).

    Same goes for the slideshow. You will need to have a module that shows on desktop browsers and a module that shows on iPad only or prevent the module to be displayed on iPad. This could be done with a custom layout for iPad (as mentioned above) or you install Advanced Module Manager from http://www.nonumber.nl and put this code into the php evaluation setting


    // Get the user agent

    $user_agent = $_SERVER['HTTP_USER_AGENT'];

    // Create an array of known mobile user agents
    // This list is from the 21 October 2010 WURFL File.
    // Most mobile devices send a pretty standard string that can be covered by
    // one of these. I believe I have found all the agents (as of the date above)
    // that do not and have included them below. If you use this function, you
    // should periodically check your list against the WURFL file, available at:
    // http://wurfl.sourceforge.net/

    $mobile_agents = Array(

    "iPad",
    );

    // Pre-set $is_mobile to false.

    $is_mobile = false;

    // Cycle through the list in $mobile_agents to see if any of them
    // appear in $user_agent.

    foreach ($mobile_agents as $device) {

    // Check each element in $mobile_agents to see if it appears in
    // $user_agent. If it does, set $is_mobile to true.

    if (stristr($user_agent, $device)) {

    $is_mobile = true;

    // break out of the foreach, we don't need to test
    // any more once we get a true value.

    break;
    }
    }

    return $is_mobile;

    Cheers

    Frank

    saipan Friend
    #443065

    Thanks for the reply Pixelzombie.

    I understand now on how to not load the module on mobile devices including the Ipad. I like that Advanced Module Manager idea. However, I’m still having issues with the width on the Ipad. The fix that you gave me a while back did work but it allowed the width to be 100%. It works great on the Ipad, but on the desktop, I’d like it to be at least 85%. Is this possible?

    Thanks again for your assistance.

    Daniel

    pixelzombie Friend
    #443378

    Hey Saipan,

    as I wrote earlier:

    <blockquote>the T3 Framework is not able to load a custom layout / profile for iPad devices. I’m working on a tutorial how to add this feature of creating custom settings just for iPad (as you do with iPhone).</blockquote>

    This is crucial to make a different layouts (100% and 80% width) for desktop and iPad devices.

    I’ll let you know when it’s done 😉

    saipan Friend
    #443535

    Hi Frank,

    I did as you describe below but still no articles are showing up. I check the site with Blackberry phone and still no articles. Any ideas?

    Thanks.

    Daniel

    <em>@pixelzombie 301525 wrote:</em><blockquote>Okay, I had a look and it seems that somehow this code is called:

    About the iPhone, It can’t display any articles because your menu item “home” is a frontpage-item with every option set to 0.
    You’ll have to put some numbers in # Leading, # Intro, #Columns and # Links. Otherwise the page will be blank on iPhone.

    </blockquote>

    pixelzombie Friend
    #443948

    Hi Daniel,

    I can’t access your site anymore. Could you please send me the updated login details again? The Blackberry should load the handheld template by default, and not the iPhone template. How does the site look on your blackberry? A Screenshot could be useful 😉

    Thanks

    Frank

Viewing 11 posts - 1 through 11 (of 11 total)

This topic contains 11 replies, has 2 voices, and was last updated by  pixelzombie 12 years, 7 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum