benmillett
Forum Replies Created
-
Forum: Plugins
In reply to: A way to restrict a plugin to one page only?Another option is to use Exec-PHP. This lets you include php code in pages/posts, so you could just put your vimeorss php code in the text box of one of your subpages, thereby avoiding any manipulation of the theme files.
Forum: Plugins
In reply to: A way to restrict a plugin to one page only?You can take care of this using an if statement with the specific page number. For example, if you want it to appear on subpage A, find subpage A’s postID # from the url of the page when you are editing it in the admin (the ### of https://foo.com/wp-admin/page.php?action=edit&post=###). Then in page.php, use the ### to select just the one page with php like this:
<?php if (is_page('###') && function_exists("vimeorss")) {vimeorss(user577608, clips, 4, "", ""); } ?>
Am I understanding you correctly?Forum: Everything else WordPress
In reply to: WordPress Admin Panel “Manage -> Files” Gone?Just a follow-up. The Manage File sub-panel is still there. If you can add things to your core WP files, download WP 2.3.3 (from here) and copy the templates.php file from the 2.3.3 wp-admin folder to the wp-admin folder of your main WP directory. The link won’t be there to access the page, so you’ll have to manually type go to foo.com/wordpress/wp-admin/templates.php (or foo.com/wp-admin/templates.php, depending on your set-up). I just edited a file or two with it, so the functionality is there.
Forum: Everything else WordPress
In reply to: WordPress Admin Panel “Manage -> Files” Gone?I’d go for the plugin restoring this capability, too. Seems odd that there would still be a Manage File sub-panel page in the codex…
Forum: Fixing WordPress
In reply to: Manage / Files in 2.5 Missing?Like chadward, I need to edit my .htaccess file, but file management not accessible in 2.5. Why was this removed?
Forum: Fixing WordPress
In reply to: PHP Stylesheet Switcher from A List Apart Not Working with WordPressUsing the above ideas, whenever I click on the link, Safari outputs:
“The page you opened redirected you to a page that isn’t supported by Safari.
Safari can’t open the page “” because it cannot redirect to locations starting with “(null):”.”
The page simply fails to load in Firefox.After some playing, I got it to work using this:
<?php setcookie(“style”, $_GET[“style”], time()+31536000);
header(“Location:”.$_SERVER[“HTTP_REFERER”]);
?>in case it might help someone
Forum: Fixing WordPress
In reply to: “Save and Continue Editing” causes a delay, then a blank screenRongo, thanks for the tip. I had the Google Sitemaps, 2.7, installed, and I’d get the blank page if activated, but only since upgrading to 2.1. Erased all the sites in Update services, but that didn’t solve things. Glad I found this page.