kims126
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Parse Error When Updating to/Installing WooCommerce 2.0.14AHA! I figured out the issue. In my case the word “#transparent” was in one of the color settings fields. I changed it to #fff and saved. Then I updated the plugin and all is good!
Forum: Plugins
In reply to: [WooCommerce] Parse Error When Updating to/Installing WooCommerce 2.0.14well, I updated to 2.0.14 again and still received the error. I tried reuploading the woocommerce-base.less file again and overwriting the old one. I still get the parse error.
KC – did you deactivate the Genesis Connect plugin before updating Woocommerce? I had reverted back to 2.0.13 and saw the “update” prompt so I clicked update and I still get the error. Trying to figure out what I’m doing wrong?
My error points to line 11:
parse error: failed at@contentbg: #transparent;
Forum: Plugins
In reply to: [WooCommerce] Parse Error When Updating to/Installing WooCommerce 2.0.14Thanks for posting KC! I reverted back to 2.0.13 but before doing that, I had tried to reuploaded the woocommerce-base.less file and it didn’t fix things. Perhaps I need to do things in the order you mentioned above. I’ll give it try myself.
Forum: Plugins
In reply to: [WooCommerce] Parse Error When Updating to/Installing WooCommerce 2.0.14I have this same issue. I’m also using the Genesis Connect plugin (v. 0.9.5) as well. Going back to version 2.0.13 for now until resolved.
I’m developing a responsive site with this plugin and ran into the same <p> tag issue.
I was able to fix it by hacking the plugin’s code. Not exactly the recommended wya of doing it, but it will fix it for now until (hopefully) the plugin author can fix it.
I edited the file: themeblvd-google-maps.php
I basically deleted the space from lines 88 & 89 so that the 2 <script>’s are back to backHere is the edited code:
<?php /* Plugin Name: Theme Blvd Responsive Google Maps Description: Add responsive google maps to your pages and posts via shortcode [tb_google_map]. Version: 1.0.2 Author: Jason Bobich Author URI: https://jasonbobich.com License: GPL2 */ /* Copyright 2012 JASON BOBICH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ /** * Scripts */ function themeblvd_google_map_scripts() { // Register 'em wp_register_script( 'gmap', plugins_url( 'assets/jquery.gmap.min.js', __FILE__ ), array('jquery'), '3.0' ); // Enque 'em wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'gmap' ); } add_action( 'wp_enqueue_scripts', 'themeblvd_google_map_scripts' ); /** * CSS */ function themeblvd_google_map_css() { wp_register_style( 'themeblvd_gmap', plugins_url( 'assets/style.css', __FILE__ ), false, '1.0' ); wp_enqueue_style( 'themeblvd_gmap' ); } add_action( 'wp_print_styles', 'themeblvd_google_map_css' ); /** * Shortcode - [tb_google_map] */ function themeblvd_google_map_shortcode( $atts ) { extract( shortcode_atts( array( 'maptype' => 'roadmap', // hybrid, satellite, roadmap, terrain 'zoom' => 14, // 1-19 'address' => '', // Ex: 6921 Brayton Drive, Anchorage, Alaska 'html' => '', // Will default to Address if left empty 'popup' => 'true', // true/false 'width' => '', // Leave blank for 100%, need to use 'px' or '%' 'height' => '500px' // Need to use 'px' or '%' ), $atts ) ); // Map type $maptype = strtoupper( $maptype ); // HTML if( ! $html ) $html = $address; // Width/Height $styles = 'height:'.$height; if( $width ) $styles .= ';width:'.$width; // Unique ID $id = rand(); // Start output ob_start(); ?> <!-- INCLUDE GOOGLE MAP API (can't be enqueue'd by WP) --> <script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=true"></script><script type="text/javascript"> jQuery(document).ready(function($) { $("#tb_gmap_<?php echo $id; ?>").gMap({ maptype: "<?php echo $maptype; ?>", zoom: <?php echo $zoom; ?>, markers: [ { address: "<?php echo $address; ?>", popup: <?php echo $popup; ?>, html: "<?php echo $html; ?>" } ], controls: { panControl: true, zoomControl: true, mapTypeControl: true, scaleControl: true, streetViewControl: false, overviewMapControl: false } }); }); </script> <div id="tb_gmap_<?php echo $id; ?>" class="themeblvd-gmap" style="<?php echo $styles; ?>"></div> <?php return ob_get_clean(); } add_shortcode( 'tb_google_map', 'themeblvd_google_map_shortcode' );
I hope the plugin author fixes this inn the next version so I don’t have to worry about updates overwriting it every time.
Forum: Fixing WordPress
In reply to: Add Link, Stay on this pageI’m having the same issue. Tried 3 different browsers: Firefox, Chrome and Safari (all on Mac). I just updated to 3.2.1 and am now unable to add a hyperlink. Please look into this…this is a huge inconvenience. Thanks!
Actually, besides the settings being gone, when I try to enter the user and password I now get this error:
Unauthorized - This is an authentication problem. Primary reason is that the API call has either not provided a valid API Key, Account Owner Name and Associated Password or the API call attempted to access a resource (URI) which does not match the same as the Account Owner provided in the login credientials
It now won’t reconnect the account. Any ideas?
I too am having this same issue. I thought maybe it was Constant Contact’s fault…perhaps maybe their server went down and lost the connection. If this is the plugin’s fault, we definitely need a solution. Please advise when the plugin update it available.
Well, after some troubleshooting it looks like whenever I tried to style it with CSS it would disappear. I’m using a Woo theme and the CSS was in the Custom CSS file so the styles are added in the document (rather than being linked.). I removed the CSS from the custom.css file and pasted it into the style.css file and it now works.
Just an FYI to anyone who uses Woo or I suspect Thesis where you have a custom.css file…you might not want your CC form css in the custom file.
I think that was it. I checked my settings and I had it set to 4 instead of 5. Going to try it now. Thanks!
No, it’s not Windows, it’s Linux. What version of PHP does it require? Perhaps that may be the issue.
Forum: Fixing WordPress
In reply to: How to: 2 WP sites in oneThanks. I’ll check out the links.
Forum: Fixing WordPress
In reply to: How to: 2 WP sites in oneI don’t have a link. I’m running the test on my local server using MAMP. The theme I’m using is just the basic default theme.
Forum: Fixing WordPress
In reply to: How to: 2 WP sites in oneOk, thanks. How do I get the correct navigation for each “home” page? On the test I ran, all the navigation showed up on all the pages.
Forum: Fixing WordPress
In reply to: How to: 2 WP sites in oneI set up a test site on a local server and have been trying to organize the pages the way I want. I’ve found all kinds of info on organizing Posts but none on organizing Pages. This link is what I’m trying to achieve. I just want to know if this is possible to do in WordPress and if so, how?