00c82fe1 by Jeff Balicki

sss

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 9a461736
......@@ -49,14 +49,18 @@ $wrapper_id = 'full-width-page-wrapper';
<h3>Search Result for : <?php echo htmlentities($s, ENT_QUOTES, 'UTF-8'); ?> </h3>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php
$link = get_the_permalink($post->ID);
$target ="";
$resources_link = get_post_meta( $post->ID, 'resources_link', true);
if($resources_link !="" ){
$link = $resources_link;
$target = "target='_blank'";
} ?>
<div id="post-<?php the_ID(); ?>" class="posts">
<article>
<h4><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h4>
<h4><a href="<?php echo $link; ?>" <?php echo $target;?> title="<?php the_title(); ?>"><?php the_title(); ?></a></h4>
<p><?php the_excerpt(); ?></p>
<p align="right"><a href="<?php the_permalink(); ?>">Read More</a></p>
<span class="post-meta"> Post By <?php the_author(); ?>
| Date : <?php echo date('j F Y'); ?></span>
</article><!-- #post -->
</div>
<?php endwhile; ?>
......
......@@ -14755,6 +14755,10 @@ a.skip-link:focus {
opacity: 1;
}
.search-results .understrap-read-more-link {
display: none !important;
}
.pre-header {
background-color: #0484b8;
color: #fff;
......@@ -15246,6 +15250,7 @@ a.skip-link:focus {
}
#main-menu .hide-on-main {
text-transform: uppercase;
display: none;
visibility: hidden;
}
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
......@@ -278,3 +278,9 @@ a.skip-link{
a.skip-link:focus{
opacity:1;
}
.search-results{
.understrap-read-more-link{
display: none !important;
}
}
\ No newline at end of file
......
......@@ -488,6 +488,7 @@ max-width: unset !important;
#main-menu{
.hide-on-main
{
text-transform: uppercase;
display: none;
visibility: hidden;
@media only screen and (max-width: 768px) {
......
......@@ -28,7 +28,7 @@ $col = 'yes' === get_option( 'woocommerce_enable_myaccount_registration' ) ? 6 :
<div class="u-column1 col-md-<?php echo (int) $col; ?>">
<h2><?php esc_html_e( 'Login', 'woocommerce' ); ?></h2>
<h2><?php esc_html_e( 'Log In', 'woocommerce' ); ?></h2>
<form class="woocommerce-form woocommerce-form-login login" method="post">
......@@ -66,7 +66,7 @@ $col = 'yes' === get_option( 'woocommerce_enable_myaccount_registration' ) ? 6 :
<div class="u-column2 col-md-6">
<h2><?php esc_html_e( 'Register', 'woocommerce' ); ?></h2>
<h2><?php esc_html_e( 'Sign Up', 'woocommerce' ); ?></h2>
<form method="post" class="woocommerce-form woocommerce-form-register register" <?php do_action( 'woocommerce_register_form_tag' ); ?> >
......@@ -103,7 +103,7 @@ $col = 'yes' === get_option( 'woocommerce_enable_myaccount_registration' ) ? 6 :
<p class="woocommerce-form-row form-row">
<?php wp_nonce_field( 'woocommerce-register', 'woocommerce-register-nonce' ); ?>
<button type="submit" class="woocommerce-form-register__submit btn btn-outline-primary" name="register" value="<?php esc_attr_e( 'Register', 'woocommerce' ); ?>"><?php esc_html_e( 'Register', 'woocommerce' ); ?></button>
<button type="submit" class="woocommerce-form-register__submit btn btn-outline-primary" name="register" value="<?php esc_attr_e( 'Register', 'woocommerce' ); ?>"><?php esc_html_e( 'Sign Up', 'woocommerce' ); ?></button>
</p>
<?php do_action( 'woocommerce_register_form_end' ); ?>
......