Forum Replies Created
-
AuthorPosts
-
December 8, 2022 at 8:57 PM in reply to: ✅error - MetaBoxFavoritePostsget_current_screen() - settings.php 11 #39612
Prabakaran Shankar
ParticipantPlease close this ticket as the issue was automatically resolved on the most recent update (Dec 2022).
Prabakaran Shankar
ParticipantHello Peter,
I believe the issue is still with the values from the [group clone] $values. I simply used the database data that was unserialized and serialized using your technique, and everything went smoothly. I believe the issue is values being passed to the sanitize function. Note: It only applies to clone values.Prabakaran Shankar
ParticipantThank Mr. Peter,
But no response for the code. I have checked as$values[$key]['jtitle'] = 'Hello world';December 5, 2022 at 12:29 AM in reply to: ✅Populate Custom Field with Another Custom Field's Data #39493Prabakaran Shankar
ParticipantHi,
I dint check it, anyway try thisfunction xxxx_event_human_date() { $the_event_start_date = get_post_meta(get_the_ID(), 'event_date', true); $the_event_start_date = date('Y-m-d', $the_event_start_date); // changed the variable and date format return $the_event_start_date; } //in the required place call the function like echo xxxx_event_human_date();November 21, 2022 at 11:32 PM in reply to: ✅error - MetaBoxFavoritePostsget_current_screen() - settings.php 11 #39251Prabakaran Shankar
ParticipantHi Peter,
Just now found one temporary solution by adding additional check "is_admin" in the favorite posts core file.
`
public function enqueue() {
if(!is_admin()){ // conditional check to run only on admin page
return;
}
$screen = get_current_screen();
if ( $screen->id !== 'settings_page_mb-favorite-posts' ) {
return;
}wp_enqueue_style( 'mbfp-style', MBFP_URL . 'assets/favorite-posts-admin.css', ['wp-components'], '1.1.0' );
wp_enqueue_script( 'mbfp-script', MBFP_URL . 'assets/favorite-posts-admin.js', [ 'jquery','wp-color-picker', 'wp-color-picker-alpha' ], '1.1.0', true );
}
`November 21, 2022 at 12:59 AM in reply to: ✅error - MetaBoxFavoritePostsget_current_screen() - settings.php 11 #39239Prabakaran Shankar
ParticipantHi Peter,
I noticed that the following shortcodes are blocked for unknown reasons either from MB favorites or MB user profile.
The shortcodes are
1. [ mb_user_profile_info id="user-details" label_submit="Update Account Details" confirmation="Your information has been changed successfully!" redirect="https://nviewscareer.com/account/setings/" ]
2. [ mb_user_profile_info id="rwmb-user-info" label_submit="Update Password" confirmation="Your new password has been changed successfully!" redirect="https://nviewscareer.com/account/settings/" ]
----- both are in the page https://nviewscareer.com/account/settings/
3. [ user_profile_content_check ] this shortcode based on the shortcode => mb_frontend_form
---- https://nviewscareer.com/account/profile/So, wherever, mb_frontend_form or mb_user_profile_info led to an error when MB favorite posts is enabled.
Please check your mail.
November 8, 2022 at 9:39 PM in reply to: ✅error - MetaBoxFavoritePostsget_current_screen() - settings.php 11 #39006Prabakaran Shankar
ParticipantHi,
Please check your email. I have sent the email with detail error information.October 28, 2022 at 9:39 AM in reply to: ✅Switch field inside the group - Content visibility & required condition #38866Prabakaran Shankar
ParticipantThank you for your consideration to fix it.
October 27, 2022 at 5:48 PM in reply to: ✅Switch field inside the group - Content visibility & required condition #38856Prabakaran Shankar
ParticipantHi,
I did not expressed the query correctly. Could you please take a look at the video?
https://1drv.ms/v/s!AjLgaRuebK87hp0ATrnu5DrX0A1v8w?e=Cednf8In the subgroup, the "required" condition in the field blocks the save post process in the hidden state.
Prabakaran Shankar
ParticipantIn my case I do not need to show the label, but I do need to show the label description. Hence I left the Label field blank. But I added the label description.
Without label, the label description is not displayed in the frontend.October 21, 2022 at 11:32 PM in reply to: ✅Image upload - Validation to stop uploading multiple times #38779Prabakaran Shankar
ParticipantThanks for the consideration to support this feature.
October 21, 2022 at 12:39 PM in reply to: ✅Image upload options says upload error & media popup loads at the bottom #38773Prabakaran Shankar
ParticipantThanks for pointing out the error
Actually it is because the 'style - dashicons' are not loading and the user roles have been blocked from accessing the 'wp-admin'
Both are blocking the process of uploading images.
Please close this ticket.Prabakaran Shankar
ParticipantThank you for your information.
If possible, please edit the document Switch#data
Because it says: "Switch field stores the "on" and "off" status in the database as "1" or "0"."October 18, 2022 at 4:56 PM in reply to: ✅Image upload options says upload error & media popup loads at the bottom #38734Prabakaran Shankar
ParticipantHello,
In the image field option in the front-end form submission, there is an option to add an image. However, there is no option to edit or delete the uploaded image. There is a filter in the documentation to change the text of the edit and delete string.
NOTE:
I changed the user role to "administrator" to check the options. There is also no way for the "Administrator" to change or delete the uploaded image.September 30, 2022 at 10:28 PM in reply to: ✅Please provide example for custom sanitization of nested subgroup fields #38496Prabakaran Shankar
ParticipantThank you so much.
-
AuthorPosts