Robert
Forum Replies Created
-
Forum: Plugins
In reply to: [Smart Slider 3] Purge Cache through CRONI am sorry but we don’t have an option for that.
I have not tested it, but perhaps you could try “wp eval”:
https://developer.wordpress.org/cli/commands/eval/
which would allow you to run PHP through WP CLI.Or if you made a file with the PHP scripts, with “wp eval-file” maybe:
https://developer.wordpress.org/cli/commands/eval-file/
However, please note that we cannot provide support for custom coding.Forum: Plugins
In reply to: [Smart Slider 3] Purge Cache through CRONHi @csn123!
You can find our public API here:
https://smartslider.helpscoutdocs.com/article/1993-public-php-api
which has a section to clear the cache.Forum: Plugins
In reply to: [Smart Slider 3] Scroll down PageHi @iceeyes!
For such things you will need some developer knowledge. The first ting you should do is inspect your page, like you see here:
https://smartslider.helpscoutdocs.com/article/1935-troubleshooting-with-your-browser#findcode
to find out what HTML code made that part where you want to scroll. In HTML codes you have the opportunity, if you have an element with an “id”, like this:<div id="something">This is my element</div>to use such a link on your page:
#something
and it will jump to that element. You could use this in any of your link fields:
https://smartslider.helpscoutdocs.com/article/1830-link#where
In your case you have id at your sliders, which you could use:
#slider-blog-carousel-dynamicID-415309
If you want to go elsewhere, you will need to make new elements with your page builder, with an unique id.Please note that we cannot provide support for custom coding, so you will need to achieve this yourself. Additionally, you won’t be able to use smooth scrolling, so you will need to solve that with a custom code or a plugin.
Besides this solution, in our Pro version we have an option for this: (Link->Action->Scroll to: https://smartslider.helpscoutdocs.com/article/1830-link#actions)
which would allow you to scroll to any element, even classes:<div class="uniqueclassname">Element</div>but instead of “#” you would use “.”:
.uniqueclassnameThis feature would give you smooth scroll. However, the biggest challenge here still, is to learn to be able to inspect the elements on the page.
If you are interested in this Pro feature, please contact us through our form:
https://smartslider3.com/contact-us/support/?topic=Editing&editing-group=Editing-Other
as here we can only provide support for the Free version.Forum: Plugins
In reply to: [Smart Slider 3] Smart Slider not loading images on pageI still can’t seem to find anything, so please contact us here:
https://smartslider3.com/contact-us/support/?topic=Publishing&publishing-group=Publishing-Other
so we could debug this issue further.Forum: Plugins
In reply to: [Smart Slider 3] SmartSlider 3 disappears when upgradedHi @parapet!
We cannot find any HTML codes related to sliders, as if none is published.
If you put s Divi text module in the place where the slider’s module is currently as a test, is it displayed? If so, please contact us here:
https://smartslider3.com/contact-us/support/?topic=Editing&editing-group=Editing-Other
so we could debug this problem further.Forum: Plugins
In reply to: [Nextend Social Login and Register] social login button not showing upBy 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/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.
Additionally, you could also contact the developers of your theme, and maybe they will be able to provide a simple solution to add custom content to the form, and then you could add the shortcode there. Forum: Plugins
In reply to: [Smart Slider 3] Smart Slider not loading images on pageHi @yirayonezawa!
On the linked page I could not find any Smart Sliders. But on your KIDS CLUB page I did. There, all the sliders worked fine for me. Could you please check if you still see this issue in a different browser?
Forum: Plugins
In reply to: [Smart Slider 3] Widget page in blank (empty)Hi @gusum!
We have just released a new version for Smart Slider.
So please go to your plugins list, and update Smart Slider to the latest version (3.5.1.19), and that should solve the problem.
If you see anything wrong after this, just let us know!Hi @omc123!
You are correct, none of those require an App Review by default, so I believe the problem is that:
1. You have set something in the App that you shouldn’t have, so for now I suggest making a new App by following the steps:
https://nextendweb.com/nextend-social-login-docs/provider-facebook/#configuration
as our Video for that is fairly outdated, so in case you followed that, that could result in such unexpected results.
2. You have a plugin or theme code that adds extra parameters to the URL (possibly to only social login related URLs) and requests permissions which are not needed. As you see in this documentation (it is for our other plugin, but the idea is the same):
https://smartslider.helpscoutdocs.com/article/2006-how-to-use-health-check-troubleshooting-plugin
With the Health check & troubleshooting plugin, while only Nextend Social Login is enabled, check if you can see this problem or not. If you can, then the problem is in the App.Forum: Plugins
In reply to: [Smart Slider 3] Widgets Block Editor Broken after update to WordPress 6.3@alexdx, @alexeyanufriev!
In case anyone has the same problem as well, please follow the instructions from Laszlo in this ticket:
https://wordpress.org/support/topic/smart-slider-breaking-backend/#post-16960696
This should solve the problem. If everything goes according to schedule, we will release the new Smart Slider version with the fix on Monday.If anyone is using the Pro version, please get in touch with us here:
https://smartslider3.com/contact-us/support/
As we can’t provide support for commercial products, like Smart Slider 3 Pro here.No matter where you press the social login button, it can be used for registering and login. So if you don’t want users to register in your login form, or vica versa, then you will need to do so with custom coding.
Please note that we cannot provide support for custom coding and the problems that come as a result of these custom codes.But basically what you should do is that you should be able to distinguish the register form from the login form according to some logic. For this, you could, for example, publish the buttons manually with a shortcode in a way that you set a unique tracker data for the login form, based on which you will know that it is a login form:
https://nextendweb.com/nextend-social-login-docs/backend-developer/#trackerdata
and you could hook a custom function to the “nsl_is_register_allowed” filter (you can find its parameters in the documentation above), and based on the tracker data, it would return the original value, or false (if it is false, the registration will be blocked).Besides this, the:
- nsl_disabled_register_redirect_url
- nsl_disabled_register_error_message
filters can be used to redirect the user somewhere else after they are blocked from registering, or to override the error message.
Hi @dblooper!
Go to Nextend Social Login > Global Settings > General tab > Membership:
https://nextendweb.com/nextend-social-login-docs/global-settings/
set this to “Disabled” and that should solve this problem.Forum: Plugins
In reply to: [Smart Slider 3] Smart Slider3 under WordPress6.3Hi @buzzlyhan!
We were unable to reproduce this problem, so please contact us through or ticket system:
https://smartslider3.com/contact-us/support/?topic=Publishing&publishing-group=Publishing-Other
so we could debug this issue further.Forum: Plugins
In reply to: [Smart Slider 3] Dynamic slides (future posts, filter by category, …)?Hi @webmark487!
Are dynamic slides (source: WordPress posts) only available with the pro version?
The “Posts by Filter” and “Posts by IDs” are also available in the Free version:
https://smartslider.helpscoutdocs.com/article/1891-wordpress-posts-generatoris it possible to show posts with a publishing date in the future as well?
If you mean that you want to show them in the future, whenever the post is published, then this is the default behavior.
But if you meant that you want to to show them in the slider before they are published, then that is only available in the Pro version.is it possible to filter by more than 1 category?
If you hold down Ctrl while you select in the “Categories” list, then you can select more than one.
If you want to set a different filtering for each category, then you can add more dynamic slides to your slider, with each having a selected category for example.is it possible to filter by a category, and at the same time exclude posts of a certain category?
In the Pro version, there is an option for this.is it possible to format slider content (eg. the title of a post) depending on its category? (one category – red title, another category – blue title)?
If you add a separate dynamic slide to your slider for each category, you could do this, because the layout and styles set for the given dynamic slide would apply to the slides from the given generator.
The other option is that you make a custom CSS Class for each category on the Style tab:
https://smartslider.helpscoutdocs.com/article/1812-layer-style#advanced
with the help of a variable which carries an unique information about the category, e.g. slug. You could write content around the variables like this:my-class-for-{category_slug/1}
in this case for example with the Posts by filter generator the {category_slog/1} would carry the slug of the category, and if you you have a “uncategorized” slug category, then for the slide coming from the post, it would add a CSS Class to the given layer like this:- my-class-for-uncategorized
Like so for all CSS classes you could write custom CSS, which styles the elements as you wish.
However, please keep in mind that we cannot provide support for custom coding, including custom styling, so if you decide to do this, you will need to solve the problems that may arise from doing so yourself.
In case you want to know more about the Pro features, then please contact us through or ticket system:
https://smartslider3.com/contact-us/support/
as this forum is used for the Free version, and as per the Forum guidelines:
https://wordpress.org/support/guidelines/#do-not-post-about-commercial-products
we cannot talk about “commercial products”, like our Pro version of the plugin.- This reply was modified 2 years, 9 months ago by Robert.
Forum: Plugins
In reply to: [Smart Slider 3] Load slide side by sideHi @jennyong!
If you want to display slides side by side, we have an option for that in the Pro version. However, we can only provide support for the Free version on this forum, as per the forum guidelines:
https://wordpress.org/support/guidelines/#do-not-post-about-commercial-products
So if you want to know more information about the options, please contact us directly through the ticket system:
https://smartslider3.com/contact-us/support/Additionally, I am not quite sure what you are trying to achieve exactly, so could you perhaps also include a link to an example in your ticket where this is visible – what you would like to build with Smart Slider 3 – and like that we could tell you exactly if it is possible at all.