0

I'm new to WordPress and actually repairing a page as a favour. The page was originally created by an inexperienced developer which is why it has its faults.

My main concern is that I don't seem to get any of the plugins to work. The page has a custom theme. I tried switching to a previously uploaded theme and all the plugins worked like a charm on that.

The client seems reluctant to abandon the custom theme and short of having to take it apart piece by piece I'm trying my luck here.

Both wp_head() and wp_footer() are called and seem to be in the right places, wp_head() right before the </head> tag and wp_footer() right before the </body> tag.

What am I missing?

LJNielsenDk
  • 1,414
  • 1
  • 16
  • 32

1 Answers1

0

This is a very general question, but here are some starting steps to try and see how you get on...

In wp-config.php add or alter the following: define('WP_DEBUG', true); This enables debuging to screen and will throw up any errors.

I would still advise you then try the plugins one by one - in theory once you get one working then the others should be ok. There is more to a theme than just having wp_head() etc... make sure the loop is in place and things like get_sidebar(). Compare whole pages to those of a working theme.

Simon Pollard
  • 2,476
  • 1
  • 17
  • 26
  • I don't even have sidebars, it's a VERY basic layout, I've got header.php, footer.php. index.php, a custom php file and one css file to work with. Perhaps the theme is too broken to function. – wordpressFan Aug 27 '15 at 11:31
  • What happens when you enable wp_debug? do you get any errors? – Simon Pollard Aug 27 '15 at 12:29