PluginProbe
Welcart e-Commerce / 1.3.2
Welcart e-Commerce v1.3.2
2.12.4 2.12.3 2.11.35 2.12.2 2.12.1 2.11.34 2.11.33 2.11.32 2.11.31 2.11.30 1.3.16 1.3.17 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 All 292 releases
usc-e-shop / theme / welcart_default / inquiry.php

inquiry.php in Welcart e-Commerce 1.3.2, at theme/welcart_default/inquiry.php

27 lines 631 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 Template Name: Inquiry
4 * <meta content="charset=UTF-8">
5 * @package Welcart
6 * @subpackage Welcart Default Theme
7 */
8 get_header();
9 ?>
10
11 <div id="content" class="two-column">
12 <h1 class="pagetitle"><?php _e('Visit/Contact Us','usces') ?></h1>
13 <div class="catbox">
14 <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
15 <div class="inqbox">
16 <?php the_content(); ?>
17 <?php usces_the_inquiry_form(); ?>
18 <?php edit_post_link(__('Edit this'), '<p>', '</p>'); ?>
19 </div>
20 <?php endwhile; endif; ?>
21 </div><!-- end of catbox -->
22 </div><!-- end of content -->
23
24 <?php get_sidebar( 'other' ); ?>
25
26 <?php get_footer(); ?>
27