Page 13 of 53 FirstFirst ... 3111213141523 ... LastLast
Results 121 to 130 of 527
  1. #121
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Stirling Grand Responsive Template

    Quote Originally Posted by tadattadat View Post
    But this disappears

    Attachment 13495
    Check to be sure that you have all of the template files installed in the correct folders. If you have made modifications to the template, backtrack your steps to find where the problem started.

    Thanks,

    Anne

  2. #122
    Join Date
    Oct 2006
    Location
    Italy
    Posts
    634
    Plugin Contributions
    0

    Default Re: Stirling Grand Responsive Template

    I've just installed your great template!
    I've add a sql file into fresh 1.5.1, and "ACTIVATE Responsive Template by selecting Column Widths" menu was to 0 gid configuration (I change directly into phpmyadmin)
    And if I active sideboxes/stirling_grand/ezpages_drop_menu.php into sidebox setting, I've this error on dropdown: WARNING: An Error occurred, please refresh the page and try again.

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

    Default Re: Stirling Grand Responsive Template

    Quote Originally Posted by 100asa View Post
    I've just installed your great template!
    I've add a sql file into fresh 1.5.1, and "ACTIVATE Responsive Template by selecting Column Widths" menu was to 0 gid configuration (I change directly into phpmyadmin)
    And if I active sideboxes/stirling_grand/ezpages_drop_menu.php into sidebox setting, I've this error on dropdown: WARNING: An Error occurred, please refresh the page and try again.
    Do you have any of our other responsive templates installed?

    Thanks,

    Anne

  4. #124
    Join Date
    Oct 2006
    Location
    Italy
    Posts
    634
    Plugin Contributions
    0

    Default Re: Stirling Grand Responsive Template

    Zencart is fresh install
    http://www.100asa.it/newcart/

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

    Default Re: Stirling Grand Responsive Template

    Quote Originally Posted by 100asa View Post
    I've just installed your great template!
    I've add a sql file into fresh 1.5.1, and "ACTIVATE Responsive Template by selecting Column Widths" menu was to 0 gid configuration (I change directly into phpmyadmin)
    And if I active sideboxes/stirling_grand/ezpages_drop_menu.php into sidebox setting, I've this error on dropdown: WARNING: An Error occurred, please refresh the page and try again.
    See the readme.html file included in the template package for the complete, step by step, installation instructions.

    Thanks,

    Anne

  6. #126
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,371
    Plugin Contributions
    94

    Default Re: Stirling Grand Responsive Template

    The stirling_grand.sql file has a couple of configuration values that aren't being set properly, given that the "configuration_value" field is a variable-character one. In each case where the value is set to false, the configuration_value is set to 0; when set to true, the result is 1.
    Code:
    UPDATE configuration SET configuration_value = false WHERE configuration_key = 'PRODUCT_LIST_ALPHA_SORTER';
    UPDATE configuration SET configuration_value = false WHERE configuration_key = 'PRODUCT_LIST_CATEGORIES_IMAGE_STATUS';
    UPDATE configuration SET configuration_value = false WHERE configuration_key = 'PRODUCT_LIST_CATEGORIES_IMAGE_STATUS_TOP';
    UPDATE configuration SET configuration_value = 0 WHERE configuration_key = 'PRODUCT_LIST_DESCRIPTION';
    UPDATE configuration SET configuration_value = 0 WHERE configuration_key = 'PRODUCT_LIST_FILTER';
    UPDATE configuration SET configuration_value = 1 WHERE configuration_key = 'PRODUCT_INFO_CATEGORIES_IMAGE_STATUS';
    UPDATE configuration SET configuration_value = true WHERE configuration_key = 'USE_SPLIT_LOGIN_MODE';
    The SQL conversion magically handles the numeric inputs, but these "real" character values should be set as:
    Code:
    UPDATE configuration SET configuration_value = 'false' WHERE configuration_key = 'PRODUCT_LIST_ALPHA_SORTER';
    UPDATE configuration SET configuration_value = 'false' WHERE configuration_key = 'PRODUCT_LIST_CATEGORIES_IMAGE_STATUS';
    UPDATE configuration SET configuration_value = 'false' WHERE configuration_key = 'PRODUCT_LIST_CATEGORIES_IMAGE_STATUS_TOP';
    UPDATE configuration SET configuration_value = 0 WHERE configuration_key = 'PRODUCT_LIST_DESCRIPTION';
    UPDATE configuration SET configuration_value = 0 WHERE configuration_key = 'PRODUCT_LIST_FILTER';
    UPDATE configuration SET configuration_value = 1 WHERE configuration_key = 'PRODUCT_INFO_CATEGORIES_IMAGE_STATUS';
    UPDATE configuration SET configuration_value = 'True' WHERE configuration_key = 'USE_SPLIT_LOGIN_MODE';
    Note also the initial capitalization for the USE_SPLIT_LOGIN_MODE value.

  7. #127
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,371
    Plugin Contributions
    94

    Default Re: Stirling Grand Responsive Template

    Another minor issue: /includes/templates/stirling_grand/common/tpl_header.php hasn't been updated for the PHP 5.4+ changes to htmlspecialchars. The following code fragment towards the top of the file:
    Code:
      // Display all header alerts via messageStack:
      if ($messageStack->size('header') > 0) {
        echo $messageStack->output('header');
      }
      if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
      echo htmlspecialchars(urldecode($_GET['error_message']));
      }
      if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
       echo htmlspecialchars($_GET['info_message']);
    } else {
    
    }
    needs to be changed to
    Code:
      // Display all header alerts via messageStack:
      if ($messageStack->size('header') > 0) {
        echo $messageStack->output('header');
      }
      if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
      echo htmlspecialchars(urldecode($_GET['error_message']), ENT_COMPAT, CHARSET, TRUE);
      }
      if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
       echo htmlspecialchars($_GET['info_message'], ENT_COMPAT, CHARSET, TRUE);
    } else {
    
    }

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

    Default Re: Stirling Grand Responsive Template

    Quote Originally Posted by lat9 View Post
    The stirling_grand.sql file has a couple of configuration values that aren't being set properly, given that the "configuration_value" field is a variable-character one. In each case where the value is set to false, the configuration_value is set to 0; when set to true, the result is 1.
    Code:
    UPDATE configuration SET configuration_value = false WHERE configuration_key = 'PRODUCT_LIST_ALPHA_SORTER';
    UPDATE configuration SET configuration_value = false WHERE configuration_key = 'PRODUCT_LIST_CATEGORIES_IMAGE_STATUS';
    UPDATE configuration SET configuration_value = false WHERE configuration_key = 'PRODUCT_LIST_CATEGORIES_IMAGE_STATUS_TOP';
    UPDATE configuration SET configuration_value = 0 WHERE configuration_key = 'PRODUCT_LIST_DESCRIPTION';
    UPDATE configuration SET configuration_value = 0 WHERE configuration_key = 'PRODUCT_LIST_FILTER';
    UPDATE configuration SET configuration_value = 1 WHERE configuration_key = 'PRODUCT_INFO_CATEGORIES_IMAGE_STATUS';
    UPDATE configuration SET configuration_value = true WHERE configuration_key = 'USE_SPLIT_LOGIN_MODE';
    The SQL conversion magically handles the numeric inputs, but these "real" character values should be set as:
    Code:
    UPDATE configuration SET configuration_value = 'false' WHERE configuration_key = 'PRODUCT_LIST_ALPHA_SORTER';
    UPDATE configuration SET configuration_value = 'false' WHERE configuration_key = 'PRODUCT_LIST_CATEGORIES_IMAGE_STATUS';
    UPDATE configuration SET configuration_value = 'false' WHERE configuration_key = 'PRODUCT_LIST_CATEGORIES_IMAGE_STATUS_TOP';
    UPDATE configuration SET configuration_value = 0 WHERE configuration_key = 'PRODUCT_LIST_DESCRIPTION';
    UPDATE configuration SET configuration_value = 0 WHERE configuration_key = 'PRODUCT_LIST_FILTER';
    UPDATE configuration SET configuration_value = 1 WHERE configuration_key = 'PRODUCT_INFO_CATEGORIES_IMAGE_STATUS';
    UPDATE configuration SET configuration_value = 'True' WHERE configuration_key = 'USE_SPLIT_LOGIN_MODE';
    Note also the initial capitalization for the USE_SPLIT_LOGIN_MODE value.
    Thank you so much for posting ;) I'll be sure to include these changes in the next package update.

    Thanks,

    Anne

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

    Default Re: Stirling Grand Responsive Template

    Quote Originally Posted by lat9 View Post
    Another minor issue: /includes/templates/stirling_grand/common/tpl_header.php hasn't been updated for the PHP 5.4+ changes to htmlspecialchars. The following code fragment towards the top of the file:
    Code:
      // Display all header alerts via messageStack:
      if ($messageStack->size('header') > 0) {
        echo $messageStack->output('header');
      }
      if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
      echo htmlspecialchars(urldecode($_GET['error_message']));
      }
      if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
       echo htmlspecialchars($_GET['info_message']);
    } else {
    
    }
    needs to be changed to
    Code:
      // Display all header alerts via messageStack:
      if ($messageStack->size('header') > 0) {
        echo $messageStack->output('header');
      }
      if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
      echo htmlspecialchars(urldecode($_GET['error_message']), ENT_COMPAT, CHARSET, TRUE);
      }
      if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
       echo htmlspecialchars($_GET['info_message'], ENT_COMPAT, CHARSET, TRUE);
    } else {
    
    }
    Thank you again! I really appreciate your help and input ;)

    Thanks,

    Anne

  10. #130
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,371
    Plugin Contributions
    94

    Default Re: Stirling Grand Responsive Template

    Quote Originally Posted by picaflor-azul View Post
    Thank you again! I really appreciate your help and input ;)

    Thanks,

    Anne
    No problem; I'm really liking the template!

 

 
Page 13 of 53 FirstFirst ... 3111213141523 ... LastLast

Similar Threads

  1. Responsive All Business Template
    By picaflor-azul in forum Addon Templates
    Replies: 392
    Last Post: 3 Oct 2019, 05:42 AM
  2. v154 Best Responsive Template
    By martynbaker52 in forum General Questions
    Replies: 4
    Last Post: 12 Sep 2015, 02:35 AM
  3. v151 responsive template problems
    By irishshopper in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 23 May 2014, 07:11 AM
  4. Stirling Grand Template blank product info page
    By Pablo_escobar in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 18 Jan 2014, 04:38 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