Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refine ElasticPress blocks. #3403

Merged
merged 43 commits into from
Aug 8, 2023
Merged
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
3d790a8
Refactor facet blocks.
JakePT Mar 23, 2023
e4ee165
Fix blocks not returning empty content when expected.
JakePT Mar 23, 2023
7cb2bb5
Add empty response placeholder for filter blocks.
JakePT Mar 23, 2023
21e5b98
Remove unused stylesheet.
JakePT Mar 24, 2023
a1e25b7
Place suffix and prefix fields in a row.
JakePT Mar 24, 2023
3f20ae2
Use wrapper attributes for Related Posts block.
JakePT Mar 24, 2023
5c7d46f
Update Related Posts block description.
JakePT Apr 4, 2023
5e691a6
Update Filter block names in tests.
JakePT Apr 4, 2023
c154a98
Update block names in tests.
JakePT Apr 4, 2023
34d44e7
Add block icons.
JakePT Jun 7, 2023
1e0a524
Merge branch 'develop' into feature/3384
JakePT Jun 7, 2023
5a2f022
Rename block to Filter by Post Type
oscarssanchez Jul 24, 2023
ac411c9
Add block description
oscarssanchez Jul 24, 2023
530b0d1
Use elasticpress category for facet block
oscarssanchez Jul 24, 2023
247bae9
Add keywords to block.json
oscarssanchez Jul 24, 2023
d4e89bd
Add support for color, position, spacing and typography
oscarssanchez Jul 24, 2023
8f0642b
Use filter icon on post type facet
oscarssanchez Jul 24, 2023
6d6b8ae
Implement shared components in facet by post type
oscarssanchez Jul 24, 2023
2d57229
Use shared icon instead
oscarssanchez Jul 24, 2023
964e0b8
Update Facet Post type e2e tests
oscarssanchez Jul 25, 2023
3f3fb11
Merge pull request #3553 from 10up/changes-3403
JakePT Jul 31, 2023
de28ced
Remove text color customisation on post type block.
JakePT Jul 31, 2023
db14e67
Add missing @throws tag.
JakePT Jul 31, 2023
46289eb
Merge branch 'develop' into feature/3384
JakePT Aug 1, 2023
db19f07
Use _x instead of translators comment.
JakePT Aug 3, 2023
637ba02
Restore and deprecate removed methods.
JakePT Aug 3, 2023
3b6f617
Restore and deprecate deleted methods.
JakePT Aug 4, 2023
322d985
Merge branch 'develop' into feature/3384
JakePT Aug 4, 2023
6530812
Fix tests.
JakePT Aug 7, 2023
44f5fb9
Merge branch 'develop' into feature/3384
JakePT Aug 7, 2023
8f8e474
User ServerSideRender for Post Type filter.
JakePT Aug 7, 2023
64c738a
Add tests for block colors and typography.
JakePT Aug 7, 2023
a78abc1
Add tests for block dimensions.
JakePT Aug 7, 2023
fd76ca5
Merge branch 'feature/3489' into feature/3384
JakePT Aug 7, 2023
a8a8a16
Add troubleshooting for Apple Silicon.
JakePT Aug 7, 2023
a6ee346
WordPress 5.6 compatibility.
JakePT Aug 8, 2023
650da2e
Merge branch 'develop' into feature/3384
JakePT Aug 8, 2023
63b8c34
Merge branch 'develop' into feature/3384
felipeelia Aug 8, 2023
ca4d295
Fix block selector.
JakePT Aug 8, 2023
a81db6c
Fix block selector.
JakePT Aug 8, 2023
2e0ab49
Update Related Posts block to API version 2.
JakePT Aug 8, 2023
5a1690f
Adjust e2e tests
felipeelia Aug 8, 2023
b779e17
Add a force:true on related posts link so Cypress at least tries to c…
felipeelia Aug 8, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add missing @throws tag.
  • Loading branch information
JakePT committed Jul 31, 2023
commit db14e679a9d3718013a9bae9405f60cfdc279fde
1 change: 1 addition & 0 deletions includes/classes/Indexable.php
Original file line number Diff line number Diff line change
Expand Up @@ -1197,6 +1197,7 @@ public function get_search_algorithm( string $search_text, array $search_fields,
* @since 4.3.0
* @param null|int $blog_id (Optional) The blog ID. Sending `null` will use the current blog ID.
* @return array
* @throws \Exception An exception if meta fields are not available.
*/
public function get_distinct_meta_field_keys( $blog_id = null ) {
$mapping = $this->get_mapping();
Expand Down