Page 62 of 102 FirstFirst ... 1252606162636472 ... LastLast
Results 611 to 620 of 1017
  1. #611
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Abbington Mega Template Support Thread

    Quote Originally Posted by picaflor-azul View Post
    When I submitted the module, the sofware guy fixed the sql patch to include a check against configuration group id 0. Is this what you are referring to?

    Thanks,

    Anne
    It's line 1 in the SQL is what is being pointed out as being and issue in the post I referenced:

    SET @configuration_group_id=0;SELECT @configuration_group_id:=configuration_group_id
    FROM configuration_group
    WHERE configuration_group_title= 'Abbington Mega'
    LIMIT 1;
    DELETE FROM configuration WHERE configuration_group_id = @configuration_group_id AND configuration_group_id != 0;
    DELETE FROM configuration_group WHERE configuration_group_id = @configuration_group_id AND configuration_group_id != 0;

    Ever since being made aware that this is an issue, I am always on the lookout for similar SQL in any mod I use and change accordingly.. The modified SQL is what I ran.. Hope I didn't mis-step by sharing it.. I thought that it might help g2ktcf.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  2. #612
    Join Date
    Feb 2011
    Location
    Lumberton, TX
    Posts
    528
    Plugin Contributions
    0

    Default Re: Abbington Mega Template Support Thread

    well it certainly showed me other issues I do have. My problem was more like trying to install Abbington Mega 1.1...then 3.1 without first cleaning out 1.1 properly...at least that is what I think. I actually had four full sets of records in the banners table from Abbington Mega so you can see how messed up it was. Luckily I do know my way around databases and was able to locate the problem in the data. Once I made all the configuration IDs the same, everything worked like a charm.

  3. #613
    Join Date
    Dec 2007
    Posts
    102
    Plugin Contributions
    0

    Default Re: Abbington Mega Template Support Thread

    Hi

    I'm getting a w3 validation error on my front page, it's been a long day and I was hoping a fresh pair of eyes could help

    validation Output: 1 Error

    Error Line 356, Column 21: end tag for "ul" which is not finished

    </ul>



    Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

    Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.

    <div class="col_1">
    <h3>Customers</h3>
    <ul>
    <li><a href="https://www.allgoodideas.co.uk/Log_In">Log In</a></li>
    <li><a href="https://www.allgoodideas.co.uk/index.php?main_page=create_account">Create Account</a></li>
    <li><a href="http://www.allgoodideas.co.uk/Contact_Us">Contact Us</a></li>
    <li><a href="http://www.allgoodideas.co.uk/Shipping_Shopping_And_Returns">Shipping &amp; Returns</a></li>
    <li><a href="http://www.allgoodideas.co.uk/Privacy_And_Payments">Privacy Notice</a></li>
    <li><a href="http://www.allgoodideas.co.uk/Conditions_Of_Use">Conditions of Use</a></li>
    </ul>
    </div>

    <div class="col_1">
    <h3>Useful Links</h3>
    <ul>
    </ul>
    </div>
    </div>

    </li><!-- eof information -->

    which I presume is from tpl_mega_menu.php line 235 onwards


    <div class="col_1">
    <h3><?php echo TITLE_EZ_PAGES; ?></h3>
    <ul>
    <?php require(DIR_WS_MODULES . 'sideboxes/' . $template_dir . '/' . 'ezpages_drop_menu.php'); ?>
    </ul>
    </div>
    </div>

    </li><!-- eof information -->

    I just can't see what is producing the error though??? any constructive help much appreciated.

    Simon Goodall
    www.allgoodideas.co.uk

  4. #614
    Join Date
    Feb 2011
    Location
    Lumberton, TX
    Posts
    528
    Plugin Contributions
    0

    Default Re: Abbington Mega Template Support Thread

    okay, I want to add the SiteLock link to my page and I found an old thread that had some info. However, it advised to find tpl_footer_menu.php for the additions. But this file seems to have changed. Where can I add this link?

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

    Default Re: Abbington Mega Template Support Thread

    Quote Originally Posted by DivaVocals View Post
    It's line 1 in the SQL is what is being pointed out as being and issue in the post I referenced:



    Ever since being made aware that this is an issue, I am always on the lookout for similar SQL in any mod I use and change accordingly.. The modified SQL is what I ran.. Hope I didn't mis-step by sharing it.. I thought that it might help g2ktcf.
    No, thank you very much for pointing this out. I do want to correct any problems in the templates. I just need to do some research and understand the problem so that I can submit a fixed update ;)

    Thanks,

    Anne

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

    Default Re: Abbington Mega Template Support Thread

    Quote Originally Posted by g2ktcf View Post
    well it certainly showed me other issues I do have. My problem was more like trying to install Abbington Mega 1.1...then 3.1 without first cleaning out 1.1 properly...at least that is what I think. I actually had four full sets of records in the banners table from Abbington Mega so you can see how messed up it was. Luckily I do know my way around databases and was able to locate the problem in the data. Once I made all the configuration IDs the same, everything worked like a charm.
    I am happy that you figured out the problem and posted your solution to help others.

    Thanks,

    Anne

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

    Default Re: Abbington Mega Template Support Thread

    Quote Originally Posted by AfterHouR View Post
    Hi

    I'm getting a w3 validation error on my front page, it's been a long day and I was hoping a fresh pair of eyes could help

    validation Output: 1 Error

    Error Line 356, Column 21: end tag for "ul" which is not finished

    </ul>



    Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

    Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.

    <div class="col_1">
    <h3>Customers</h3>
    <ul>
    <li><a href="https://www.allgoodideas.co.uk/Log_In">Log In</a></li>
    <li><a href="https://www.allgoodideas.co.uk/index.php?main_page=create_account">Create Account</a></li>
    <li><a href="http://www.allgoodideas.co.uk/Contact_Us">Contact Us</a></li>
    <li><a href="http://www.allgoodideas.co.uk/Shipping_Shopping_And_Returns">Shipping & Returns</a></li>
    <li><a href="http://www.allgoodideas.co.uk/Privacy_And_Payments">Privacy Notice</a></li>
    <li><a href="http://www.allgoodideas.co.uk/Conditions_Of_Use">Conditions of Use</a></li>
    </ul>
    </div>

    <div class="col_1">
    <h3>Useful Links</h3>
    <ul>
    </ul>
    </div>
    </div>

    </li><!-- eof information -->

    which I presume is from tpl_mega_menu.php line 235 onwards


    <div class="col_1">
    <h3><?php echo TITLE_EZ_PAGES; ?></h3>
    <ul>
    <?php require(DIR_WS_MODULES . 'sideboxes/' . $template_dir . '/' . 'ezpages_drop_menu.php'); ?>
    </ul>
    </div>
    </div>

    </li><!-- eof information -->

    I just can't see what is producing the error though??? any constructive help much appreciated.

    Simon Goodall
    www.allgoodideas.co.uk
    If you post a link to the site I can take a look.

    Thanks,

    Anne

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

    Default Re: Abbington Mega Template Support Thread

    Quote Originally Posted by g2ktcf View Post
    okay, I want to add the SiteLock link to my page and I found an old thread that had some info. However, it advised to find tpl_footer_menu.php for the additions. But this file seems to have changed. Where can I add this link?
    You can add it to that file or the tpl_footer.php file.

    Thanks,

    Anne

  9. #619
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Abbington Mega Template Support Thread

    Quote Originally Posted by picaflor-azul View Post
    No, thank you very much for pointing this out. I do want to correct any problems in the templates. I just need to do some research and understand the problem so that I can submit a fixed update ;)

    Thanks,

    Anne
    Oh good.. I didn't want to step on your toes at all!!

    Check out the suggested SQL I posted.. it should address the issue.. It's the SQL I ran when installing your template..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

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

    Default Re: Abbington Mega Template Support Thread

    Quote Originally Posted by DivaVocals View Post
    Oh good.. I didn't want to step on your toes at all!!

    Check out the suggested SQL I posted.. it should address the issue.. It's the SQL I ran when installing your template..
    I will do it ;)

    Thanks,

    Anne

 

 
Page 62 of 102 FirstFirst ... 1252606162636472 ... LastLast

Similar Threads

  1. Lavender Template Support Thread
    By kobra in forum Addon Templates
    Replies: 262
    Last Post: 13 May 2015, 01:00 AM
  2. v154 Abbington Mega 5.3 template not displaying properly
    By irishshopper in forum Addon Templates
    Replies: 1
    Last Post: 6 Mar 2015, 04:56 PM
  3. Rustic Template Support Thread
    By clydejones in forum Addon Templates
    Replies: 320
    Last Post: 20 May 2013, 10:47 AM
  4. Turpy Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 3
    Last Post: 20 Feb 2012, 07:36 PM
  5. DigitalShop Template Support Thread
    By blingthemes in forum Addon Templates
    Replies: 19
    Last Post: 9 Mar 2011, 07:49 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