Nicole

Forum Replies Created

Viewing 8 posts - 16 through 23 (of 23 total)
  • Author
    Posts
  • Nicole
    Participant

    my code did work…thanks for following up.

    in reply to: filtering on autocomplete–2 questions #957598
    Nicole
    Participant

    gotcha. thanks for getting back to me.

    Nicole
    Participant

    it didnt work for me. i used

    function tribe_custom_theme_text ( $translations, $text, $domain ) {
     
    	// Put your custom text here in a key => value pair
    	// Example: 'Text you want to change' => 'This is what it will be changed to'
    	// The text you want to change is the key, and it is case-sensitive
    	// The text you want to change it to is the value
    	// You can freely add or remove key => values, but make sure to separate them with a comma
    	// This example changes the label "Venue" to "Location", and "Related Events" to "Similar Events"
    	$custom_text = array(
    		'Select' => 'Location',
    		'All Events' => 'All Internships',
    		'There were no results found.' => 'There were no results found — see next month.' 
    	);
     
    	// If this text domain starts with "tribe-", and we have replacement text
    	if(strpos($domain, 'tribe-') === 0 && array_key_exists($text, $custom_text) ) {
    		$text = $custom_text[$text];
    	}
     
    	return $text;
    }
    in reply to: filtering on autocomplete–2 questions #957192
    Nicole
    Participant

    ps i can manage the css to get the spacing of the background to match the screenshot so it doesnt overlap the other text below it.

    in reply to: filtering on autocomplete–2 questions #957191
    Nicole
    Participant

    hi Geoff!

    No, i already have the setting checked to open. it may have been closed when you looked at it because it had been toggled shut. what i wanted was to have a permanent display such as:

    screenshot

    I have reset to use a checkbox and created the css so the list is inline (thus mimicking the autocomplete format without the pesky Reset Filter bug). what i was hoping was that the box that is holding the list is permanently open, ie even when you reset the filters or change the month. in this way the selections are always visible.

    thank you!

    Nicole
    Participant

    hello,
    i added it exactly as shown and still says ‘There were no results found.’
    judy

    in reply to: need categories in "View As" list #938331
    Nicole
    Participant

    hi Geoff,
    actually, that is what i was looking for…but now that I look at it, it doesnt make sense to have that option as part of that list anyway. I am using filter bar, so all is well.
    thank you!

    in reply to: Events Calendar page shows site subfolder in url #936925
    Nicole
    Participant

    This reply is private.

Viewing 8 posts - 16 through 23 (of 23 total)