Hello, I just returned from my honeymoon so I apologize for the absence! @missveronicatv thank you so much for your assistance. I was able to create the folders and copied the “members.php” template into a directory within my theme.
The file structure is now: wp-content/themes/Divi/ultimate-member/templates/members.php
Below is the code example you originally provided (just for a quick reference), and below that, you will find my modifications bolded and <span style=”text-decoration: underline;”>underlined</span> text according to how I understood your instructions. Would you be so kind as to see if I am understanding your steps properly?
<?php
$long_title = '';
if ( $type == 'select' ) {
if( $filter == 'gender' ) {
$long_title = 'title="Long title for gender"';
}
if( $filter == 'country' ) {
$long_title = 'title="Long title for country"';
}
}?>
<?php
$long_title = '';
if ( $type == 'select' ) {
if( $filter == '<span style="text-decoration: underline;">Infrastructure</span>' ) {
$long_title = 'title="<span style="text-decoration: underline;">Does the property include any of the following equipment or infrastructure? (Select all that apply) </span>"';
}
if( $filter == '<span style="text-decoration: underline;">County</span>' ) {
$long_title = 'title="<span style="text-decoration: underline;">Select the county your property located.</span>"';
}
if( $filter == '<span style="text-decoration: underline;">Irrigation</span>' ) {
$long_title = 'title="<span style="text-decoration: underline;">Which type(s) of irrigation systems does your property have? Check all that apply to your listing</span>"';
}
}?>
___________________________________________________________________________________________________________________________
Also, I’m not exactly sure I understood the final step that you provided below:
“Finally include your?$long_title
?content in the filter’s?div
(I’m not sure what the “filter’s div
” is)
<div <?php echo $long_title?> class="um-search-filter um-<?php echo .....
“
Are you referring to line 332? If so, my line 332 reads differently: <div class="um-search-filter um-<?php echo esc_attr( $type ) ?>-filter-type <?php echo ( $i != 0 && $i%2 !== 0 ) ? 'um-search-filter-2' : '' ?>">
______________________________________________________________________________________________________________________________
I apologize for my ignorance/inexperience. I’ve been trying to figure it out myself but can’t seem to find the answers I need. Thank you SO much in advance and I’m eager to hear to hear your response.