ternstyle
Forum Replies Created
-
This is intended functionality for the plugin. If you’d like videos to stop being imported, you can simply remove your channel. This way you can keep and view the videos without the plugin continuing to import.
Hey, gang. I’m pretty sure I’ve solved this.
The problem is with the file:
/includes/core/class-form.phpThe problem has to do with when adding the Roles (Dropdown) field that has custom roles added via Ultimate Member. This field sets role options, but as the title of the custom roles. When a user attempts to register, it checks the role selected against the options set for the field. The problem is on line 587 in the plugin the function
custom_field_roles
returns the titles of the roles and then line 395 compares the slug for the role against the titles of the roles. No match is found and the registration fails because the plugin thinks a user is attempting to register with a non-existent role.Solution:
Change line 395 of /includes/core/class-form.php form this:
( ! in_array( $role, $custom_field_roles, true ) || in_array( $role, $exclude_roles ) ) ) {
to this:
( /*! in_array( $role, $custom_field_roles, true ) ||*/ in_array( $role, $exclude_roles ) ) ) {
PLEASE NOTE: This is a hack and not how things should be done. For the time being it’ll get your registration back up until the Ultimate Member team rolls out a solution. The flaw with the solution is that someone could maliciously register with a non-existent role.
Forum: Plugins
In reply to: [Members List Plugin] where can I find the list ID?If you’re using the free version, click on the “Create a List” menu option for the plugin and you should see the shortcode with ID in the list of your Members Lists.
Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Plugin Stops importing@phantrongvu, if you comment out the 1st and 3rd line of the code above, does the import start working for you?
Forum: Plugins
In reply to: [Members List Plugin] Can’t save settingsHi, there. Can you provide us with WordPress admin and FTP access? We’d be happy to take a look for you. We’re not seeing this issue on our end. You reach out via the contact us form on our website.
Forum: Plugins
In reply to: [Members List Plugin] Fatal Error on searchHi, Johnny.
We’re you able to resolve this? I’m not seeing any errors.
Forum: Plugins
In reply to: [Members List Plugin] Can’t save settingsHi, there. Can you provide us with WordPress admin access to take a look? Reach out to [email protected].
Forum: Plugins
In reply to: [Members List Plugin] Create a List – Not seeing all optionsThe documentation you were reading was for the PRO version. The free one doesn’t have the same features.
Forum: Reviews
In reply to: [Automatic Youtube Video Posts Plugin] This plugin is just a scam !Hi, there. Any chance we can help you get the plugin up and running? With what aspects of the plugin are you having issues. We’re happy to help you. I can assure you we do not offer this plugin as a scam.
Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Triggered a fatal errorWhat version of PHP are you running?
Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Error upon activating the pluginHmmmm. Usually this is due to the use of the WordPress
current_user_can
function. However, when looking into the plugin, it appears all usage of that function is compliant. Are you using the Free or the PRO version?Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Google APi Info outdatedHello, my friend! We resolved this for you, correct?
@friesenjung13, please reach out to us so we can help resolve this for you.
https://www.ternstyle.us/automatic-video-posts-plugin-for-wordpress/contact-us
@friesenjung13, reach out to us. I bet we can help you.
Forum: Plugins
In reply to: [Members List Plugin] Map zoom levelThe map loads all the points and changes the bounds of the map view based on the points added. It focuses in on the points, ensuring they’re all viewable. Due to this, the initial map zoom level is set automatically.