HorrorUK
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: responsive admin menu?thanks, I’ll give that a go
Forum: Fixing WordPress
In reply to: responsive admin menu?Sorry, I just noticed I wrote admin menu instead of admin bar.
I’m after the admin bar for users to see on the front-end
Forum: Fixing WordPress
In reply to: change logo & link in admin barThanks for the link.
I’m trying to cut down as much as possible on my plugins in an attempt to speed up the site, so I’m trying to just add it to the functions.
Forum: Fixing WordPress
In reply to: 3.6.1 causes server errorsIt all seems to be around the WooCommerce plugin that I’m getting the error.
Forum: Fixing WordPress
In reply to: 3.6.1 causes server errorsah, didn’t see that one.
Strangely, it doesn’t allow me to change to Twenty Thirteen once it is upgraded.
I have another site with the same theme, and that updated without a problem.
It looks like it may be a possible plugin conflict, I’ll check through them and see what I can see.
Forum: Fixing WordPress
In reply to: 3.6.1 causes server errorsI tried the manual option, but unfortunately I get the same thing.
Forum: Fixing WordPress
In reply to: Permalinks continually stop workingHi Scott, thanks for the reply.
I do have the site set up with various custom post types, so will have to take a look at that and see if I should sort it in a different way.
Forum: Hacks
In reply to: How to add a simple checkbox to Settings/GeneralThanks bcworkz
I found some code which works, but it was for a text element. As soon as I change the element to checkbox, it doesn’t save the box as checked, I’m guessing it hasn’t gone into the database for some reason.
Do you have any ideas what I may be missing?
// Register and define the settings add_action('admin_init', 'ozhwpe_admin_init'); function ozhwpe_admin_init(){ register_setting( 'reading', // settings page 'ozhwpe_options', // option name 'ozhwpe_validate_options' // validation callback ); add_settings_field( 'ozhwpe_notify_boss', // id 'Boss Email', // setting title 'ozhwpe_setting_input', // display callback 'reading', // settings page 'default' // settings section ); } // Display and fill the form field function ozhwpe_setting_input() { // get option 'boss_email' value from the database $options = get_option( 'ozhwpe_options' ); $value = $options['boss_email']; // echo the field ?> <input id='boss_email' name='ozhwpe_options[boss_email]' type='checkbox' value='<?php echo esc_attr( $value ); ?>' /> Boss wants to get a mail when a post is published <?php }Thanks.
Forum: Plugins
In reply to: [Gravity Forms MyMail Add-On] No lists are appearingI just tried it on a site with no other plugins activated, and also tried with the default theme, but get the same thing.
On this one, it had two lists selected:
Forum: Plugins
In reply to: [Gravity Forms MyMail Add-On] No lists are appearingYeah, I have them on the sidebar for now:
I have the same problem with the official release
Forum: Plugins
In reply to: [WordPress Social Login] WidgetThanks, that’s just as good a s a special widget for it 🙂
Forum: Plugins
In reply to: [Widget Logic] if user is logged inDon’t worry, I just read through it again and saw how it’s done.
Thanks.
I don’t see that line in there for some reason
Great, and simple to use plugin, thank you.
I’ve set up list view as the default, but is it possible to swap over the toggle button, as the grid view button is still showing as active when the list view first shows up.