Thanks
]]>Thanks.
]]>1. Is it possible to remove the SPIN / ROTATION? (and the circle/arrows navigation button?) I want users to control the motion, and spinning just looks like a mistake.
2. Can I set the location of the initial load? The center of the page is the bottom left of my object, so it starts off-center.
Thanks!
]]>I have been doing good with the spin formula posted here: https://paste.ee/p/GluOL
But, in my case I need to spin more words (synonyms) inside spintax, so I’d need to implement a nested spin. However, the formula I usually apply in php is not working in Wp All Import.
This is the formula:
<?PHP
class Spintax
{
public function process($text)
{
return preg_replace_callback(
‘/\{(((?>[^\{\}]+)|(?R))*)\}/x’,
array($this, ‘replace’),
$text
);
}
public function replace($text)
{
$text = $this->process($text[1]);
$parts = explode(‘|’, $text);
return $parts[array_rand($parts)];
}
}
How can I adapt it to WP All Import??
Thank you for this awesome Plugin. Best Regards,
]]>the plugin is one of the best I have ever used… Great work!
However, the shortcode does not work with post or page titles/headlines.
When you put in the article title [wpts_spin]{phrase 1|phrase 2|phrase 3}[/wpts_spin] it does not happen anything, it shows the shortcode with the spintax as a title.
Sometimes we need 100% spun content on page loading including the article title.
Is there e simple way we could we could achieve this in text-spinner.php?
Thanks in advance!
]]>