Lauren
Forum Replies Created
-
Forum: Plugins
In reply to: [PayPal for WooCommerce] 11611 Returning from PayPalWould it be possible for me to email you my login details so you could take a look? I really appreciate your help.
Forum: Plugins
In reply to: [PayPal for WooCommerce] 11611 Returning from PayPalI’m having this exact same issue. Any help would be greatly appreciated.
Below is my error log.
03-17-2016 @ 20:12:15 - Response: Array ( [TIMESTAMP] => 2016-03-17T20:12:15Z [CORRELATIONID] => 66b4a5b22889a [ACK] => Failure [VERSION] => 124.0 [BUILD] => 18316154 [L_ERRORCODE0] => 11611 [L_SHORTMESSAGE0] => Transaction blocked by your settings in FMF [L_SEVERITYCODE0] => Error [AMT] => 8.18 [CURRENCYCODE] => USD [AVSCODE] => N [CVV2MATCH] => I )
Just checking in to see if there’s any advice for this issue. ?? Thanks!
Forum: Plugins
In reply to: [Workbox Video from Vimeo & Youtube Plugin] Error after updating pluginAny assistance is appreciated.
Forum: Plugins
In reply to: [Wp-Pro-Quiz] Adding audio for correct/incorrect answersAny ideas? My client is hoping I can get this figured out soon. Thanks!
Forum: Fixing WordPress
In reply to: Warning: Cannot modify header informationHi WPyogi,
Yes, I tried the method you described. I created the theme, so I’m not sure if there’s a problem with the theme itself. Are there any other theme files that you know of that may be causing this issue?
I really appreciate the help!
Forum: Themes and Templates
In reply to: "Warning: Cannot modify header information"Thanks for the tip. I checked, and I don’t think there are any extra spaces. Here is my header.php page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="https://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> <head profile="https://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <title><?php wp_title('|', true, 'right'); ?> Title Here</title> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <style type="text/css" media="screen"> <?php // Checks to see whether it needs a sidebar or not if ( !empty($withcomments) && !is_single() ) { ?> <?php } ?> </style> <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?> <?php wp_head() ?> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <SCRIPT TYPE="text/javascript"> <!-- //Disable right click script //visit https://www.rainbow.arch.scriptmania.com/scripts/ var message="Sorry, right-click has been disabled"; /////////////////////////////////// function clickIE() {if (document.all) {(message);return false;}} function clickNS(e) {if (document.layers||(document.getElementById&&!document.all)) { if (e.which==2||e.which==3) {(message);return false;}}} if (document.layers) {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;} else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;} document.oncontextmenu=new Function("return false") // --> </SCRIPT> </head> <body> <div id="wrapper">
Forum: Themes and Templates
In reply to: "Warning: Cannot modify header information"All I need my functions.php file for is so that I can have post thumbnails. Here is my code:
<?php add_theme_support( 'post-thumbnails' ); ?>
There are no extra spaces, but I keep getting the error.
Forum: Themes and Templates
In reply to: "Warning: Cannot modify header information"It says that the error is in the functions.php file of my “Safari” theme in line 1. I’ve messed with this file for the last hour. I’ve done the following:
1. Made sure there are no spaces at the beginning or end of the file near the tags
2. Attempted to take out all the functions.php code except the opening and closing php tags, with no extra spaces before or after
3. Pasted the function.php codes from other WordPress themes into my file
but none of these options work.
The ONLY thing that works is deleting my functions.php file completely, but I need that file so that I can use post thumbnails in my posts.
Any suggestions?
Forum: Fixing WordPress
In reply to: Footer not showing in correct positionSolved. I kept the content and navigation divs as float:right and float:left, and used padding to position them instead of position: absolute. The footer now stays at the bottom of the page.
Forum: Fixing WordPress
In reply to: Footer not showing in correct positionUpdate: I’ve found that when I make my content div float: left or float: right, the footer “sticks” to the bottom of the page. Yet when I make my content div position: absolute (which is what I need so I can position it), the footer creeps up. Is there any way around this?? Thanks.
Forum: Fixing WordPress
In reply to: Footer not showing in correct positionAnyone?
Forum: Fixing WordPress
In reply to: Footer not showing in correct positionI’ve tried various CSS and HTML codes to try to make the footer “stick” to the bottom of the page, as opposed to the bottom of my window (which is only halfway down the page once I scroll), but nothing works. I copied the code from the Default theme and it’s still not showing up at the very bottom of the page… any ideas?
Forum: Themes and Templates
In reply to: Custom theme overwriting defaultProblem solved. Thanks.
Forum: Fixing WordPress
In reply to: Help with Page.phpThanks, esmi. =)