Nextendweb
Forum Replies Created
-
Forum: Reviews
In reply to: [Smart Slider 3] Amazing, the best slider out there now?Here is how they are stacking in Desktop -> Tablet -> Mobile: https://www.youtube.com/watch?v=X38kZF7E52E
By default on mobile every column wraps into new lines, but you can adjust this too: https://i.imgur.com/iCgSiQL.png
Forum: Reviews
In reply to: [Smart Slider 3] Amazing, the best slider out there now?@richardshea Column issue: That is not the default behavior. Best would be to export your slider and send the exported file to me. I can check it right now: [email protected]
Forum: Reviews
In reply to: [Smart Slider 3] Amazing, the best slider out there now?Hi @richardshea,
thank you for your feedback!Regarding your opacity issue: it might be a misunderstanding as the opacity property sets layer’s opacity which includes the text on it as well. If you want to adjust the background color’s opacity, you should open the color picker and there is a slider for the opacity. Here is a screenshot where you can find it: https://i.imgur.com/RbOWXEn.png
Also I will start a discussion in our team as it is not good to call that section “Background” as it could result this confusion, I agree with you. https://i.imgur.com/0lzOUxM.pngIf you have a few minutes please send us those other bugs that you mentioned. We would like to improve Smart Slider 3 wherever we can. Thank you! You can send it to [email protected]
Forum: Requests and Feedback
In reply to: Any plans for updating the bundled jQuery version?Forum: Plugins
In reply to: [Smart Slider 3] Revert Back to 3.3.28Hi @geylang666,
Iām sorry, but the data structure of Smart Slider 3.4 is different than the 3.3 format. This is why the newly created slider and changed sliders/slides are nit working when you downgrade. If you really want to downgrade, you will need a database backup (which is older than 3.4 update) and you should restore that point.But I suggest you to keep using 3.4 as it has a lot of improvements. If you provide us more details about your issue, we might been able to solve it with 3.4.
Forum: Plugins
In reply to: [Smart Slider 3] Slider invisible on postsHi @alexiamaria,
I’m sorry, but AJAX page loading is not supported officially. I suggest you disable the ajax page loading in your theme and everything should be fine.If you really want use the ajax page loading, we can create a workaround tomorrow for your theme, but that would mean that the slider is loading in an iframe.
Forum: Plugins
In reply to: [Nextend Social Login and Register] Google Logo non complainceHi @harim,
Please go to the Google provider and change its button from red to the white or the blue. https://nextendweb.com/nextend-social-login-docs/provider-google/Those are the official Google buttons.
Forum: Reviews
In reply to: [Smart Slider 3] Won’t even install correctly.@doingsomewordpress, please open your PHPMyAdmin, then run the following query:
SHOW CREATE TABLE wp_nextend2_smartslider3_slidesThis will display the current structure of your table and it could help us to identify this bug.
Here is an example how you can get it: https://i.imgur.com/FXM6zWq.png
Thank you!
Forum: Reviews
In reply to: [Smart Slider 3] Won’t even install correctly.Hi @doingsomewordpress,
I’m not sure why don’t you contact with our support staff. If you identify a problem it is better to contact with the developer to be able to address and fix the issue as it might help other people too. That is how the community could help to make WordPress, plugins and themes even better.I tried to reconstruct this error based on the given information. Our code were prepared for this error, this is why I’m not sure why do you got these errors.
– #1 line: Check if there is an existing key
– #2-#4 lines: If there was an existing key, delete it
– #5 line: Create the key with the new format$hasIndex = Database::queryRow(Database::parsePrefix("SHOW INDEXES FROM #__nextend2_smartslider3_slides WHERE Key_name = 'thumbnail'")); if ($hasIndex) { $this->query("ALTER TABLE #__nextend2_smartslider3_slides DROP INDEX thumbnail"); } $this->query("ALTER TABLE #__nextend2_smartslider3_slides ADD INDEX thumbnail (thumbnail(100))");I your case you can only get those 2 errors, if #1 tells that the key exists. But then in #3 based on your error message, MySQL tells that the key is not exists. Then in #5, MySQL tells that the key exists. Very strange…
Forum: Plugins
In reply to: [Smart Slider 3] Browser cache control for mp4 doesn’t work@hiroyoshimu, I’m glad it worked! š
Forum: Plugins
In reply to: [Smart Slider 3] Browser cache control for mp4 doesn’t work@hiroyoshimu, I checked that page and now it seems fine for me. If I let the video play, then the video was used from cache properly after I hit F5.
https://www.youtube.com/watch?v=fOqH2HpYBtY
Maybe the cache is not working if only a part of the video downloaded. I’m not sure about that… this one requires special experience.
Forum: Reviews
In reply to: [Smart Slider 3] Don’t use (free) versionHi @andra13,
could you tell me what is exactly removed from the free version?Every feature which was available in the free version stayed in the free version. We added even more options from the pro to the free.
Some features are available in a new place, please check our blog post about the changes and I’m sure that you will find the location of those features what you are missing: https://smartslider3.com/blog/important-changes-in-34/
Forum: Plugins
In reply to: [Smart Slider 3] Browser cache control for mp4 doesn’t work@hiroyoshimu, It is an Apache 2.4 server with Cloudflare CDN front of it.
I just checked on my local test server and I see that I needed etag header for the video to force to browser to cache. As I saw etag was disable on your server, so I suggest you to enable etag for mp4 videos and try it again.
Maybe this will be the way to go
<FilesMatch "\.mp4$"> FileETag MTime Size </FilesMatch> <IfModule mod_mime.c> AddType video/mp4 .mp4 .m4v </IfModule> <IfModule mod_expires.c> ExpiresActive on ExpiresByType video/mp4 "access plus 1 month" </IfModule>- This reply was modified 6 years ago by Nextendweb.
Forum: Plugins
In reply to: [Smart Slider 3] Browser cache control for mp4 doesn’t workI made a test on our server, could you check it? (I will delete these contents as soon as you check it.)
https://smartslider3.com/bugs/test/index2.html
It is a slider and I added two of your videos and I uploaded your videos to our server. If you check for a while, you will see that videos will be server from your browser’s disk cache. So I think it is still related your your response headers somehow.
Forum: Plugins
In reply to: [Smart Slider 3] Browser cache control for mp4 doesn’t workIn Chrome your cache seems fine for me. Screen recording: https://www.youtube.com/watch?v=dluhTA-Bnlw
There is no request made when I’m playing the video.
What I wrote you previously is all I know about hosting videos. In Smart Slider 3, we use simple HTML5 video player and there is no switch where we could cause to cache or not cache a video. It really depends on the browser implementation and the response headers. Maybe you can ask your question on a more suitable forum like https://serverfault.com/ where people has more experience with it.