igrossiter
Forum Replies Created
-
Forum: Plugins
In reply to: [Wordpress PDF Light Viewer Plugin] It doesn't work….updating the ImageMagick version on the server solved the problem, thank you again!
Forum: Plugins
In reply to: [Wordpress PDF Light Viewer Plugin] It doesn't work….no problem, thank you, I’m talking with my host company.
Forum: Plugins
In reply to: [Wordpress PDF Light Viewer Plugin] It doesn't work….I got the error log from my host company and found these two errors
… PHP message: PHP Warning: set_time_limit() has been disabled for security reasons in /…/wp-content/plugins/pdf-light-viewer/controllers/PdfController.php on line 505, referer: (admin url)
… PHP message: PHP Fatal error: Call to undefined method Imagick::transformImageColorspace() in /…/wp-content/plugins/pdf-light-viewer/controllers/PdfController.php on line 602, referer: (admin url)Imagick seems to be installed correctly as I can see on the plugin requirements area https://i.imgur.com/yFr21yz.png
Is the set_time_limit essential? it seems to be disabled for security purposes on my host.
Forum: Plugins
In reply to: [Wordpress PDF Light Viewer Plugin] It doesn't work….Hi, I have the same problem, gonna check the logs and post anything relevant here.
Forum: Plugins
In reply to: [AdRotate Banner Manager] There is some kind of api for ads on adrotate?Yes, I think this gonna work, thanks!
Forum: Plugins
In reply to: [OneSpace Last Post] Unlink the excerpt and add a read more link?You’re welcome!
Forum: Plugins
In reply to: [OneSpace Last Post] Unlink the excerpt and add a read more link?Nice, another quick fix would be changing:
if (strlen($content) > $max_char - strlen($text)){ $content = substr($content, 0, $max_char); }to
if (strlen($content) > $max_char - strlen($text)){ $content = substr($content, 0, $max_char); } else { $text = ''; }That would check if the text is bigger, then reduce it. If not I removes de content of the $text variable. not tested!
Yes, I can add it to the next release, although I’m not sure when its gonna be, note taken!
Forum: Plugins
In reply to: [OneSpace Last Post] Unlink the excerpt and add a read more link?Hi, sorry for the late response, you can try to change it on core/class-os-lastpost-printer.php, the trimContent function on line 161.
change:
if (strlen($content) > $max_char - strlen($text)){ $content = substr($content, 0, $max_char) . $text; }to
if (strlen($content) > $max_char - strlen($text)){ $content = substr($content, 0, $max_char); }and
return '<p><a href="' . get_permalink($p->ID) . '">' . $content . '</a></p>';to
return '<p>'.$content.'<a href="' . get_permalink($p->ID) . '">' . $text . '</a></p>';UNTESTED
Forum: Plugins
In reply to: [OneSpace Last Post] read more link?Hi, I’ll mark this thread as resolved, if you still find problem with the patch please let me know
Forum: Plugins
In reply to: [OneSpace Last Post] read more link?Hi sewage666, can you send me a email at ian[at]onespace.com.br so I can send you a patch?
Forum: Plugins
In reply to: [OneSpace Last Post] read more link?Sorry, the plugin doesn’t have support for that yet. I will try to add it to the next release, although I don’t have a date yet.
Forum: Plugins
In reply to: [Instagram Picture] cant update pictures, curl is enabledsended! thanks!
Thanks for the answer Stefano, but I really need to display just a ballon with the message (like the validation error) for successful subscription. Can I achieve this with your plugin?
Thank you very much!
Hi, I’ve found how to change the page on newsletter > subscription Steps > confirmation and set it to my homepage, which is the page that has the form, but no message is displayed. How can I display a bubble if the confirmation message?
thanks and great plugin