Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Commonwell
/
broker-site
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
6ab85e2b
authored
2023-11-08 14:23:49 -0500
by
Jeremy Groot
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
updates
1 parent
8d2724db
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
6 deletions
wp-content/themes/commonwell-broker/header-brokerlanding.php
wp-content/themes/commonwell-broker/inc/brokers_cli.php
wp-content/themes/commonwell-broker/inc/shortcodes-circulars.php
wp-content/themes/commonwell-broker/inc/shortcodes-resources.php
wp-content/themes/commonwell-broker/header-brokerlanding.php
View file @
6ab85e2
...
...
@@ -144,18 +144,20 @@
</a>
</div>
<div
class=
'header-title'
>
<?
=
_
(
"BROKER RESOURCE CENTRE"
);
?>
<?
php
echo
_
_
(
"BROKER RESOURCE CENTRE"
);
?>
</div>
<div
id=
'sault'
>
<span
class=
"username"
style=
"text-transform:uppercase;"
>
<?php
if
(
!
empty
(
$current_user
->
user_firstname
))
{
?>
<?=
_
(
"Welcome"
)
.
", "
.
esc_html
(
$current_user
->
user_firstname
)
.
" "
.
esc_html
(
$current_user
->
user_lastname
)
?>
<?=
_
_
(
"Welcome"
)
.
", "
.
esc_html
(
$current_user
->
user_firstname
)
.
" "
.
esc_html
(
$current_user
->
user_lastname
)
?>
<?php
}
else
{
?>
<?=
_
(
"Welcome"
)
?>
<?=
_
_
(
"Welcome"
)
?>
<?php
}
?>
</span>
<a
class=
'logout-btn'
href=
'/wp-login.php?action=logout'
target=
'_blank'
>
Log Out
</a>
</div>
</header>
<button
class=
'mobile-btn'
></button>
</div>
\ No newline at end of file
</div>
\ No newline at end of file
...
...
wp-content/themes/commonwell-broker/inc/brokers_cli.php
View file @
6ab85e2
...
...
@@ -39,6 +39,10 @@ if ( class_exists( 'WP_CLI' ) ) {
$iter_counter
=
0
;
foreach
(
$staff_members
as
$assign
)
{
if
(
$assign
[
'phone'
]
==
' #'
)
{
$assign
[
'phone'
]
=
''
;
}
foreach
(
$field_keys
as
$fk
)
{
$option_name
=
'options_assignments_'
.
$iter_counter
.
"_"
.
$fk
[
'name'
];
...
...
wp-content/themes/commonwell-broker/inc/shortcodes-circulars.php
View file @
6ab85e2
...
...
@@ -81,7 +81,7 @@ function circular_list($atts){
</div>
<div
class=
"filters"
>
<div
class=
'search-sort'
>
<h3>
<?=
_
(
"SORT BY"
)
?>
</h3>
<h3>
<?=
_
_
(
"SORT BY"
)
?>
</h3>
<div
class=
'custom-select'
>
<select
class=
'resource-list-sort'
>
<option
>
Select
</option>
...
...
wp-content/themes/commonwell-broker/inc/shortcodes-resources.php
View file @
6ab85e2
...
...
@@ -111,7 +111,7 @@ function resources_list($atts){
</div>
<div
class=
"filters"
>
<div
class=
'search-sort'
>
<h3>
<?=
_
(
"SORT BY"
)
?>
</h3>
<h3>
<?=
_
_
(
"SORT BY"
)
?>
</h3>
<div
class=
'custom-select'
>
<select
class=
'resource-list-sort'
>
<option
>
Select
</option>
...
...
Please
register
or
sign in
to post a comment