274 comments found.
Hi Antoine,
I got the following question regarding the typewriter plugin:
I want to output a total of 4 lines of text, the lines should appear one after the other with a short delay and not be deleted after output on the screen. So that at the end you can see all 4 lines. Can I do that with this plugin?
Many thanks Torsten
Hi, yes you can use it with html tag like
<br />to have 4 lines. Use this :
"lorem ipsum <br /> lorem ipsum <br /> lorem ipsum <br /> lorem ipsum"
And deactivate “loop” parameter to don’t restart after finish.
All other parameters are customizable : Typing speed, delay before start, etc like indicated in plugin page.
Or create 4 different code with different delay.
Hi, I hope you’re doing fine.
The plugin caused a fatal error on my website, so I deactivated it. However, when I tried to delete and install it again (I thought it might be an updated issue), but I couldn’t delete the plugin. Do you know what is causing this issue?
Thanks,
Hi, you have to unzip the file. The zip file to install is inside the main zip file. If that doen’t work give me the error that displayed.
Hello,
This plugin can be used in search bar ?
Best regards.
If you have developer skills you can use it anywhere.
Use this in your theme file in the file “search.php” :
<?php echo do_shortcode( ’ [name_of_shortcode] ’ ); ?>
Hello,
we get an uncaught Type Error of Jquery. https://www.dropbox.com/scl/fi/k0hi4829dklv2ieqio76k/WhatsApp-Image-2024-03-29-at-10.03.40.jpeg?rlkey=ks74hl9s3qolwz9qw67rwyp9z&dl=0 https://www.dropbox.com/scl/fi/o0qgcwvfspap6wzxcafjb/WhatsApp-Image-2024-03-29-at-10.03.18.jpeg?rlkey=2piwj94n0s2dwvc7acc1y47s9&dl=0Nay idea what to fix? Many thanks for your help.
Best wishes
Niels
Hi, update the plugin and retry.
Seems pretty cool, but disappointing that all the fonts are typewriter fonts – I would like to see a san serif one like Lato or Arial used.
Hi, Sorry for the delay. You can use any font you want. It’s explained in the doc. You have to convert your font in svg font first, by using a free online tool, that take 5 minutes.
Hi,
I do not have the plug-in WordPress file for downloading when I purchased it.
Thank you.
Hi, The plugin file is inside the zip file like all the plugin you have to uncompress zip before.
I am experiencing issues on safari browsers (mac) when running two instances of the typewriter effect code on the same page. Is this supported? If not, can you provide an update to allow for this?
Hi, in principle it is possible but maybe there may be issues on safari. This is old version of safari ? What is the issues ?
I’m running Version 16.2 (18614.3.7.1.5) – current version. What I’m noticing is that the first instance of the code fires properly but the second snippet doesn’t fire. On our homepage: https://shipscience.com
Maybe because the js files are loaded twice :
<script src="https://k5b7n4i6.rocketcdn.me/wp-content/plugins/font_typed//js/jquery.min.js" type="text/javascript"></script>
<script data-minify="1" src="https://k5b7n4i6.rocketcdn.me/wp-content/cache/min/1/wp-content/plugins/font_typed/js/typed.js?ver=1674842379" type="text/javascript" defer></script>
Try to insert them in your header theme and remove them from font-anim.php plugin file to load them once.
Thanks, will try that.
Hello – I purchased this plugin yesterday and when I tried to install it on wordpress, the install stalled with the error message, “The uploaded file is not a compatible plugin.” I’m running the latest version of Wordpress, 6.1.1. I would like to receive an updated plugin that runs with the current Wordpress or a refund. Thanks.
Hi, you have to upload the plugin file that is in the zip file.
1. decompress the entire zip with plugin and doc 2. upload the plugin.
hi i have purchased ur plugin with hopes that it will work with my translated page but unforuntely this failed.
the text is flashing weirdly in the translated page of my website u can have a look your self in this link https://www.lxdesignstudio.co/de/uber-uns/Could u please advice how to fix this?
Hi, which plugin do you use for translation ?
Hi Antoine… I’m trying to disable the backspacing but not having any luck… could you please point me in the right direction? Thanks!
Hi, Just unchek a checkbox.
I’m sorry… but I’ve tried unchecking all 4 boxes that I see… they are labelled “Shuffle sentences (random)?”, “Loop?”, “Show cursor?”, and “Cursor blink?” Unchecking all of these does not disable the backspacing… please provide more detail…
Also, how do I add a custom amount of delay time in a specific sentence?
Thanks!
Hi. Just read the documentation all is explained. For your asking you have to uncheck a box or define a value to 0.
I’m sorry Antoine, the documentation either does not exist or is very poor. I found this in an older support comment:
onStringTyped: (arrayPos, self) => {
$('#typed').fadeOut();
},
preStringTyped: (arrayPos, self) => {
$('#typed').show();
}
Thanks in advance… Where exactly in font_anim.php do I insert the above to get the text to not backspace and fade out?
Please identify or highlight within the below (copy of font_anim.php): error_reporting(0); { $rand=rand(100,999); } <?php if ( $params[‘blinkCursor’]==”true” ): ?> -webkit-animation: blink 0.7s infinite; -moz-animation: blink 0.7s infinite; -ms-animation: blink 0.7s infinite; -o-animation: blink 0.7s infinite; animation: blink 0.7s infinite; <?php endif; ?> } @-keyframes blink{ 0% { opacity:1; } 50% { opacity:0; } 100% { opacity:1; } } @-webkit-keyframes blink{ 0% { opacity:1; } 50% { opacity:0; } 100% { opacity:1; } } @-moz-keyframes blink{ 0% { opacity:1; } 50% { opacity:0; } 100% { opacity:1; } } @-ms-keyframes blink{ 0% { opacity:1; } 50% { opacity:0; } 100% { opacity:1; } } @-o-keyframes blink{ 0% { opacity:1; } 50% { opacity:0; } 100% { opacity:1; } } </style> (function($){ ‘use strict’; } ?>
$(".cl<?php echo $rand;?> #typed").typed({
strings: ["<?php unset ($params'text'); $text0='';
$text_arr=$params['text'];
if ($params['shuffle']=="true") {shuffle ($text_arr);}
foreach ($text_arr as $text) {$text0.= $text.'","';}
$text0 = substr($text0,0,-3);$text0 = str_replace("\n",'\n',$text0); echo $text0;?>"],
typeSpeed: <?php echo $params['typeSpeed']; ?>,
backSpeed: <?php echo $params['backSpeed']; ?>,
startDelay: <?php echo $params['startDelay']; ?>,
backDelay: <?php echo $params['backDelay']; ?>,
randomize: <?php echo $params['randomize']; ?>,
cursorChar: '<?php echo $params['cursorChar']; ?>',
showCursor:<?php echo ($params['showCursor']); ?>,
loop:<?php echo ($params['loop']); ?>,
contentType: 'html',
loopCount: <?php echo $params['loopCount']; ?>,
callback: function(){
},
resetCallback: function() { newTyped(); }
});
function newTyped(){ }
function foo(){ console.log("Callback"); }
}(jQuery.noConflict(true)));
</script>
<?php }
This code has no link with your problem.
You have a checkbox “loop” and a field “loop count”. If you uncheck “loop” that would be sufficient.
If that doesn’t work send me credential login through profile page (private message).
Regards.
For your second problem (custom amount of delay time in a specific sentence) the plugin don’t propose this option.
Installation of the plugin went fine, but when I try to activate the plugin, I only get the following error:
“Plugin could not be activated because it triggered a fatal error. TypeError thrown call_user_func_array(): Argument #1 ($callback) must be a valid callback, non-static method ftanm::activation_hook() cannot be called statically”.
What should I do?
It seems there are a compatibility error with new wp version. I check that and come back to you.
Thank you for your quick reply!
In fact that comes from php 8. You are on php 8 ? Can you send me credential wp login by private message ?
php—version PHP 8.0.21 (cli) (built: Aug 1 2022 07:40:52) ( NTS ) Copyright© The PHP Group Zend Engine v4.0.21, Copyright© Zend Technologies with Zend OPcache v8.0.21, Copyright©, by Zend Technologies
Ok. Can you send me login credentials via profile page ?
It’s good. The plugin is updated and works fine with PHP 8.
Thank you Antoine for superb customer service!
Maybe you should check folders in the font_typed.zip file. At the moment font_typed folder contains another font_typed folder. I think this prevents installing plugin straight from zip but you have to unzip it first.
Yes you have to unzip the totally folder that contains documentation and import the “font_typed.zip” file this is the plugin. Like the precedent version.
Yes you are right the font_typed folder contain another font_typed I udpate this. Thanks for the observation.
I send you the corrected file by email (with correct folder hierarchy).
Thanks again!
Hi is it compatible with elementor? I have site completely done in Elementor so I need to use it inside elementor. Is that possible?
Hi, yes it’s possible and compatible. Just insert the shortcode anywhere.
I just purchased your Advanced Typing Effect WordPress Plugin. It installs but when I activate the plugin I get the following message: “Plugin could not be activated because it triggered a fatal error.” Further, I cannot delete the plugin without resorting to using an FTP client. My site is WordPress using Kleo theme. When I deactivate other plugins, it still gives me the error message when I try to activate the plugin,
Hi there, I must be doing something wrong. First of all, why are you setting the time in milliseconds? Also, is there a “how-to” video on using this? I set the milliseconds to 100000000 and it doesn’t appear to do anything except place the text all at once on the page.
https://palmerpletschdigital.com/font-animation-preview-page/So I set the animation to 1000000000000000 and it still doesn’t do anything.
Also, the preview function doesn’t work. I end up having to save every change I make and then refreshing the admin page but it was faster to just put the shortcode into a regular page and refresh that page.
It looks like a cool product but so far it’s dead on arrival. Nothing happening here. Well it was only $12 bucks.
Thanks, Andrew
Hi, send me credential login in principle preview function may work. In your test page the function run with no strings. You have to add some text first.
Or show me a capture of the admin page and inspect the console if you have js error.
I would like to be able to display the animation and then load page elements after it completes. Is there an event trigger when the animation finishes that I could use to bring other elements into view once it finishes?
Hi, Sorry for delay. Check the documentation of the javascript library used by the plugin.
Hi
I have purchase your Advanced Typing Effects plugin at codecanyon.net 2fa3df4e-b0a4-4f4f-a6f3-3691d0b59058 – 6 Apr 2022
Preview not works fine at all.
You can support me?
Thanks.
Hi, can you send me credential login through private message (via profile page)
Hello Antoine. I’m trying to use the plugin in a site built with Divi Theme, but I cannot make it work. Can you help me?
Hi, what happen’s ? you can send me all details through private message.
Hello,
I’m working with this plugin as I develop a Wordpress child theme locally using Local By Flywheel. When I’m logged in to the WP admin, the typed text displays normally on the front end. When I’m not logged in, I get the following error message on the front end: Warning: sizeof(): Parameter must be an array or an object that implements Countable in /Users/willis/Local Sites/anna-weesner/app/public/wp-content/plugins/font_typed/font_typed.php on line 511
I’ve tried switching to the default 2020 and 2021 themes and I still get the error. My Local setup is nginx, PHP 7.4.1 and Wordpress 5.8.3.
Let me know what other information you need from me. Any help would be appreciated.
Many thanks.
Hi, This is warning message. This is not error. It’s not important. You must deactivate warning display. Search on google “how deactivate warning message on wordpress”.
I’m having a major problem trying to centralize my typing text. Website is https://lisaandneil.co.uk
Where do I put the css code? I’ve tried to other given codes in appearance -> customise -> custom css but nothing happens
Hi, where is your typing text ? I don’t see it.
I don’t have it visible anywhere yet because it doesn’t look right so I’ve not published it
Ok just add it and I give you the css to add (in appearance -> customise -> custom css). In 5 minutes it’s done.
I’ve put it at the bottom of this page: https://lisaandneil.co.uk/faqs It’s in the bottom left hand corner above the footer
Use this :
#typed_div{text-align: center;margin: auto;display: block;}
Or this to have the height space well define :
#typed_div{text-align: center;margin: auto;display: block;height: 43px;padding: 8px 0;}
It worked! Thankyou.
How can I set it so there’s text after as well as before?
After and before what ?
So I’ve got the word “photography” static. And then typing text afterwards. How do I put the word “photography” after the typing text instead of at the front?
I think you can use 2 shortcodes next to next.
thanks!
Hey so I can’t put two snippets next to each other so how can I put the word photography on the end so it isn’t typing?
You can put two snippets next to next but you have to define css. The best is to put the two snippets in a div with a class and use css to place the div and other css for the snippets. It’s one little more complicated.
I don’t know what any of that means but thanks
You want a fixed text with dynamic text before and not after ?
Add your dynamic text (without fixed) on a page and give me the static text you want I’ll try to give you css to have the wanted result.
Hi…
I just purchased this item now…
is there any solution to change the Fixed text and typing sentence colors…?
Hi, Yes alright. With css. Look at the previous comment and tell me if you don’t find.