Luke Mlsna
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Meta Widget] Custom Meta Widget 1.4.0 – PHP Notice: Undefined indexThank you for spotting this bug, it has been resolved in version 1.4.1.
Forum: Themes and Templates
In reply to: [Magomra] [Theme: Magomra] Open to Community suggestionsAn “exclude page from menu” checkbox will be added in the next version (1.3). Thanks for your input.
Forum: Themes and Templates
In reply to: Should I load my theme's options as a global?I’ve had a sneaking suspicion that a global would be the best way to do it, I just have an irrational fear of using global variables when I’m not the only person writing the code.
As far as implementation specifics, I was thinking I would make a function loading the global array and then just call it once with the init add_action. Is this what you do Chip? (And thanks for the response.)
Ah, good observation. I’ll fix the readme. Thanks.
Forum: Plugins
In reply to: Looking for NoFollow PluginForum: Plugins
In reply to: simple wp_title filterTake a look at this article if you’re still struggling.
I’ve just pushed out version 1.2.0 which includes the changes you suggested. Thanks again for the input. If you want to get a hold of me in the future, the plugin’s homepage is usually a much faster route.
Sorry it took me so long to get back to you, but I hadn’t noticed this message.
This is a fantastic idea! Thanks so much for going ahead and modifying the function for me. I will definitely add this functionality in the next version! Is there a specific author name and URI you would like me to use to attribute you? (otherwise I’m just going to use MomDad and your wordpress author page).
Thanks again, I’m going to get started right now!
Then perhaps it was missing the License: tag in the header. In any case, it told me the header was bad when I tried to activate it and would not let me activate it until I added:
Stable tag: 1.1.1 Tested up to: 3.1.1 License: GPLv2to the header comment. WordPress says you need:
/* Plugin Name: Name Of The Plugin Plugin URI: http://URI_Of_Page_Describing_Plugin_and_Updates Description: A brief description of the Plugin. Version: The Plugin's Version Number, e.g.: 1.0 Author: Name Of The Plugin Author Author URI: http://URI_Of_The_Plugin_Author License: A "Slug" license name e.g. GPL2 */at a minimum in the PHP file.
Also you forgot to extend the $nofollow and $target options to the tag links at the top.
Forum: Fixing WordPress
In reply to: Are these links nofollow?str_ireplace(‘ rel=”nofollow”‘, ”, $string);
This line would find any instance of rel=”nofollow” and replace it with nothing. This would make these links dofollow (more correctly, it would make them not nofollow)
Forum: Fixing WordPress
In reply to: Permissions issue with Godaddy virtual dedicated serverForum: Fixing WordPress
In reply to: Permissions issue with Godaddy virtual dedicated serverThe problem is that the file OWNER needs to be the same user as the one apache is being run on. So you have to change the apache user or chown the files that need to be changed, not chmod.
How to set up Apache and your FTP client so they play nice with wordpress.
The max length was increased from 6 to 8 in version 1.1. Thanks for reporting this error!
Forum: Plugins
In reply to: [Custom Meta Widget] Error in Custom Meta Widget v1.1I’ve fixed this error and pushed out a new version 1.2. Thanks for this report!