themegurututorials
Forum Replies Created
-
I can definitely understand why this would be handy. Unfortunately, WP Project Manage cannot do that at the moment.
Can you send the screenshot or mention the error?
There is a conflict with the CSS of your theme. Add the following CSS inside the theme’s style.css file.
.preloading-enabled .elm-content-main > .elm-wrapper .entry-content .wpuf-image-wrap .attachment-name img{ transform: inherit; -webkit-transform: inherit; transition: inherit; -webkit-transition: inherit; -webkit-transition-timing-function: inherit; transition-timing-function: inherit; }
It will resolve the problem.
Ok, I will never mind if you create a support ticket on our site. Our support team will be happy to help you.
At first, make sure that the translations file (.po) is not empty. Open the file in a text editor and check that all the strings are translated.
The location for the translation file should be
wp-content/languages/plugins/
You can translate the language for this free version from here. Translate the strings there or you can download the untranslated file and translate them by using poedit locally.
1) Make sure that you have selected ‘Yes’ for ‘Override the post edit link’ option from wp-admin > User Frontend > Settings > General Options. Also, select the page for ‘Edit Page’ option where [wpuf_edit] is located.
2) Check the image field. There is an option called ‘Max. file size’ where you can insert the maximum value for image size.
3) If you want to show all the submitted posts for the logged in user, create a page and insert [wpuf_dashboard] shortcode. It will show the default posts. However, use [wpuf_dashboard post_type=”x”] for Loading specific post types in. Replace x with post type name. Like- “products” for WooCommerce.
I really appreciate you taking the time to share your thoughts with us. Unfortunately, WP User Frontend cannot do this at the moment as there is not post type available for adding a new user.
At first, check the date format you have inserted in the date field. I think you should change the date format according to the format of Event Organizer plugin or WordPress predefined format.
It might solve the problem.
We use WordPress’ best practices to make it as compatible as possible with all themes and plugins; however, some theme and plugin authors do not adhere to these best practices which can often result in a theme or plugin conflict with our plugins.
So, check the theme and plugin conflicts. If you are unable to resolve the issue, let me know.
Have you resolved the problem? If not check the plugin or theme conflict. We are not experiencing such problem with the recent release.
https://www.tipsandtricks-hq.com/forum/topic/test-to-identy-a-conflicting-theme-or-plugin
If you are using the custom field to upload images then it will show the thumbnail size image. However, you need to custom code to show the big size of uploaded images.
$images = get_post_meta( $post->ID, 'meta_key_name' ); if ( $images ) { foreach ( $images as $attachment_id ) { $full_size_thumb = wp_get_attachment_image( $attachment_id, 'full' ); printf( '%s', $full_size_thumb ); } }
You should add the code inside the corresponding post loop that has been defined in the form.
I think the custom fields data are missing in the frontend. If this is the case then enable the ‘Custom Fields in post’ option from wp-admin > User Frontend > Settings > General Options.
Now, submit a post and check in the frontend.
The email notification is only available in the pro version of this plugin.
Get notified when a user submits a post, even be notified when he edits his post. You can get all the post information in the mail without checking your site dashboard. Post title, content, excerpt, tags, category, any custom fields are supported in the mail. Awesome, right?
Please check the theme or plugin conflict.
https://wedevs.com/24556/identify-conflicting-plugin/
https://www.tipsandtricks-hq.com/forum/topic/test-to-identy-a-conflicting-theme-or-pluginI have already replied there. Please check the last reply.