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

Fix empty shortcode output #95

Open
wants to merge 7 commits into
base: trunk
Choose a base branch
from

Conversation

YanMetelitsa
Copy link
Contributor

Fixies Issue #85 (Shortcode Bug)

Perhaps the text of the message needs to be changed as I am not a native speaker.

@kraftbj kraftbj requested a review from pkevan April 2, 2025 13:36
@kraftbj
Copy link
Contributor

kraftbj commented Apr 2, 2025

@pkevan Since you dug into the original report a bit, would you be able to review this one?

Copy link
Contributor

@pkevan pkevan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we need to be careful with outputting messages to end users here (maybe an error warning which doesn't show in the front-end would be better).

@YanMetelitsa
Copy link
Contributor Author

@pkevan, in any case, in my opinion, it is necessary to make some kind of display of an explanation of why the shortcode "does not work". In my experience, this raises questions and bewilderment among some users.

@kraftbj
Copy link
Contributor

kraftbj commented Apr 2, 2025

What about having the message only displayed for logged-in admins?

@YanMetelitsa
Copy link
Contributor Author

What about having the message only displayed for logged-in admins?

After my last post I thought the same thing - display for admin, something like that:

...
else {
	if ( current_user_can( 'manage_options' ) ) {
		/* translators: %s Field name */
		return apply_filters( 'acf/shortcode/field_not_allowed_message', '[' . sprintf( esc_html__( 'You need to enable "Allow Access to Value in Editor UI" in the "%s" field parameters to display it in the ACF Shortcode.', 'secure-custom-fields' ), $field['name'] ) . ']' );
	}
	
	return;
}
...

@YanMetelitsa
Copy link
Contributor Author

Also, my bad, I think it would be safer to organize the output as follows:

apply_filter( 'filter', esc_html( '[' . sprintf( __( '%s', 'secure-custom-fields' ), $field ) . ']' ) );

@pkevan
Copy link
Contributor

pkevan commented Apr 3, 2025

What about having the message only displayed for logged-in admins?

That could work - or even have that cap check filtered? As it might be better to have editors/admins included by default (on the basis on advanced privileges)

Given there are multiple instances of outputting based on which settings are set outside of the shortcode, we should probably cover all of those which return an empty response.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants