Tim
Forum Replies Created
-
Forum: Plugins
In reply to: [Members - Membership & User Role Editor Plugin] Listing users pagesI’m trying to find a way to stop restricted pages set via Members from appearing in wp_list_pages as I use it to create sub menus. I’ll let you know if I dig anything up.
Forum: Plugins
In reply to: [Add Link to Facebook] Error messageOkay. Thanks, mate.
Forum: Plugins
In reply to: [Instapress] Fatal ErrorForum: Plugins
In reply to: [Instapress] Plugin install failsAre you running PHP 5.4?
Try this fix:
http://wordpress.org/support/topic/plugin-instapress-error-when-i-try-to-activate?replies=7
Forum: Fixing WordPress
In reply to: Uploading Large ImagesProblem solved. I needed to increase my PHP memory limit.
Added the following line to my .htaccess file.
php_value memory_limit 128MForum: Fixing WordPress
In reply to: Uploading Large ImagesJust through the admin section. Edit page > add new media.
Forum: Themes and Templates
In reply to: Footer TroublesAwesome. Glad to hear you fixed it up.
Forum: Themes and Templates
In reply to: Footer TroublesAdd this just above your <footer> tag (should be in your footer.php file):
<div class="clear"></div>And then in your theme’s style.css file add this:
.clear { clear: both }That should do the trick.
π
Forum: Plugins
In reply to: [Advanced Excerpt] [Plugin: Advanced Excerpt] How to remove P tags?Solved my own problem.
Add this to your themes functions.php file:
remove_all_filters('the_excerpt');Forum: Fixing WordPress
In reply to: please helpNot the same person, haha.
Forum: Plugins
In reply to: Secondary posts: Does a plugin exist for this?Don’t worry. I just realised this is exactly what Custom Post Types do.
My bad!
Forum: Plugins
In reply to: Remove visibility option from publish box?Figured out a solution:
Add this to your theme’s functions.php file:
add_action( 'admin_head', 'showhiddencustomfields' ); function showhiddencustomfields() { echo "<link rel='stylesheet' media='screen,projection' type='text/css' href='" . get_template_directory_uri() . "/css/dashboard.css'>"; }Create a new file named dashboard.css inside your theme directory’s CSS folder and drop in the following:
#misc-publishing-actions #visibility { display: none; }Easy!
Forum: Fixing WordPress
In reply to: please helpEverything is working on my end.
http://sunflowerflorist.ca/
http://sunflowerflorist.ca/weekly-arrangements/Forum: Fixing WordPress
In reply to: Plugin install failed- Download the plugin and unzip it somewhere.
- Upload the plugin folder to your wp-content/plugins directory.
- Login to your Dashboard, click on Plugins, and activate it.