Robert
Forum Replies Created
-
Forum: Plugins
In reply to: [Nextend Social Login and Register] Google IPAHi @chengjianping!
On your website:
bjhxrm.com/cjp9217
The buttons are not from us, but from Heatero Socil Login.By default we are only displaying the buttons in places where the wp_login_form action was used to create the login form. When the login form is customized, the hooks which are used to call in other codes aren’t existing, so in that case you could use the shortcode of the buttons:
https://nextendweb.com/nextend-social-login-docs/usage/
But we have an option at the Appearance -> Widgets too to display the buttons in a widget position:
https://nextendweb.com/nextend-social-login-docs/nextend-social-login-widget/Forum: Reviews
In reply to: [Smart Slider 3] Very poor in my opinionHi @elaxxl!
Smart Slider has a bit of a learning curve, so I recommend starting with tutorial videos, otherwise it will probably be a little more challenging.
If you are interested, our “How to build” videos would probably be the best at showing how we edit in Smart Slider 3:
https://www.youtube.com/watch?v=nftLZVTSVR0&list=PLSawiBnEUNfuWkliAZOqbV3IKE0sN3vST&index=3&ab_channel=NEXTEND
You can also find more videos on our channel, which you could take a look at to get a good grasp on using the plugin.Edit: You might have used “Absolute” positioning:
https://www.youtube.com/watch?v=_3Knh5hMGrs&feature=youtu.be&t=89&ab_channel=NEXTEND
which allows you to place layers wherever you want on the Slide.
but for “content” we don’t suggest using this positioning, as it cannot produce a good responsive design in most cases. We only suggest using this positioning for decorative elements, like here:
https://smartslider3.com/coming-soon/
the “Coming Soon” text is just in the background, and it doesn’t matter which parts of it gets hidden with different responsive views.
So absolute positioned elements kind of just float there on the Slide, but they have no real connection to other layers.
With default positioned layers, the positioning rather happens from the parent element:
https://www.youtube.com/watch?v=3PPtkRU7D74&feature=youtu.be&t=339&ab_channel=NEXTEND
and by using rows and columns:
https://www.youtube.com/watch?v=3PPtkRU7D74&feature=youtu.be&t=326&ab_channel=NEXTEND
And this is what should be used for building content, as this will have a good responsive behavior, and because of this, the control for these is more strict as well.Hi @banijadev!
If you check the callstack, you can see there are no Nextend Social Login specific calls. They are mostly pointing to the Flatsome theme.
You can confirm this by switching themes, like to a WordPress default theme, e.g. Twenty Twenty-One, then if you no longer see the error that confirms it is from Flatsome. So you should get in touch with the developers of the Flatsome theme and report this problem to them.
Hi @cosmindan22!
Please note that on this forum we cannot help you with questions regarding the Pro Addon, due to the forum rules:
https://wordpress.org/support/guidelines/#do-not-post-about-commercial-products
so if you have any questions related to the Pro Addon, please use our contact form instead:
https://nextendweb.com/contact-us/nextend-social-login-support/In this case specifically, your questions is related to the Free version as well, so I can help with that:
We do not have an option to do this, but for developers we have quite a few actions and filters to use:
https://nextendweb.com/nextend-social-login-docs/backend-developer/
With some custom coding you could achieve this behavior, but please note that we cannot help with custom coding whatsoever, but here is a basic example on how to disable Nextend Social Login registration with the “nsl_is_register_allowed” filter:add_filter('nsl_is_register_allowed', function ($isAllowed, $provider) { $email = $provider->getAuthUserData('email'); if (empty($email)) { add_filter('nsl_disabled_register_error_message', function () { return 'My custom error message.'; }); return false; } return $isAllowed; }, 10, 2);In addition to this, I assume that in such a special case you don’t want to show the traditional “User registration is currently disabled” error message to the users, but you probably want to inform them why the registration is not possible / how they can log in. You can do this via the “nsl_disabled_register_error_message” filter, as you can see above.
Hi @eric410637340!
This problem happens when there is a WordPress account with that email address that has the same type of social media account (in your case Facebook) already linked to that account.
Here is an example to understand it better:
You have a regular WordPress user with this email address: example@user.com
You log in to WordPress via the standard WordPress login. Then with our “link” social login button, you link your Facebook account, which has this email address: test@fb.com
Afterwards, a Facebook user tries to log in with this email address: example@user.com
And since example@user.com already exists, we cannot create it, so we try to link this Facebook account to the user, but that doesn’t work either, since it already has one Facebook account already linked to it, and we throw that error.You can fix this by either logging in with the linked Facebook account (test@fb.com), or with the traditional way, then if you want you can unlink this Facebook account on your profile page, and link this new one if needed, or not and let autolink do that when the user connects with example@user.com Facebook account.
Also, there could be one more reason for this. In the case of Facebook, the IDs of the users are connected to the Facebook app:
https://nextendweb.com/nextend-social-login-docs/provider-facebook/#app_scoped_user_id
So if you have made a Facebook app previously for Nextend Social Login, logged in with your user, then made a new Facebook app, then the new one will not let that old Facebook user log in, as it is identified as a different user (has a different user id). If this is what happened, then what you could is delete the users from the [prefix]_social_users database table, so that they can log in once again.Forum: Plugins
In reply to: [Smart Slider 3] Image on landscape view on mobile versionHi @annunto!
The problem is caused by the Limit Slide width:
https://smartslider.helpscoutdocs.com/article/2033-what-affects-slider-size#limit-slide-width
This option changes the size ratio of a slider on different screen sizes, so turn this option off, and that should fix the problem.Forum: Plugins
In reply to: [Nextend Social Login and Register] Twitter loginHi @jgilbey!
We haven’t yet released the version which contains the new logo.
For now, I’ve uploaded the latest build for you here:Once you downloaded it, you should install the .zip file at WordPress > Plugins > Add new > Upload plugin, and when WordPress warns you about that the plugin is already installed, you should just press the Replace current with uploaded button. Once it is installed, you should now have the new X logo. If you see anything wrong, just let us know!
Forum: Plugins
In reply to: [Smart Slider 3] Different behavior depending on login statusHi @blue2shop!
The problem on your website is caused by Ionos Performance plugin. The way you can know this is, that if you add any parameter to your url:
https://shop.bluezwei.at/?1
Ionos Performance won’t load, and you can see how the slider is fine there.So you should turn off Ionos Performance plugin and that should solve this problem. Or you could also try to contact its developers and ask them to resolve the error they create.
Forum: Plugins
In reply to: [Smart Slider 3] Dynamic Slide Shows Blank ImageHi @ryanb4614!
Dynamic slides from custom post types is a Pro feature, and on this forum we can only provider support for the Free plugin:
https://wordpress.org/support/guidelines/#do-not-post-about-commercial-products
So if you are a Pro user, please contact us through or ticket system instead:
https://smartslider3.com/contact-us/support/
And we’ll help you there.Forum: Plugins
In reply to: [Smart Slider 3] Preventing Slider Autoplay for A/B TestingOkay, I get. As a plus info:
If you want to disable the Autoplay, then you could just go to the Slider Settings > Autoplay tab:
https://smartslider.helpscoutdocs.com/article/1807-slider-settings-autoplay
that way you don’t even need extra scripts for this, we already have an option for it.Forum: Plugins
In reply to: [Smart Slider 3] Preventing Slider Autoplay for A/B TestingHi @asafm7!
You could pause the Autoplay with JavaScript like this:
https://smartslider.helpscoutdocs.com/article/1966-pause-or-continue-the-autoplay
But if this is all you want to test, then it is pointless to do so, as a static image will always outperform any slider. Sliders (not just Smart Slider 3) have significantly more complex HTML structures, thus use more HTML elements (even if you just add 1 image). Furthermore, sliders use more complex CSS and JavaScript, and in the case of a single image you won’t need anything like this (at most only CSS to change the appearance).So if you want to add only 1 image, without any other content, then do not use sliders for that, use the Gutenberg or your page builder’s Image element. If you want to show other content too besides that one image, that is when using a slider could be ideal, but only with the block type:
https://smartslider.helpscoutdocs.com/article/1800-block-type
or if you want to show more images, then with the Simple type:
https://smartslider.helpscoutdocs.com/article/1780-simple-slider-typeTo sum it up: Sliders should only be used when you are building a more complex design, or at the very least more vivid content. Using a slider for a single image would be a total overkill.
Forum: Plugins
In reply to: [Smart Slider 3] Jetpack Photon Support?Hi @asafm7!
Previously we used to, but it caused a lot of problems, so we decided to no longer support it:
https://smartslider.helpscoutdocs.com/article/1746-changelog#3-5-1-17Forum: Plugins
In reply to: [Smart Slider 3] Can’t modify any widget, when Smart Slider is on.Hi @nobo73!
The problem is probably caused by the WordPress 6.3 update, which is already fixed in the latest release:
https://smartslider.helpscoutdocs.com/article/1746-changelog
You may still have an old version running on your page, so please update the plugin (if there is any file cache, e.g. OP Cache, don’t forget to clear it) and that should solve it.If you still see a problem after that, contact us via the ticket system:
https://smartslider3.com/contact-us/support/
and we will look at it.Forum: Plugins
In reply to: [Smart Slider 3] Widgets Block Editor Broken after update to WordPress 6.3Hi @dmdiaz866!
Please note that this topic is already Resolved, and your questions isn’t related to this topic either. If you have any other question related to Smart Slider 3, then please open a new topic:
https://wordpress.org/support/plugin/smart-slider-3/
On your screenshot I see a Wysiwyg like Text block, which is not from Smart Slider, so we have nothing to do with that block. If you want to add custom HTML to your page, then you can use our HTML Layer for that.Also, WordPress itself has multiple Text and Media specific widgets which you can use to add your text or image to your page. But if you are interested only in that Widget which is on your screenshot, then I recommend opening a general WordPress topic:
https://wordpress.org/support/forums/
as mentioned before, this is not related to Smart Slider 3.Forum: Plugins
In reply to: [Nextend Social Login and Register] Nextend Social LoginHi @njorobale!
By default we are only displaying the buttons in places where the wp_login_form action was used to create the login form. When the login form is customized, the hooks which are used to call in other codes aren’t existing, so in that case you could use the shortcode of the buttons:
https://nextendweb.com/nextend-social-login-docs/usage/In case the custom login’s code has to be modified, we have a PHP code, which can be used:
https://nextendweb.com/nextend-social-login-docs/theme-developer/<?php if(class_exists('NextendSocialLogin', false)){ NextendSocialLogin::renderButtonsWithContainer(); } ?>but WordPress’ do_shortcode function can be used too, to display a shortcode:
<?php do_shortcode('[nextend_social_login]'); ?>Just please note, that we do not support custom coding, so we only suggest using these codes for developers.
Additional note: In the Pro version you can automatically show the social buttons in forms we have integration for, including WooCommerce. If you are interested about it, please contact us through our ticket system:
https://nextendweb.com/contact-us/nextend-social-login-support/
as this is a Forum reserved for Free plugins, so we cannot provide support for commercial products, including our Pro version.