stefanledin
Forum Replies Created
-
Forum: Plugins
In reply to: [Responsify WP] [v1.6.4] Fatal ErrorHi MelanieHaver!
Have you tried replacingcontent_filter.php
with the modified version?Since this issue seams to be bigger than i though, I’ll ship an update with this bugfix later.
Forum: Plugins
In reply to: [Responsify WP] [v1.6.4] Fatal ErrorHumm, another bump in the road! This one is harder to solve though.
array_replace_recursive()
came with PHP 5.3, so it doesn’t exists in 5.2.
Maybe you should ask your host if it’s possible to upgrade PHP? Even if we could solve this, I think that you’ll eventually will bump into similar issues with other plugins, scripts or libraries.Forum: Plugins
In reply to: [Responsify WP] [v1.6.4] Fatal ErrorOkey, lets try this one then.
(Rename it tocontent_filter.php
)Forum: Plugins
In reply to: [Responsify WP] [v1.6.4] Fatal ErrorYes! Try this version.
PHP 5.2 is old, even 5.3 is kinda old (5.6 is the current version), but I’ll support it since it seams to be running on many shared hosts.
Forum: Plugins
In reply to: [Responsify WP] [v1.6.4] Fatal ErrorHi phishmanx!
I suspect that your server is running PHP 5.2 or something. That function has been around since the start and has worked on PHP 5.3.Forum: Plugins
In reply to: [Responsify WP] [v1.6.4] Fatal ErrorHi Andy!
It should work if you replaceresponsify-wp/includes/content_filter.php
with this modified version.
I will ship this fix with the upcoming 1.7 release, which will have a couple of new, great features ??Forum: Plugins
In reply to: [Responsify WP] [v1.6.4] Fatal ErrorOkey, good to know.
Thanks for telling me about this, I’ll fix it in the next update!Forum: Plugins
In reply to: [Responsify WP] [v1.6.4] Fatal ErrorHi Celso! Which version of PHP are you using? Spontaneously, it feels like it might be a problem with an old PHP version.
Forum: Plugins
In reply to: [Responsify WP] RetinaYes there is! But I still don’t know how to do it really. I guess that if you have a thumbnail.jpg that is 150px and a medium.jpg that is 300px, medium could also be used as thumbnail 2X.
How/are you working with retina images today?Forum: Fixing WordPress
In reply to: Using in text editorWhat are you trying to insert? ??
<br>
?Forum: Networking WordPress
In reply to: Custom Archive Page – Cannot Load Posts of Previous YearHi destinedjagold!
What happens if you hard code a year and month? Just to make sure nothing is wrong with the $_GET parameters.
What happens if you create a post and sets the publish dates to 2012?Glad I can help ??
Take a look at the introduction video on the plugin page, I found it very good and helpful.
W3 has a lot of settings and can be overwhelming at first, but I suggest that you play around with it.
You can enable minification under General settings->Minify. More settings can be found under Minify.
As I said, play around and see what happens!Forum: Fixing WordPress
In reply to: Responsiveness of menuHi spikie!
It seems like the slider needs a page refresh to adapt itself to the page width.
One thing you could do is to check if the plugin has any javascript API with a method that triggers this behaviour.
If that’s the case, you could call that method when a resize event on the window is fired.Hi chienthan!
I noticed that you have a number of script tags in the<head>
of your site. The first thing you should try is to move them to the bottom of the page instead, right before</body>
.
Then, you should concat and minify as many scripts (and stylesheets) as possible. This should take you a long way and would be good enough.
Plugins like W3 Total Cache are good at this. It takes care of scripts that plugins may add and concatenates them to.If you would like to take it a step further and make PageSpeed insights very happy, the scripts and stylesheets should be loaded asynchronously.
Forum: Plugins
In reply to: [Responsify WP] Wrong image order for high height imagesHaha, I like these kinds off issues ??