defigo
Forum Replies Created
-
Forum: Plugins
In reply to: [Passster - Password Protect Pages and Content] Instructions Text not showingIt is located in \wp-content\plugins\content-protector\public\view.
I inserted this fix at line 11.
Forum: Plugins
In reply to: Contact form 7 not working with Godaddy hostingGodaddy was very help full when I first had this problem a few months ago. http://community.godaddy.com/help/article/510?locale=en&ci=46061 is what they recommended for use with WordPress if a contact-from plugin was not working properly.
Forum: Plugins
In reply to: Contact form 7 not working with Godaddy hostingIf you want to use the latter one and you do not have the PHP files let me know and I will post them on my site.
Forum: Plugins
In reply to: Contact form 7 not working with Godaddy hostingA lot of issues are due to security features on godaddy’s servers. This link is a great way to get CF7 working on wordpress, http://angstrey.com/index.php/2009/04/22/how-to-send-e-mail-with-wordpress-from-godaddy-windows-hosting/. If you want email to be forwarded from a goddady email then you will have to go to your mange email in hosting and set the cc to the email, or emails you want to have forwarded.
another great article is from godaddy itself, http://community.godaddy.com/help/article/510?locale=en&ci=46061. This will allow you to be able to use gmail or msn.
Both of these work, however, it is important to note that the latter does take time to get to your email.
Forum: Fixing WordPress
In reply to: Insert into Post buttons missing in media uploaderThe issue is actually in wordpress wp-admin/includes/media.php. I found a thread that talks about how to fix it by adding a “!” to the $sent in the if statement on line 1267.
if ( $send ) $send = "<input type='submit' class='button' name='send[$attachment_id]' value='" . esc_attr__( 'Insert into Post' ) . "' />";to
if ( ! $send ) $send = "<input type='submit' class='button' name='send[$attachment_id]' value='" . esc_attr__( 'Insert into Post' ) . "' />";