Page 86 of 152 FirstFirst ... 3676848586878896136 ... LastLast
Results 851 to 860 of 1518
  1. #851
    Join Date
    Mar 2016
    Posts
    1
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue V 2.0!

    please help any free way of adding a credit card payment option onto my site ?

  2. #852
    Join Date
    Sep 2005
    Location
    Ocala, FL
    Posts
    494
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue V 2.0!

    Quote Originally Posted by SilverHD View Post
    rbarbour:



    I had that problem too. Thanks to you, it is now resolved.

    Thanks again,

    Silver
    Thank you everyone Just fixed it by following rbarbour steps. Thank you Silver for enlightening me, I thought I searched high in low in the thread.
    Looks great: http://gelcandlecompany.com/classic-...orals-c-92_79/
    Doesn't help if missing pics and I probably should have all images about the same size would help.

    Thanks again everyone for helping.

  3. #853
    Join Date
    Feb 2010
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Responsive Sheffield Blue V 2.0!

    Use matchHeight, it was included in v1.55 responsive_classic

    copy
    Code:
    /includes/templates/responsive_classic/jscript/jscript_matchHeight-min.js
    to
    Code:
    /includes/templates/responsive_sheffield_blue/jscript/jscript_matchHeight-min.js
    add to:
    Code:
    /includes/templates/responsive_sheffield_blue/jscript/jscript_responsive_framework.php
    Code:
    $('.centerBoxContentsProducts').matchHeight();
    You can duplicate above including the selector for all the different boxes
    Quote Originally Posted by spawnie69 View Post
    Thank you everyone Just fixed it by following rbarbour steps. Thank you Silver for enlightening me, I thought I searched high in low in the thread.
    Looks great: http://gelcandlecompany.com/classic-...orals-c-92_79/
    Doesn't help if missing pics and I probably should have all images about the same size would help.

    Thanks again everyone for helping.

  4. #854
    Join Date
    Feb 2008
    Posts
    529
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue V 2.0!

    Quote Originally Posted by rbarbour View Post
    Use matchHeight, it was included in v1.55 responsive_classic

    copy
    Code:
    /includes/templates/responsive_classic/jscript/jscript_matchHeight-min.js
    to
    Code:
    /includes/templates/responsive_sheffield_blue/jscript/jscript_matchHeight-min.js
    add to:
    Code:
    /includes/templates/responsive_sheffield_blue/jscript/jscript_responsive_framework.php
    Code:
    $('.centerBoxContentsProducts').matchHeight();
    You can duplicate above including the selector for all the different boxes
    I don't see /jscript_reposnsive_framework.php in the Resp Sheffield Blue flies - so should that file be copied over from /responsive_classic? I see the latter has the bit of matchHeight code in it.

    I do have /jscript_framework.php in the Sheffield folder, the original being replaced by the file from /template_default as per Dr Byte earlier suggestion in this forum.

  5. #855
    Join Date
    Feb 2010
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Responsive Sheffield Blue V 2.0!

    My mistake,

    /jscript_reposnsive_framework.php isn't part of this version. Copying it may create some some issues.

    Do not copy:
    Code:
    /includes/templates/responsive_sheffield_blue/jscript/jscript_responsive_framework.php
    create:
    Code:
    /includes/templates/responsive_sheffield_blue/jscript/jscript_matchHeight.php
    and add:
    PHP Code:
    <?php
    /**
     * @package templateSystem
     * @copyright Copyright 2003-2016 Zen Cart Development Team
     * @license [url]http://www.zen-cart.com/license/2_0.txt[/url] GNU Public License V2.0
     * @version ZCA/GIT: $Id: rbarbour New for v1.5.5 $
     */
    ?>


    <?php if ( $detect->isMobile() && !$detect->isTablet() && $_SESSION['layoutType'] == 'full' || $detect->isTablet() && $_SESSION['layoutType'] == 'full' ){ ?>

    <script type="text/javascript"><!--//
    (function($) {
    $(document).ready(function() {

    $('.centerBoxContentsProducts').matchHeight();


      });
    }) (jQuery);
    //--></script>
    Quote Originally Posted by soxophoneplayer View Post
    I don't see /jscript_reposnsive_framework.php in the Resp Sheffield Blue flies - so should that file be copied over from /responsive_classic? I see the latter has the bit of matchHeight code in it.

    I do have /jscript_framework.php in the Sheffield folder, the original being replaced by the file from /template_default as per Dr Byte earlier suggestion in this forum.

  6. #856
    Join Date
    Feb 2008
    Posts
    529
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue V 2.0!

    Quote Originally Posted by rbarbour View Post
    My mistake,

    /jscript_reposnsive_framework.php isn't part of this version. Copying it may create some some issues.

    Do not copy:
    Code:
    /includes/templates/responsive_sheffield_blue/jscript/jscript_responsive_framework.php
    create:
    Code:
    /includes/templates/responsive_sheffield_blue/jscript/jscript_matchHeight.php
    and add:
    PHP Code:
    <?php
    /**
     * @package templateSystem
     * @copyright Copyright 2003-2016 Zen Cart Development Team
     * @license [url]http://www.zen-cart.com/license/2_0.txt[/url] GNU Public License V2.0
     * @version ZCA/GIT: $Id: rbarbour New for v1.5.5 $
     */
    ?>


    <?php if ( $detect->isMobile() && !$detect->isTablet() && $_SESSION['layoutType'] == 'full' || $detect->isTablet() && $_SESSION['layoutType'] == 'full' ){ ?>

    <script type="text/javascript"><!--//
    (function($) {
    $(document).ready(function() {

    $('.centerBoxContentsProducts').matchHeight();


      });
    }) (jQuery);
    //--></script>
    Saved above code (and nothing else) in new file /includes/templates/responsive_sheffield_blue/jscript/jscript_matchHeight.php
    Copied /includes/templates/responsive_classic/jscript/jscript_matchHeight-min.js into the sheffield blue jscript folder
    Did not copy /includes/templates/responsive_sheffield_blue/jscript/jscript_responsive_framework.php

    Breaks site. Logs give an unanticipated ending on line #22 (final line) of the above code. Did I misunderstand?

  7. #857
    Join Date
    Feb 2010
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Responsive Sheffield Blue V 2.0!

    No, I did a copy paste error.

    PHP Code:
    <?php
    /**
     * @package templateSystem
     * @copyright Copyright 2003-2016 Zen Cart Development Team
     * @license [url]http://www.zen-cart.com/license/2_0.txt[/url] GNU Public License V2.0
     * @version ZCA/GIT: $Id: rbarbour New for v1.5.5 $
     */
    ?>

    <script type="text/javascript"><!--//
    (function($) {
    $(document).ready(function() {

    $('.centerBoxContentsProducts').matchHeight();


      });
    }) (jQuery);
    //--></script>
    Quote Originally Posted by soxophoneplayer View Post
    Saved above code (and nothing else) in new file /includes/templates/responsive_sheffield_blue/jscript/jscript_matchHeight.php
    Copied /includes/templates/responsive_classic/jscript/jscript_matchHeight-min.js into the sheffield blue jscript folder
    Did not copy /includes/templates/responsive_sheffield_blue/jscript/jscript_responsive_framework.php

    Breaks site. Logs give an unanticipated ending on line #22 (final line) of the above code. Did I misunderstand?

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

    Default Re: Responsive Sheffield Blue V 2.0!

    Quote Originally Posted by Viljoesj View Post
    please help any free way of adding a credit card payment option onto my site ?
    I am not sure what you mean by "free" (all payment processing companies will be charging fees) but zen cart comes with several payment modules built in. See admin--modules--payment

    Thanks,

    Anne

  9. #859
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,378
    Plugin Contributions
    9

    Default Re: Responsive Sheffield Blue V 2.0!

    I know that this template is being updated as time permits ... but has anyone already successfully applied the changes as advised in thread https://www.zen-cart.com/showthread....rk-with-v1-5-5 to make this template working in ZC 1.5.5 ?

  10. #860
    Join Date
    Feb 2010
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Responsive Sheffield Blue V 2.0!

    Frank, I have done it!

    You can see it on v1.5.5 here.

    Quote Originally Posted by frank18 View Post
    I know that this template is being updated as time permits ... but has anyone already successfully applied the changes as advised in thread https://www.zen-cart.com/showthread....rk-with-v1-5-5 to make this template working in ZC 1.5.5 ?

 

 

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 Responsive Classic vs Responsive Sheffield Blue vs ?
    By Zean in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 13 May 2016, 07:01 AM
  3. v154 Responsive Sheffield Blue change menu links
    By Annie_zaz in forum Addon Templates
    Replies: 3
    Last Post: 7 May 2016, 11:33 PM
  4. v154 Responsive Sheffield Blue v.2.0 Pricing not showing
    By SilverHD in forum Addon Templates
    Replies: 13
    Last Post: 4 Nov 2015, 10:57 PM
  5. v154 Questions re: Responsive Sheffield Blue
    By dfontana in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 14 Aug 2015, 02:43 AM

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