brandingpeople
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Bulletin Board] Facebook Integrationokay and now there’s a problem with signing in now 🙁
Warning: file_get_contents() [function.file-get-contents]: URL file-access is disabled in the server configuration in /homepages/27/d380977797/htdocs/nhlblog/wordpress/wp-content/plugins/wp-bulletin-board/php/facebook/wpbb-facebook.php on line 94
Warning: file_get_contents(https://graph.facebook.com/oauth/access_token?client_id=618471701532710&redirect_uri=http://locextensions.net/forums/&client_secret=01bef5b0ef9edff8b3f2ee7499a0dce9&code=AQCwoyPi4Ar7Kq1WQW3yYRecZj0mS7uhFmEGCwXBwOWDaMAuKLaBhOBrN5rD-SOsGStD6Itis40VzL2OjGqgFeGTky9PvEe2cR1U-3Ak9I-NEYj0Y7LfUGhllz51tn4WE66yyYkULSKsgUzgQHzlozgeTp0W8VqVdomXhEFMxwdakKAGRMyw8eu97lyFZeicqBgrTH0s5mMSblbJ0cc8i1fnSQZ8eN0p6qWNagvO7NM0Do7Nrpstilt2ZGOLjvsxaFYFZWezZJiWJxJNHVoxT-8aWQdaRgrfh_WsxGpsAyVxK_-WMHVPK7GC0dt4J961vsE) [function.file-get-contents]: failed to open stream: no suitable wrapper could be found in /homepages/27/d380977797/htdocs/nhlblog/wordpress/wp-content/plugins/wp-bulletin-board/php/facebook/wpbb-facebook.php on line 94
Forum: Plugins
In reply to: [WP Bulletin Board] Facebook IntegrationYOU ARE A GEM!!!! EVERYTHING WORKS NOW!!!! YAY!!!! THANK YOU SO MUCH!
Forum: Plugins
In reply to: [WP Bulletin Board] Facebook IntegrationForum: Plugins
In reply to: [WP Bulletin Board] Facebook IntegrationThanks so much for helping out…..i’m looking at the file now…..what specifically am I deleting?
Forum: Plugins
In reply to: [WP Bulletin Board] Facebook IntegrationAdmins? Does this mean we should use another plugin all together?
Forum: Plugins
In reply to: [WP Bulletin Board] Facebook IntegrationHas anyone figured out this issue?
“This is my app id from facebook developer = 602190456459187, but after i click save Facebook settings WPBB automatically change back to this number 2147483647.”
This is exactly what’s going wrong with mine…..
I just emailed WPBB and waiting on reply.
Thanks in advance
Forum: Fixing WordPress
In reply to: How do I change the background of my wordpress theme?Even here on the ‘theme-options.php’
As shown here:
// Hooking styling for Theme Option page add_action('admin_head', 'ess_admin_header'); function ess_admin_header(){ global $menu; if ((isset($_GET['page']) == 'essential_options') ) : ?> <style> #icon-essential_options{ background:url('http://www.teacakeculture.com/wp-content/uploads/2011/09/bottom_background.png;) no-repeat; } .essential-options .form-table {background:#efefef; margin:0 0 40px 0;} .essential-options tr {display:block; background:#f7f7f7; margin:10px;} </style> <?php endif; } /*Forum: Fixing WordPress
In reply to: How do I change the background of my wordpress theme?I’ve tried to replace the new url with different areas above where there was
background: url(' <?php header_image(); ?> '); }Forum: Fixing WordPress
In reply to: How do I change the background of my wordpress theme?Great advice! i appreciate! However, I did just that and ITS STILL hasn’t budged! 🙁
Here’s the actually code:
*/ define('HEADER_TEXTCOLOR', 'ffffff'); define('HEADER_IMAGE', '%s/images/default-header.jpg'); // %s is the template dir uri define('HEADER_IMAGE_WIDTH', 940); // use width and height appropriate for your theme define('HEADER_IMAGE_HEIGHT', 156); add_custom_image_header('ess_header_background', 'ess_admin_header_background'); function ess_header_background() { ?> <style type="text/css"> #header .wrap{ background: url(' <?php header_image(); ?> '); } </style> <?php } function ess_admin_header_background(){ ?><style type="text/css"> #headimg { width: <?php echo HEADER_IMAGE_WIDTH; ?>px; height: <?php echo HEADER_IMAGE_HEIGHT; ?>px; } </style><?php } /*And I’m trying to change that cream part to this:
http://www.teacakeculture.com/wp-content/uploads/2011/09/bottom_background.png
My first thoughts were to change a color hex tag but I don’t think its that.
If you or anyone could help me. I thought I was pretty good at this.