Page 75 of 85 FirstFirst ... 25657374757677 ... LastLast
Results 741 to 750 of 842
  1. #741
    Join Date
    Sep 2014
    Location
    siena
    Posts
    7
    Plugin Contributions
    0

    Default Re: Sheffield Blue Template Support Thread

    Quote Originally Posted by picaflor-azul View Post
    As with any template package, if you want to use it in a language other than what is included, you need to copy the template language files to your new language and translate them.

    Thanks,

    Anne
    Ok, in which file or position I find these voices Quick links-- shop brands about us, where this voice in file system, and contact information--information--customer support? and as I do to translate her for every single language that I choose?

  2. #742
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Sheffield Blue Template Support Thread

    Quote Originally Posted by jackalxp5b View Post
    Ok, in which file or position I find these voices Quick links-- shop brands about us, where this voice in file system, and contact information--information--customer support? and as I do to translate her for every single language that I choose?
    Did you look in the files in the languages folder of the template package? There are instructions for editing these in the readme.html file.

    Thanks,

    Anne

  3. #743
    Join Date
    Sep 2014
    Location
    siena
    Posts
    7
    Plugin Contributions
    0

    Default Re: Sheffield Blue Template Support Thread

    I don't know if the packet of languages, I am correct I have unloaded him from the site zencart, last version but those voices of the menu, really I don't succeed in finding her...

  4. #744
    Join Date
    Sep 2014
    Location
    siena
    Posts
    7
    Plugin Contributions
    0

    Default Re: Sheffield Blue Template Support Thread

    I don't succeed in finding in the files the words to translate in the menu, the first menu aloft...

  5. #745
    Join Date
    Sep 2014
    Location
    siena
    Posts
    7
    Plugin Contributions
    0

    Default Re: Sheffield Blue Template Support Thread

    I don't have this file readme...in any position...

  6. #746
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Sheffield Blue Template Support Thread

    Quote Originally Posted by jackalxp5b View Post
    I don't have this file readme...in any position...
    The readme.html file is included in the template package.

    Thanks,

    Anne

  7. #747
    Join Date
    Sep 2014
    Location
    siena
    Posts
    7
    Plugin Contributions
    0

    Default Re: Sheffield Blue Template Support Thread

    Ok, i have resolved this problem....but i i have another...
    In this file:

    <?php
    /**
    * Page Template
    *
    * Main index page<br />
    * Displays greetings, welcome text (define-page content), and various centerboxes depending on switch settings in Admin<br />
    * Centerboxes are called as necessary
    *
    * @package templateSystem
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: tpl_index_default.php 3464 2006-04-19 00:07:26Z ajeh $
    */
    ?>

    <script type="text/javascript">
    $(document).ready(function() {
    $('a.moduleBox').click(function() { // show selected module(s)
    // variables
    var popID = $(this).attr('rel');
    var popNAV = $(this).attr('class');
    // clear out menu styles and apply active
    $('a.moduleBox').css('background', '');
    $(this).css('background', '');
    // hide all wrappers and display the one selected
    $('.centerBoxWrapper').hide();
    // check if all or single selection
    if (popID != 'viewAll') {
    $('#' + popID).show();
    } else {
    $('.centerBoxWrapper').show();
    }
    });
    });
    </script>

    <div class="centerColumn" id="indexDefault">
    <h1 id="indexDefaultHeading"><?php echo HEADING_TITLE; ?></h1>

    <?php if (SHOW_CUSTOMER_GREETING == 1) { ?>
    <h2 class="greeting"><?php echo zen_customer_greeting(); ?></h2>
    <?php } ?>

    <!-- deprecated - to use uncomment this section
    <?php if (TEXT_MAIN) { ?>
    <div id="" class="content"><?php echo TEXT_MAIN; ?></div>
    <?php } ?>-->

    <!-- deprecated - to use uncomment this section
    <?php if (TEXT_INFORMATION) { ?>
    <div id="" class="content"><?php echo TEXT_INFORMATION; ?></div>
    <?php } ?>-->

    <?php if (DEFINE_MAIN_PAGE_STATUS >= 1 and DEFINE_MAIN_PAGE_STATUS <= 2) { ?>
    <?php
    /**
    * get the Define Main Page Text
    */
    ?>
    <div id="indexDefaultMainContent" class="content"><?php require($define_page); ?></div>
    <?php } ?>


    <div id="moduleMenu-wrapper">
    <?php
    // bof module navigation
    $show_display_nav = $db->Execute(SQL_SHOW_PRODUCT_INFO_MAIN);
    if ($this_is_home_page) {
    echo '';
    }
    echo '<div id="moduleMenu">';
    while (!$show_display_nav->EOF) {
    switch ($show_display_nav->fields['configuration_key']) {
    case 'SHOW_PRODUCT_INFO_MAIN_FEATURED_PRODUCTS':
    echo '<span class="navOne moduleSpan"><a href="javascript:void(0)" rel="featuredProducts" class="navOne moduleBox">Futuri</a></span>';
    break;
    case 'SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS':
    echo '<span class="navThree moduleSpan"><a href="javascript:void(0)" rel="specialsDefault" class="navThree moduleBox">Speciali</a></span>';
    break;
    case 'SHOW_PRODUCT_INFO_MAIN_NEW_PRODUCTS':
    echo '<span class="navTwo moduleSpan"><a href="javascript:void(0)" rel="whatsNew" class="navTwo moduleBox">Nuovi</a></span>';
    break;
    }
    $show_display_nav->MoveNext();
    }
    //echo '<span id="navFour" class="moduleSpan"><a href="javascript:void(0)" id="navFour" rel="viewAll" class="moduleBox">All</a></span>';
    echo '<br class="clearBoth" />';
    echo '</div>';
    // eof module navigation

    The package Language don't translate these words in the menu: New Featur Special...how translate them in automatic another language??

    And how can I move to the right the central menu?

  8. #748
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Sheffield Blue Template Support Thread

    Quote Originally Posted by jackalxp5b View Post
    Ok, i have resolved this problem....but i i have another...
    In this file:

    <?php
    /**
    * Page Template
    *
    * Main index page<br />
    * Displays greetings, welcome text (define-page content), and various centerboxes depending on switch settings in Admin<br />
    * Centerboxes are called as necessary
    *
    * @package templateSystem
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: tpl_index_default.php 3464 2006-04-19 00:07:26Z ajeh $
    */
    ?>

    <script type="text/javascript">
    $(document).ready(function() {
    $('a.moduleBox').click(function() { // show selected module(s)
    // variables
    var popID = $(this).attr('rel');
    var popNAV = $(this).attr('class');
    // clear out menu styles and apply active
    $('a.moduleBox').css('background', '');
    $(this).css('background', '');
    // hide all wrappers and display the one selected
    $('.centerBoxWrapper').hide();
    // check if all or single selection
    if (popID != 'viewAll') {
    $('#' + popID).show();
    } else {
    $('.centerBoxWrapper').show();
    }
    });
    });
    </script>

    <div class="centerColumn" id="indexDefault">
    <h1 id="indexDefaultHeading"><?php echo HEADING_TITLE; ?></h1>

    <?php if (SHOW_CUSTOMER_GREETING == 1) { ?>
    <h2 class="greeting"><?php echo zen_customer_greeting(); ?></h2>
    <?php } ?>

    <!-- deprecated - to use uncomment this section
    <?php if (TEXT_MAIN) { ?>
    <div id="" class="content"><?php echo TEXT_MAIN; ?></div>
    <?php } ?>-->

    <!-- deprecated - to use uncomment this section
    <?php if (TEXT_INFORMATION) { ?>
    <div id="" class="content"><?php echo TEXT_INFORMATION; ?></div>
    <?php } ?>-->

    <?php if (DEFINE_MAIN_PAGE_STATUS >= 1 and DEFINE_MAIN_PAGE_STATUS <= 2) { ?>
    <?php
    /**
    * get the Define Main Page Text
    */
    ?>
    <div id="indexDefaultMainContent" class="content"><?php require($define_page); ?></div>
    <?php } ?>


    <div id="moduleMenu-wrapper">
    <?php
    // bof module navigation
    $show_display_nav = $db->Execute(SQL_SHOW_PRODUCT_INFO_MAIN);
    if ($this_is_home_page) {
    echo '';
    }
    echo '<div id="moduleMenu">';
    while (!$show_display_nav->EOF) {
    switch ($show_display_nav->fields['configuration_key']) {
    case 'SHOW_PRODUCT_INFO_MAIN_FEATURED_PRODUCTS':
    echo '<span class="navOne moduleSpan"><a href="javascript:void(0)" rel="featuredProducts" class="navOne moduleBox">Futuri</a></span>';
    break;
    case 'SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS':
    echo '<span class="navThree moduleSpan"><a href="javascript:void(0)" rel="specialsDefault" class="navThree moduleBox">Speciali</a></span>';
    break;
    case 'SHOW_PRODUCT_INFO_MAIN_NEW_PRODUCTS':
    echo '<span class="navTwo moduleSpan"><a href="javascript:void(0)" rel="whatsNew" class="navTwo moduleBox">Nuovi</a></span>';
    break;
    }
    $show_display_nav->MoveNext();
    }
    //echo '<span id="navFour" class="moduleSpan"><a href="javascript:void(0)" id="navFour" rel="viewAll" class="moduleBox">All</a></span>';
    echo '<br class="clearBoth" />';
    echo '</div>';
    // eof module navigation

    The package Language don't translate these words in the menu: New Featur Special...how translate them in automatic another language??

    And how can I move to the right the central menu?

    You will need to create constants for the text and then define them in one of your language files. This has been fixed in the Responsive Avonlee Contempo template package so you can use it as a guide.

    Thanks,

    Anne

  9. #749
    Join Date
    Sep 2014
    Location
    siena
    Posts
    7
    Plugin Contributions
    0

    Default Re: Sheffield Blue Template Support Thread

    You will need to create constants for the text and then define them in one of your language files = How i create this constants??i'n not good programmer of php...you show me how??

  10. #750
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Sheffield Blue Template Support Thread

    Quote Originally Posted by jackalxp5b View Post
    You will need to create constants for the text and then define them in one of your language files = How i create this constants??i'n not good programmer of php...you show me how??
    As I said in my other post,:

    his has been fixed in the Responsive Avonlee Contempo template package so you can use it as a guide.
    Thanks,

    Anne

 

 
Page 75 of 85 FirstFirst ... 25657374757677 ... LastLast

Similar Threads

  1. v151 Responsive Sheffield Blue v1.0
    By picaflor-azul in forum Addon Templates
    Replies: 1159
    Last Post: 23 Apr 2023, 01:20 AM
  2. v155 Column issues on Product Listings with Sheffield Blue template
    By wmorris in forum General Questions
    Replies: 4
    Last Post: 15 Apr 2016, 10:01 PM
  3. Replies: 5
    Last Post: 30 May 2014, 02:43 AM
  4. v151 Blue Admin [Support Thread]
    By vvomble in forum Addon Templates
    Replies: 11
    Last Post: 27 May 2013, 09:43 PM
  5. Gingham Blue Template Support Thread
    By LissaE in forum Addon Templates
    Replies: 9
    Last Post: 17 Apr 2009, 10:19 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR