feat: initial ACRIB WordPress deployment
- WordPress 6.9.4 (es_ES) with Kadence theme - Homepage: Hero, La Asociación, Pilares, Beneficios, Eventos, Miembros, Hazte Miembro, Contacto - Brand identity: #13294b navy, #a12932 burgundy, #c69c48 gold - Fonts: Raleway (headings) + Source Sans 3 (body) + Lato (UI) - Plugins: Kadence Blocks, Polylang, Contact Form 7 - Custom CSS with full brand styling and responsive layout - HTTPS enforced via wp-config.php proxy detection
This commit is contained in:
25
wp-content/themes/kadence/bbpress/form-reply-search.php
Normal file
25
wp-content/themes/kadence/bbpress/form-reply-search.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
/**
|
||||
* Search
|
||||
*
|
||||
* @package bbPress
|
||||
* @subpackage Theme
|
||||
*/
|
||||
|
||||
// Exit if accessed directly.
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
if ( bbp_allow_search() ) : ?>
|
||||
|
||||
<div class="bbp-search-form">
|
||||
<form role="search" class="search-form" method="get" id="bbp-reply-search-form">
|
||||
<label for="rs">
|
||||
<span class="screen-reader-text"><?php esc_html_e( 'Search for:', 'kadence' ); ?></span>
|
||||
<input type="search" value="<?php bbp_search_terms(); ?>" placeholder="<?php esc_attr_e( 'Search ...', 'kadence' ); ?>" name="rs" id="rs" class="search-field" />
|
||||
</label>
|
||||
<input class="search-submit" type="submit" value="<?php esc_attr_e( 'Search', 'kadence' ); ?>" />
|
||||
<?php do_action( 'bbpress_end_form_search' ); ?>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<?php endif;
|
||||
Reference in New Issue
Block a user