Milan Dinić
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: what is hostname?Those are informations for FTP access to your server, so hostname is something like http://ftp.example.com and username and password are for it.
Forum: Fixing WordPress
In reply to: Auto-Posts?No one would answer you because your question is not understandable.
Forum: Fixing WordPress
In reply to: How do I change the date-box to “event date” in postsIf there are no options for that theme in control panel, you’ll then need to edit its files manually either in built-in editor or some other application.
Forum: Fixing WordPress
In reply to: Change width of header/bannerIf there are no options for that theme in control panel, you’ll then need to edit its files manually either in built-in editor or some other application.
Forum: Fixing WordPress
In reply to: RSS Feed not updating in Google Reader, etcYou should open your feed in browser and see if there are latest entries in it. If they are, problem is not on your side but on readers side.
Forum: Fixing WordPress
In reply to: Custom permalinksMaybe this is what you want?
Forum: Plugins
In reply to: plugin to enable visitors subscribe to new posts via emailFirst, you must be patient. Second, there are plugins Subscribe2 and MailPress for self hosted subscriptions.
Forum: Plugins
In reply to: [Plugin: WP Minify] Gzip but not minify?Sorry I didn’t respond you earlier.
First, you must separate few things since you are equalizing them. There are three things important here: gziping, concatenating and minifying.
Gzip compression is reduction of size of content and is working between server and browser (not visible to users). Read more about it here, here and here.
Concatenation is combining two or more files (CSS or JS) in one. Why is this done? Because one larger file is loaded faster than many smaller one. Read more here and here.
Minification is reducing size of content by removing comments, white space characters and other unnecessary characters. You can read more about it here, here and here.
WP Minify will do this all automatically for you. It will concatenate all CSS and JS files, minify them (if they are not already minified) and deliver them to browsers compressed. This is not in contrary to what you want.
I hope that this solved all confusion.
Forum: Plugins
In reply to: Image Voting SystemIf you did search, you could find this plugin that has something you are looking for.
Forum: Plugins
In reply to: PHP Speedy or its alternativeI mentioned several alternatives in this post.
Forum: Plugins
In reply to: Embed a video from disk drive not youtube etcAnother way to convert video files is by using online tools like Zamazar.
Forum: Plugins
In reply to: Front end script compress and concatenateThere are several scripts that do this on front end:
Note that all of them have different features and give different results so test results with tools like Live HTTP Headers extension for Firefox or online tools http://www.webpagetest.org/test and http://www.websiteoptimization.com/services/analyze/ (check cache/expiry headers and gziping, see what scripts are concatenated (you don’t want to include popular external files like Google Analytics, AdSense, Google Ajax Libraries or other statistics, ads and similar files which are common and are probably already cached on user’s browser) and so on).
Forum: Plugins
In reply to: [Plugin: WP Minify] Gzip but not minify?If I understood you, you want to have one file where you’ll concatenate all other file and gzip them, but without minification.
Why you don’t want minification?
Forum: Plugins
In reply to: Issues with register_setting/add_settings_fieldFound solution on wp-hackers list, thanks to Austin Matzko.
To quote him:
The problem is that the permalink options page does not post its forms
to wp-admin/options.php, as do the other settings pages. So while you
can add input fields to that page, register_setting() does nothing for
you.Forum: Fixing WordPress
In reply to: How to add static text to login form / wp-login.phpThis message would be shown on both login and registration sceen, but how to show it only on login screen? I didn’t find some conditional tags for it.