I have worked on it and that feature exists in this plugin. But at the moment that is disabled. You can find it inside as disable_ something.
Thread Starter
lacon
(@lacon)
Thanks for the reponse Fahad. I have little exposure to plugin code. I think you’re talking about this section inside script.js?
function disable_ap_letters(obj){
//console.log(obj);
if(jQuery(obj).length>0){
var obj = jQuery(obj);
var letter = obj.find(‘a’).html();
//obj.html(letter);
}
}
I have tried renaming it to ap_letters, but I don’t see any impact. Can you be more explicit?
I have coded a function and it’s test as well. Just paste it somewhere in plugin or in your theme’s functions.php. It will automatically start working with the plugin.
https://codeshare.io/lxvOn
The only problem is, it will put load on your database because it will query for every single letter.
Here is another snippet to make the letters disable using PHP array with JS.
https://codeshare.io/a2GqT