-
Notifications
You must be signed in to change notification settings - Fork 20
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
Ensure no errors on CPTs without Yoast SEO metabox #103
Open
kraftner
wants to merge
5
commits into
develop
Choose a base branch
from
stories/test-cpt-no-metabox
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
20ef0bb
Ensure no errors on CPTs without Yoast SEO metabox
kraftner f2879db
improve documentation
kraftner f5c387b
Merge branch 'develop' into stories/test-cpt-no-metabox
kraftner 7432e6f
move test CPT to new loader for tests
kraftner 500e08a
fix remains of old test data loading
kraftner File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -336,4 +336,50 @@ | |
'description' => '', | ||
)); | ||
|
||
acf_add_local_field_group(array ( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you add a space before There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See above. |
||
'key' => 'group_59e89863c6498', | ||
'title' => 'Non Public CPT', | ||
'fields' => array ( | ||
array ( | ||
'key' => 'field_59e897a8755dc', | ||
'label' => 'Text', | ||
'name' => 'yoast_acf_analysis_text', | ||
'type' => 'text', | ||
'value' => NULL, | ||
'instructions' => '', | ||
'required' => 0, | ||
'conditional_logic' => 0, | ||
'wrapper' => array ( | ||
'width' => '', | ||
'class' => '', | ||
'id' => '', | ||
), | ||
'default_value' => '', | ||
'placeholder' => '', | ||
'prepend' => '', | ||
'append' => '', | ||
'formatting' => 'html', | ||
'maxlength' => '', | ||
), | ||
), | ||
'location' => array ( | ||
array ( | ||
array ( | ||
'param' => 'post_type', | ||
'operator' => '==', | ||
'value' => 'test_non_public_cpt', | ||
), | ||
), | ||
), | ||
'menu_order' => 0, | ||
'position' => 'normal', | ||
'style' => 'seamless', | ||
'label_placement' => 'top', | ||
'instruction_placement' => 'label', | ||
'hide_on_screen' => array ( | ||
), | ||
'active' => 1, | ||
'description' => '', | ||
)); | ||
|
||
endif; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
var simpleField = require('../../helpers/simpleField'); | ||
var Logger = require('nightwatch/lib/util/logger.js'); | ||
|
||
module.exports = { | ||
tags: ['acf4', 'acf5', 'cpt'], | ||
|
||
before: function (browser) { | ||
var page = browser.page.WordPressHelper(); | ||
page.newPost('test_non_public_cpt'); | ||
}, | ||
|
||
beforeEach: function (browser) { | ||
}, | ||
|
||
'Custom Post Type (non public->no metabox)' : function (browser) { | ||
browser.getLog('browser', function(logEntriesArray) { | ||
|
||
var errors = logEntriesArray.filter(function(log){ | ||
return log.level === 'SEVERE'; | ||
}); | ||
|
||
browser.assert.ok( errors.length === 0, "No JS errors thrown." ) | ||
|
||
var warnings = logEntriesArray.filter(function(log){ | ||
return log.level === 'WARNING'; | ||
}); | ||
|
||
warnings.forEach(function(log){ | ||
console.log(Logger.colors.light_purple(' WARNING: ' + log.message)); | ||
}); | ||
|
||
}); | ||
}, | ||
|
||
after : function(browser) { | ||
browser.end(); | ||
} | ||
}; |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add a space before
array
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As this is coming out of the ACF Export function like this I'd rather leave it like this as it makes it easy to just C&P stuff on changes and having clean diffs. What do you think about that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That 's okay for me 👍