refreshingdesign
Forum Replies Created
-
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Noindex tagSame. Please let us know how to fix?
Forum: Plugins
In reply to: [WooCommerce Extended Coupon Features FREE] Coupon changes tax amount?Thank you for your reply. Basically I want to discount the OTHER product (which does not have any tax applied to it. My only option is to add both products and select AND so I cannot select which product is discounted. If I could do that, I believe the tax would be correct?
Forum: Plugins
In reply to: [Google Doc Embedder] No Content in iFrame (After update, not HTTPS issue.)Thanks, Kevin. The issue did just resolve itself – must have been one of those “usual suspects” you were right. Thanks so much!
Forum: Plugins
In reply to: [Google Doc Embedder] No Content in iFrame (After update, not HTTPS issue.)Another note – I saw another thread here where someone was getting blank content and it was an HTTPS issue, fixed by an edit to gviewer.php. Nothing in this situation is HTTPS but I tried that edit to make sure, no luck.
Here is the HTML on the page:
<p class="gde-text"><a href="https://www.meganstarkevans.com/wp-content/plugins/google-document-embedder/load.php?d=http%3A%2F%2Fwww.meganstarkevans.com%2Fwp-content%2Fuploads%2F2013%2F10%2FWebsiteResume10-13.pdf" class="gde-link">Download (PDF, 78KB)</a></p> <iframe src="//docs.google.com/viewer?url=http%3A%2F%2Fwww.meganstarkevans.com%2Fwp-content%2Fuploads%2F2013%2F10%2FWebsiteResume10-13.pdf&hl=&embedded=true" class="gde-frame" style="width:100%; height:924px; border: none;" scrolling="no"></iframe>
Forum: Fixing WordPress
In reply to: Add custom taxonomy under custom menuDoes anyone have a solution to this?
Forum: Plugins
In reply to: [Infinite-Scroll] Media uploader triggers Error – wp_debug = true,Thanks, Veerie! I guess my issue may have been a different one. If anyone is having trouble with the media upload error “an error occurred in the upload”, delphiman has posted a solution here: https://www.ads-software.com/support/topic/conflict-with-uploading-image?replies=3#post-4666938
Forum: Plugins
In reply to: [Infinite-Scroll] Conflict with uploading imagedelphiman. That seems to have worked! Thanks you so much. I don’t see any side-effects yet, either. Will let you guys know.
Forum: Plugins
In reply to: [Infinite-Scroll] Media uploader triggers Error – wp_debug = true,Shoot. It’s still not working. When I upload an image I get “Error” // “An error occurred in the upload. Please try again later.” I now have in admin.php from 88…
//because we can't get the attachment ID at this point, try to pull it from the database //look for the most recent parent-less attachment with same title and mime-type if (array_key_exists('HTTP_POST_FILES',$GLOBALS)) { $upload = $GLOBALS['HTTP_POST_FILES']['async-upload']; $title = substr( $upload['name'], 0, strrpos( $upload['name'], '.' ) ); $id = $wpdb->get_var( "SELECT ID FROM $wpdb->posts WHERE post_type = 'attachment' AND post_mime_type = '" . $upload['type'] . "' AND post_parent = '0' AND post_title = '$title' ORDER BY ID DESC LIMIT 1" ); } //if for some reason we couldn't pull the ID, simply kick //the user will just have to click insert to close the dialog if ( !isset($id)) return $args; }
And in presets.php from 439…
$presets = array(); //build preset objects and stuff into keyed array foreach ( $data as &$line ) { $lineObj = new stdClass; foreach ( $this->keys as $id => $key ) if (array_key_exists($id,$line)) $lineObj->$key = $line[ $id ]; $presets[ $lineObj->theme ] = $lineObj; } return $presets; }
Forum: Plugins
In reply to: [Infinite-Scroll] Media uploader triggers Error – wp_debug = true,Veerie – What exactly did you add to admin.php line 90 to fix this? Thanks!
Forum: Plugins
In reply to: [Download Shortcode] Does this work with Multisite?Any update on this? Doesn’t seem to be working with multisite still… ??
Did you ever find a way to do this?