channeleaton
Forum Replies Created
-
Forum: Plugins
In reply to: [Multisite Maintenance Mode] Localization?Hi there!
I just pushed a release that contains a .pot file to allow you to translate the plugin. You can send me the translation files and I’ll include it in my next release.
Forum: Plugins
In reply to: [Multisite Maintenance Mode] ErrorHi GrayHunter,
I just pushed up a release to fix this.
Forum: Hacks
In reply to: How to add shortcodes to PHP namespaceJust a heads up, you no longer have to pass
$this
by reference (the&$this
) as of PHP 5. Feel free to save a keystroke and just use$this
.Forum: Fixing WordPress
In reply to: Fatal Error: Allowed Memory Size…Try restarting Apache/nginx.
If you have some type of cache (like PHP-FPM) you will need to make sure the memory limit is changed in those config files.
Forum: Fixing WordPress
In reply to: Error every few changes made on the websiteHave you tried disabling all of your plugins and reverting to the default theme?
Forum: Fixing WordPress
In reply to: moving WP from sub domainUse this guide from the Codex: Moving WordPress
Forum: Fixing WordPress
In reply to: Trouble Loading any WP Page and PostHave you disabled all of your plugins?
Forum: Fixing WordPress
In reply to: Link posts to different pagesYour best bet would be to find a shortcode plugin that lists posts within a category. Then, create a page and insert that shortcode.
Forum: Fixing WordPress
In reply to: Broke my site – Tried to migrate!You can use the technique shown here or edit the database manually.
There are two database values that need to be changed when moving domains. They are site_url and home in the wp_options table.
Forum: Fixing WordPress
In reply to: Embedding audio to play in post/page – why is this so difficult?I’ve always used this plugin: MediaElement.js I recommend that everyone uses it, especially now that the shortcodes will continue to work in 3.6 without the plugin.
Forum: Fixing WordPress
In reply to: Spambots are taking over my siteHave you tried out the ‘Bad Behavior’ plugin? It’s worked wonders for my site.
Forum: Fixing WordPress
In reply to: Error 404 on nextpage ( page 2 3 …) of categoryGo to Settings -> Permalink and let us know what that is set to.
Forum: Fixing WordPress
In reply to: Centering menu linksHow about replacing that
background
attribute with this:border-right: 1px solid red; (or put in the hex value for whatever color you want)
That way you get rid of an http request and speed up load times?
Forum: Fixing WordPress
In reply to: Centering menu linksThe problem is with the position of the background image. Play around with the
background-position-x
attribute.Forum: Hacks
In reply to: Howto make an image selector?At least take a look at how the author of WP-Alchemy is calling up the medial library. It may give you some clues.