graemefordham
Forum Replies Created
-
Forum: Plugins
In reply to: WordTwit tweets but errors on the actually post in wordpressSame problem here…. anybody out there going to fix this?
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] add gallery to post not functioningno-one got an idea??
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] add gallery to post not functioningThese are my server settings by the way:
Operating System : Linux (32 Bit)
Server : Apache
Memory usage : 12.97 MByte
MYSQL Version : 5.0.81-log
SQL Mode : Not set
PHP Version : 5.2.11
PHP Safe Mode : Off
PHP Allow URL fopen : Off
PHP Memory Limit : 40M
PHP Max Upload Size : 20M
PHP Max Post Size : 8M
PHP Output Buffer Size : N/A
PHP Max Script Execute Time : 50000s
PHP Exif support : Yes ( V1.4 )
PHP IPTC support : Yes
PHP XML support : YesForum: Fixing WordPress
In reply to: Producing Unique Widget IDs for CSSHi, this is a request to continue with some help on this subject. I am using the ‘modularity’ theme with child theme ‘on assignment’. I don’t seem to have unique widget id’s from a view source check and would like to style the individual widgets of my blog.
Here’s my function.php file from ‘on assignment’ which leads the above information nowhere! Help please!
<?php // Define Theme Options Variables $themename="On-Assignment"; $thumbnailsize = "270 x 150 pixels"; $slideshow = "true"; $thumbslider = "false"; $featured = "true"; $category_columns = "true"; $default_thumb = get_bloginfo('stylesheet_directory') . "/images/default-thumb.jpg"; ?>Here is my functions.php file from modularity
<?php //Start Theme Functions - Please refrain from editing this file. $functions_path = TEMPLATEPATH . '/functions/'; $includes_path = TEMPLATEPATH . '/includes/'; // Options panel variables and functions require_once ($functions_path . 'admin-setup.php'); // Custom functions and plugins require_once ($functions_path . 'admin-functions.php'); // Custom fields //require_once ($functions_path . 'admin-custom.php'); // Admin Interface require_once ($functions_path . 'admin-interface.php'); // More Themes Page require_once ($functions_path . 'admin-theme-page.php'); // Options panel settings require_once ($includes_path . 'theme-options.php'); // Custom Theme Functions require_once ($includes_path . 'theme-functions.php'); // Load Post Images require_once ($includes_path . 'post-images.php'); // Load Post Images require_once ($includes_path . 'images.php'); // Load PhotoShelter Meta require_once ($includes_path . 'photoshelter-meta.php'); // Custom Comments require_once ($includes_path . 'theme-comments.php'); // Load Javascript require_once ($includes_path . 'theme-js.php'); // Widgets require_once ($includes_path . 'widgets.php'); // Custom Styles if ( get_option('gpp_css') == 'true' ) { function custom_styles() { ?><link href="<?php bloginfo('template_directory'); ?>/includes/custom-styles.php" rel="stylesheet" type="text/css" /><?php } add_action('wp_head', 'custom_styles'); } add_action('wp_head', 'gppthemes_wp_head'); add_action('admin_menu', 'gppthemes_add_admin'); add_action('admin_head', 'gppthemes_admin_head'); ?>Any idea where to look please?
Cheers, Graeme