Renatho
Forum Replies Created
-
I’m sorry @marcolearning, but I’m not able to reproduce both issues either.
About the support problem, are you in a special network that could be causing it? Are you able to try in a different device and a different network?
The error you see in the console is just a warning about the source map (for debugging purposes only) – something that wouldn’t cause this type of problem.
About the access period issue, I’m happy that you were able to solve that through the database, but I don’t know what could be happening in the editor.
If you are able to create the ticket through a different device or network, it would be good if you could provide us a screenshot of exactly what you see there when trying to select a date in the future.
Best,
RenathoForum: Plugins
In reply to: [WP Job Manager] Register to ApplyHi @alonagomez!
It’s not enough because you want to add some logic to show this text or something like that?
If that is the case, you can add some more customization through a template override.
You can see more details on how to override Job Manager templates in this link: https://wpjobmanager.com/document/template-overrides/
And the text you said that you wanna customize is in this template: https://github.com/Automattic/WP-Job-Manager/blob/trunk/templates/access-denied-single-job_listing.php
I hope it fits your needs!
Forum: Plugins
In reply to: [WP Job Manager] Gutenberg CompatibilityHi Brad!
This is really the expected behavior because Job Manager was built with frontend usage in mind (users submitting the jobs through the submit job form). You can see it explained in this link: https://wpjobmanager.com/document/dealing-troublesome-themes/#section-7
I explored it a little to see if I could offer you a workaround, in case you plan to create the jobs through the WP Admin. So I created this snippet for you:
add_filter( 'register_post_type_job_listing', function( $args ) { unset( $args['template'] ); unset( $args['template_lock'] ); return $args; } );Since it’s not the default behavior, I’d recommend you test the features you are using to make sure everything will work properly with the blocks before start using. π
Best,
RenathoHi Anthony!
You should be able to achieve this behavior by disabling the following quiz settings (quiz block sidebar):
– Indicate which questions are incorrect.
– Show correct answers.
– Show βAnswer Feedbackβ text.You can see more details in this link: https://senseilms.com/documentation/quizzes/#quiz-settings
About the retake feature, we don’t have any setting for this currently. But I registered an issue in Sensei LMS repository, so you can follow it. Here is the link: https://github.com/Automattic/sensei/issues/5584 π
Hi Paul!
There’s no feature to require answering all the questions to submit the quiz. But what you can do is require a minimum percentage of correct answers to pass the quiz. See more details here: https://senseilms.com/documentation/quizzes/#quiz-settings
I hope it helps you! =)
Thank you for your help @deetee1! The change will be in our next release soon! π
@deetee1, I think I got your use case. The student adds the products to the cart, and just after that, you want to ask them to log in, right?
Please, let me know if I misunderstood something, but we’re creating a Pull Request to change the behavior of the purchase button on that notice to redirect to the course page as you requested, instead of the login page. π
Hey @deetee1!
> When they click on the purchase course, it should redirect to the course. Rather it redirects to the login form.
Just to understand your case, after purchasing the product, the user would have to login anyway to access the course, right? Or do you have a customization that the user doesn’t need to login to take the course?
> Is there also a way of activating the learning mode for a specific course only and not globally? This way, I can try the learning mode on a test course before activating globally.
You can activate it only for specific courses through the Course editor sidebar. Check this link for more details:
Forum: Plugins
In reply to: [WP Job Manager] Edit Listing Returns “Invalid listing”Hi @smithcreate!
In a quick check, I think you can try to use the
job_manager_user_can_edit_jobfilter to allow all employers to edit the job listings.You can see this filter here: https://github.com/Automattic/WP-Job-Manager/blob/master/wp-job-manager-functions.php#L726
But it seems you can find new things to customize. And as Cena said, it gets out of scope of this support. In this case, you’d need to dig into Job Manager code to tweak other possible cases that you would have problems.
You can check the code directly through your plugins folder or through Job Manager repository: https://github.com/Automattic/WP-Job-Manager
Best,
RenathoForum: Plugins
In reply to: [WP Job Manager] Job Data Header Not legibleYou can find some instructions on how to add styles to your site here: https://www.wpbeginner.com/plugins/how-to-easily-add-custom-css-to-your-wordpress-site/
Forum: Plugins
In reply to: [SyntaxHighlighter Evolved] SQL statements in article executes on DB.Hi @allcodeunknown !
I tried to reproduce the issue, but I wasn’t able to as well. Could you try to make a test if you can reproduce it in an environment only with the SyntaxHighlighter Evolved installed? Or you could also try to disable other plugins on your site and confirm if the issue persists.
Forum: Plugins
In reply to: [WP Job Manager] Job Dashboard display ALL JobsHi there!
You could do it by filtering the dashboard jobs query args. I imagine the following snippet do what you want:
add_filter( 'job_manager_get_dashboard_jobs_args', function( $job_dashboard_args ) { $user = wp_get_current_user(); $roles = ( array ) $user->roles; if ( ! empty( $roles ) && in_array( 'employer', $roles, true ) ) { unset( $job_dashboard_args['author'] ); } return $job_dashboard_args; } );Forum: Plugins
In reply to: [WP Job Manager] Custom fields not working without classic editorHi Joris!
It’s a default behavior in WordPress. You can enable the custom fields again in the new Editor following the steps:
1. In the editor, click on the three dots in the upper-right corner.
2. Click on “Preferences” option.
3. Select the “Panels” tab.
4. Check the “Custom fields” option.
5. Click on the button “Enable & Reload”.Now you should see the custom fields in the new editor.
Forum: Plugins
In reply to: [WP Job Manager] Job Data Header Not legibleHi Jeannie!
It seems something weird happened with some chars while adding the styles to your site (maybe an encoding error). But you could fix that by adding the following styles:
.single_job_listing .meta li.location::before { content: "\e81d"; } .single_job_listing .meta li.date-posted::before { content: "\e80f"; }Forum: Plugins
In reply to: [WP Job Manager] Changing ‘job’ to something else?Hi there!
I wouldn’t have another suggestion for you. But if Job Manager fits well with your case, and you just want to change some texts, you can check this page for some instructions: https://wpjobmanager.com/document/translating-wp-job-manager/
Just changing the texts wouldn’t complicate the plugin. You could just need to maintain that in case of updates changing the texts or creating new ones.