bagheadinc
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Admin Quicklinks] [Plugin: WP Admin Quicklinks] 'pages' link not workingEdit wp-admin-quicklinks.php, search for this line (should be line 95)
<li><a href="<?php bloginfo('wpurl'); ?>/wp-admin/edit-pages.php" title="View all your pages">Pages</a></li>And replace it with
<li><a href="<?php bloginfo('wpurl'); ?>/wp-admin/edit.php?post_type=page" title="View all your pages">Pages</a></li>Forum: Plugins
In reply to: [Plugin: Contact Form 7] Getting a 404 Error when submitting a formI had this same issue, and strangely enough, I fixed it by switching a field I created called [name] to [your-name]. Not sure why that caused a problem but it seems to have done the trick.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Drop-down box with multiple send-to contacts?I accomplished this by creating a dropdown with the various emails to choose from, then I set the “To” field to the dropdown variable.
Forum: Fixing WordPress
In reply to: Fatal Error when activating new pluginsYou can fix this by editing the following lines in the smartyoutube.php file…
// register widget if (function_exists('register_sidebar_widget')) if (function_exists('register_widget_control'))Just use the function_exists command like this…
// register widget if (function_exists('register_sidebar_widget')) register_sidebar_widget('Smart YouTube', 'yte_widget'); if (function_exists('register_widget_control')) register_widget_control('Smart YouTube', 'yte_widgetcontrol');It will still register the Smart YouTube widget and you will no longer get that error whenever you activate a plugin.