Page 1 of 2 12 LastLast
Results 1 to 10 of 623

Hybrid View

  1. #1
    Join Date
    May 2014
    Location
    Singapore, Singapore
    Posts
    9
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by lukeengland12 View Post
    If anyone wants to see a live version of this template that is now in use please visit www.frome-model-centre.com

    please let me know if you find any bugs or errors

    I've posted a fix for the tpl_contact_us_default.php wasn't send messages.

    PHP Code:
    <?php
    /**
     * Page Template
     *
     * Loaded automatically by index.php?main_page=contact_us.<br />
     * Displays contact us page form.
     *
     * @package templateSystem
     * @copyright Copyright 2003-2012 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 GIT: $Id: Author: DrByte  Sun Aug 19 09:47:29 2012 -0400 Modified in v1.5.1 $
     */
    ?>
    <div class="centerColumn" id="contactUsDefault">

    <h1 class="back"><?php echo HEADING_TITLE;?></h1>
    <div class="alert forward" id="required-information"><?php echo FORM_REQUIRED_INFORMATION?></div>
    <?php echo zen_draw_form('contact_us'zen_href_link(FILENAME_CONTACT_US'action=send')); ?>


    <?php
      
    if (isset($_GET['action']) && ($_GET['action'] == 'success')) {
    ?>

    <div class="mainContent success"><?php echo TEXT_SUCCESS?></div>

    <div class="buttonRow"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACKBUTTON_BACK_ALT) . '</a>'?></div>

    <?php
      
    } else {
    ?>

    <!--
    <?php if (DEFINE_CONTACT_US_STATUS >= '1' and DEFINE_CONTACT_US_STATUS <= '2') { ?>
    <div id="contactUsNoticeContent" class="content">
    <?php
    /**
     * require html_define for the contact_us page
     */
      
    require($define_page);
    ?>
    </div>
    <?php ?>
    -->

    <?php if ($messageStack->size('contact') > 0) echo $messageStack->output('contact'); ?>


    <br class="clearBoth" />

    <?php
    // show dropdown if set
        
    if (CONTACT_US_LIST !=''){
    ?>
    <label class="inputLabel" for="send-to"><?php echo SEND_TO_TEXT?></label>
    <?php echo zen_draw_pull_down_menu('send_to',  $send_to_array0'id="send-to"') . '<span class="alert">' ENTRY_REQUIRED_SYMBOL '</span>'?>
    <br class="clearBoth" />
    <?php
        
    }
    ?>
    <div id="contact-form-wrapper" class="back">

        <div id="contact-col-left" class="back">

            <label class="inputLabel" for="contactname"><?php echo ENTRY_NAME?> <?php echo '<span class="alert">' ENTRY_REQUIRED_SYMBOL '</span>'?></label>
            <?php echo zen_draw_input_field('contactname'$name' size="40" id="contactname"'); ?>
            
            <label class="inputLabel" for="email-address"><?php echo ENTRY_EMAIL?> <?php echo '<span class="alert">' ENTRY_REQUIRED_SYMBOL '</span>'?></label>
            <?php echo zen_draw_input_field('email', ($email_address), ' size="40" id="email-address"'); ?>
            
            <label class="inputLabel" for="subject" ><?php echo ENTRY_SUBJECT?> <?php echo '<span class="alert">' ENTRY_REQUIRED_SYMBOL '</span>'?></label>
            <?php echo zen_draw_input_field('subject', ($email_subject), ' size="40" id="subject"'); ?>
            
        </div><!--EOF #contact-col-left-->
        
        <div id="contact-col-right" class="forward">
        
            <label for="enquiry"><?php echo ENTRY_ENQUIRY ' <span class="alert">' ENTRY_REQUIRED_SYMBOL '</span>'?></label>
            <?php echo zen_draw_textarea_field('enquiry''30''7'$enquiry'id="enquiry"'); ?>
            
            <?php echo zen_draw_input_field('should_be_empty'''' size="40" id="CUAS" style="visibility:hidden; display:none;" autocomplete="off"'); ?>
        </div><!--EOF #contact-col-right-->
            
    </fieldset>
        
        <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_SENDBUTTON_SEND_ALT); ?></div>
    <div class="buttonRow back"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACKBUTTON_BACK_ALT) . '</a>'?></div>
        
        <div class="clearBoth"></div>
    </div><!--EOF #contact-form-wrapper-->

    <?php
      
    }
    ?>

    <div id="store-details-wrapper" class="forward">
        <div class="back contact-icon" id="phone-icon">&#xe000;</div>
        <div class="back contact-info">
            <strong>Toll Free:</strong> 1-877-880-TILE (8453)<br />
            <strong>Local:</strong> 323-731-8453
        </div>
        <div class="clearBoth"></div>
        <div class="back contact-icon" id="email-icon">&#xe001;</div>
        <div class="back contact-info" id="email-info">
            [email protected]
        </div>
        <div class="clearBoth"></div>
        <div class="back contact-icon" id="business-icon">&#xe002;</div>
        <?php if (CONTACT_US_STORE_NAME_ADDRESS== '1') { ?>
        <address class="back contact-info"><?php echo nl2br(STORE_NAME_ADDRESS); ?></address>
        <?php ?>
        <div class="clearBoth"></div>

    </div><!--EOF #store-details-wrapper-->

    </form>


    </div>
    How did you configure your website to load so fast? My main page loads in like 5 seconds simux.org/store

  2. #2
    Join Date
    Jan 2006
    Posts
    1,542
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by SimuxPepper View Post
    How did you configure your website to load so fast? My main page loads in like 5 seconds simux.org/store
    Up above somewhere there is a method to limit the number of New Products going through the homepage carosel. That greatly sped up my site when I was testing this template.
    Steve
    prommart.com

  3. #3

    Default Re: Tableau Responsive Theme - Support Thread

    hi

    I updated to the CSS/JS Loader 3.0.2 and have both Minify CSS and Minify JavaScript enabled updating the css loader also fixed the issue of the images overlapping on the homepage


    hope this helps
    A 21 year old Messing around with e-commerce.

    www.frome-model-centre.com

  4. #4
    Join Date
    Jan 2006
    Posts
    1,542
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by lukeengland12 View Post
    hi

    I updated to the CSS/JS Loader 3.0.2 and have both Minify CSS and Minify JavaScript enabled updating the css loader also fixed the issue of the images overlapping on the homepage


    hope this helps
    This loader?

    http://www.zen-cart.com/downloads.php?do=file&id=1774
    Steve
    prommart.com

  5. #5
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,566
    Plugin Contributions
    74

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by SimuxPepper View Post
    How did you configure your website to load so fast? My main page loads in like 5 seconds simux.org/store
    This template also comes with Numinix Disk Cache which can be used to reduce server load. It won't reduce bandwidth though so optimizing your images and restricting the number of products that load on the home page and in product listings will play a huge role in speeding up your site.

    New version is coming any day now with the improved template configuration page. Stay tuned!

  6. #6
    Join Date
    Jan 2014
    Posts
    62
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    hello everyone, don't know if it's a template related problem, but while testing the mailing list susscribe, after entering the email address in the box bottom end of the page, no confirmation email is received, and the actual welcome page show this:

    Newsletter Subscription

    Thank you for taking a moment to subscribe to our Newsletter.

    You'll receive notices of newly available products, special offers, and news of upcoming showings.

    Subscriptions disabled.

    bla bla bla

    Checking the database, the address does not get recorded at all. To be said, testing the functionality of the cart, order confirmations and updates are received regularly, so don't think it's actually a problem with the server. Can somebody help? I searched the zen website but could not find anything there.

    As said, don't know if it's a template or general setting related problem.

    thank you

  7. #7

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by satello View Post
    hello everyone, don't know if it's a template related problem, but while testing the mailing list susscribe, after entering the email address in the box bottom end of the page, no confirmation email is received, and the actual welcome page show this:

    Newsletter Subscription

    Thank you for taking a moment to subscribe to our Newsletter.

    You'll receive notices of newly available products, special offers, and news of upcoming showings.

    Subscriptions disabled.

    bla bla bla

    Checking the database, the address does not get recorded at all. To be said, testing the functionality of the cart, order confirmations and updates are received regularly, so don't think it's actually a problem with the server. Can somebody help? I searched the zen website but could not find anything there.

    As said, don't know if it's a template or general setting related problem.

    thank you
    Hi Satello

    I notice this same error with the contact us page my fix is further up the thread I don't use the standard newsletter system for zen cart I use mail chimp which manges all your news letter subscribers and give you a lot more information if you want let me know and I can help you set this up.

    regards

    luke
    A 21 year old Messing around with e-commerce.

    www.frome-model-centre.com

  8. #8
    Join Date
    Jan 2014
    Posts
    62
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by lukeengland12 View Post
    Hi Satello

    I notice this same error with the contact us page my fix is further up the thread I don't use the standard newsletter system for zen cart I use mail chimp which manges all your news letter subscribers and give you a lot more information if you want let me know and I can help you set this up.

    regards

    luke
    hi, thanks for your post. I actually just checked the contact form and it works fine. Email sent and received. Only problems the page after comes very badly formatted



    any clue?

    I know mail chimp, there is a plugin available, but was really hoping to make the cart mailing working, as I will be giving a freebie to be sent by post for whoever sign up, making gold out of the customers real address used for the delivery.
    Last edited by satello; 23 May 2014 at 12:56 PM.

  9. #9

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by satello View Post
    hi, thanks for your post. I actually just checked the contact form and it works fine. Email sent and received. Only problems the page after comes very badly formatted



    any clue?

    I know mail chimp, there is a plugin available, but was really hoping to make the cart mailing working, as I will be giving a freebie to be sent by post for whoever sign up, making gold out of the customers real address used for the delivery.

    HI

    If I get five minutes later ill take a look it may be worth downloading another template and comparing the footer code to see if there is anything missing.

    let me know.

    also im not sure why your contact us page is going all over the place what version of tableau are you using also what browser is this in

    Luke
    A 21 year old Messing around with e-commerce.

    www.frome-model-centre.com

  10. #10
    Join Date
    Jan 2014
    Posts
    62
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    hi luke, i'm on the latest version of the template (so far) and 1.51 of zen. Firefox 29 but it show on latest ie11 as well, just tested.

    regarding the mailchimp, got a question. I had a look at the website and plugin and I may not mind the idea, much more flexible in terms of productivity. Question is, how does it work when a client purchase from the shop and decide to sign up the zen mailing list? would this capture the email and sign it in mailchimp, or it will have to be done manually?

    many thanks
    Last edited by satello; 23 May 2014 at 02:03 PM.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v155 Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
    By picaflor-azul in forum Templates, Stylesheets, Page Layout
    Replies: 1087
    Last Post: 18 Jan 2025, 07:23 PM
  2. v155 Support Thread - Responsive Color Changes for 155
    By dbltoe in forum Templates, Stylesheets, Page Layout
    Replies: 99
    Last Post: 1 Oct 2021, 12:31 PM
  3. v155 Tableau Theme configuration not working.
    By tunes in forum All Other Contributions/Addons
    Replies: 17
    Last Post: 22 Mar 2017, 06:53 PM
  4. v155 Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
    By picaflor-azul in forum Addon Templates
    Replies: 0
    Last Post: 17 Mar 2016, 12:30 AM
  5. v154 Order Steps Responsive [Support Thread]
    By davewest in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 5 Jul 2015, 06:11 PM

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