Guest User

Untitled

a guest
Aug 25th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 KB | None | 0 0
  1. <?php $current_options = wp_parse_args( get_option( 'busiprof_pro_theme_options', array() ), theme_data_setup() ); ?>
  2.  
  3.  
  4.  
  5.  
  6. <div class="container">
  7. <!-- Section Title -->
  8. <div class="row">
  9. <div class="col-md-12">
  10. <div class="section-title">
  11. <?php if( $current_options['team_head'] != '' ) {?>
  12. <h1 class="section-heading"><?php echo $current_options['team_head'];?></h1>
  13. <?php } if( $current_options['team_tagline'] != '' ) {?>
  14. <p><?php echo $current_options['team_tagline']; ?></p>
  15. <?php } ?>
  16. </div>
  17. </div>
  18. </div>
  19. <!-- /Section Title -->
  20.  
  21. <!-- Team -->
  22.  
  23.  
  24.  
  25. <div class="clearfix"></div>
  26.  
  27. <!-- Contact Section -->
  28. <section id="section" class="contact">
  29.  
  30.  
  31. <div class="row">
  32. <!--Contact Info-->
  33. <?php if( $current_options['contact_info_enabled'] == 'on' ) { ?>
  34. <div class="col-md-5 col-xs-12">
  35. <div class="contact">
  36. <div class="post-thumbnail">
  37. <?php if( $current_options['footer_twitter_link'] != '' ) { ?>
  38. <div class="twitter-social"><a href="<?php echo $current_options['footer_twitter_link']; ?>">&nbsp;</a></div>
  39. <?php } ?>
  40. <div class="contact-gravatar">
  41. <div class="contact_left_ic_img"><img class="aboutroundimg" src="<?php echo BUSI_TEMPLATE_DIR_URI .'/images/contact_ic1.png'?>"></div>
  42. </div>
  43. <?php if( $current_options['footer_facebook_link'] != '' ) { ?>
  44. <div class="facebook-social"><a href="<?php echo $current_options['footer_facebook_link']; ?>">&nbsp;</a></div>
  45. <?php } if( $current_options['footer_linkedin_link'] != '' ) { ?>
  46. <div class="linkedin-social"><a href="<?php echo $current_options['footer_linkedin_link']; ?>">&nbsp;</a></div>
  47. <?php } ?>
  48. </div>
  49. <div class="media-body">
  50. <address>
  51. <p><?php
  52. if( $current_options['contact_address_1'] )
  53. echo $current_options['contact_address_1'];
  54. ?><br>
  55. <?php
  56. if( $current_options['contact_address_2'] )
  57. echo $current_options['contact_address_2'];
  58. ?></p>
  59.  
  60. <?php
  61. if( $current_options['contact_number'] != '' )
  62. {
  63. ?>
  64. <p><strong><?php _e('Phone','busiprof'); ?></strong> <?php echo $current_options['contact_number']; ?></p>
  65. <?php }
  66. if( $current_options['contact_fax_number'] != '' )
  67. {
  68. ?>
  69. <p><strong><?php _e('Fax','busiprof'); ?></strong> <?php echo $current_options['contact_fax_number']; ?></p>
  70. <?php }
  71. if( $current_options['contact_email'] != '' ) { ?>
  72. <p><strong><?php _e('Email','busiprof'); ?></strong> <a ><?php echo $current_options['contact_email']; ?></a></p>
  73. <?php }
  74. if( $current_options['contact_website'] != '' )
  75. {
  76. ?>
  77. <p><strong><?php _e('Website','busiprof'); ?></strong> <a ><?php echo $current_options['contact_website']; ?></a></p>
  78. <?php } ?>
  79. </address>
  80. </div>
  81. </div>
  82. </div>
  83. <!--/End of Contact Info-->
  84.  
  85. <!--Contact Form-->
  86. <div class="col-md-7 col-xs-12">
  87. <div class="contact-form">
  88. <?php echo do_shortcode('[contact-form-7 id="141" title="Contact form 1"]'); ?>
  89. </div>
  90. </div>
  91. <?php } else { ?>
  92. <!--Contact Form-->
  93. <div class="col-md-12 col-xs-12">
  94. <div class="contact-form">
  95. <?php the_post(); the_content(); ?>
  96. </div>
  97. </div>
  98. <?php } ?>
  99.  
  100. <!--/End of Contact Form-->
  101.  
  102. </div>
  103. </section>
  104. </div>
Add Comment
Please, Sign In to add comment