dankru
Forum Replies Created
-
Hi, danke für Tipps!
Ich habe nichts integriert, diese Fehlfunktion gibt es seit update 2.3.0.
Ich habe die unsichtbare Schaltfläche mit der Maus ertastet und die Nachricht ausgeblendet. Vielleicht funktioniert sie ja nach dem nächsten Update wieder …
Hat denn niemand ausser mir diese Fehlfunktion und eine Lösung / Erklärung gefunden???Hi auch, ja sehr merkwürdig. Danke für die rasche Reaktion!
Ich benutze nichts zum Deaktivieren oder Verstecken.
Nach Deaktivierung und wieder Aktivierung von Germanized ist die leere Fläche jetzt wesentlich kleiner, aber immer noch da.
Von Developer Tools habe ich keine Ahnung, weiss aber, dass es sie gibt und wo ich sie finde, sieht nett aus.
Ich habe mal den Firefox Inspektor auf die Fläche losgelassen und den html code des unsichtbaren Inhalts kopiert:
<div class=”error fade”>
<h3>Theme ist noch nicht für WooCommerce Germanized optimiert</h3>
<p>Wir haben festgestellt, dass dein Theme scheinbar noch nicht für Germanized optimiert ist. Bitte überprüfe die Style-Angaben deines Themes bzw. das Aussehen deines Shops. Manche Elemente werden möglicherweise falsch dargestellt – WooCommerce Germanized kann nur grundlegende Style-Angaben machen. Lies dir dazu wie mache ich mein Theme kompatibel durch oder nutze das von uns entwickelte Theme VendiPro für 100% Kompatibilität.</p>
<p class=”alignleft wc-gzd-button-wrapper”>
VendiPro jetzt entdecken
</p>
<p class=”alignright”>
Diese Nachricht ausblenden
</p>
<div class=”clear”></div>
</div>Interessant. Der lesbare Inhalt war vor dem Update 2.3.0 in der jetzt leeren Fläche zu sehen; glaube ich. Nichts Schlimmes also; hoffe ich. Aber wie kommt’s und was soll ich machen? Das einfach so lassen, oder gibt es ein Fix? Da könnte ja auch mal was Wichtiges eingeblendet werden?
Übrigens funktioniert in Sellosity alles, was ich von WC und Germanized brauche, obwohl es angeblich (noch) nicht optimiert ist …
Danke für Erleuchtung!
Forum: Plugins
In reply to: [WooCommerce] Edit text on popup: confirmation_boxHA! AHA!!
Finally found the text in:
sellosity-express-checkout/assets/js/product.js
var confirmBox = $(‘<div id=”confirmation_box”><p>By using the express checkout option I understand that my stored payment method may be charged immediately and your order will be sent to your default address on file.</p></div>’);
Thanks for reading!Forum: Plugins
In reply to: [WooCommerce] Edit text on popup: confirmation_boxHi @slash1andy,
thanks for having a look at my page! Now that’s strange!
Here is a screen shot of my page after clicking the orange button:
https://www.awesomescreenshot.com/showImage?img_id=3991548As mentioned, this is a dummy page, but it’s the same on my site translated to German. I’m afraid that I will lose customers, when this unnecessary popup sometimes will show up? How to get rid of it altogether anyway, if I can’t find a way to translate it?
At least I found where this confirmation box is, but I’m not sure what to change there without ruining the whole thing?
Plugin:
<?php
/*
Plugin Name: Sellosity Express Checkout
Version: 1.0.8
Description: This addon for Sellosity allows you to add express checkout options for your store and also provides the ability to create 1-click upsell links and buttons to dramatically increase your profits per order
Plugin URI: http://sellosity.com/
Author: Sellosity
Author URI: http://sellosity.com/
*/require_once(trailingslashit(dirname(__FILE__)).’sellosity-updater.php’);
new WPUpdatesPluginUpdater_1500( ‘http://wp-updates.com/api/2/plugin’, plugin_basename(__FILE__));add_action(‘template_redirect’, function() {
if( !isset( $_GET[‘one-click-order’] ) ) {
return;
}$id = absint($_GET[‘one-click-order’]);
$qty = isset($_GET[‘qty’]) ? absint($_GET[‘qty’]) : 1;
$coupon = isset($_GET[‘coupon’]) ? $_GET[‘coupon’] : ”;
$variation = isset($_GET[‘variation’]) ? json_decode( $_GET[‘variation’], $as_array = true ) : ”;one_click_order( $id, $variation, $qty, $coupon );
});add_filter(‘woocommerce_create_account_default_checked’ , function ($checked){
return true;
});add_action(‘wp_enqueue_scripts’, function(){
wp_register_script( ‘express_checkout_product’, plugin_dir_url( __FILE__ ) . ‘assets/js/product.js’, array(‘jquery’), ‘1.0.8’ );
wp_register_script( ‘express_checkout_shortcode’, plugin_dir_url( __FILE__ ) . ‘assets/js/short.js’, array(‘jquery’), ‘1.0.8’ );
wp_register_style( ‘express_checkout_confirmation’, plugin_dir_url( __FILE__ ) . ‘assets/css/confirmation.css’ );
wp_enqueue_style( ‘express_checkout_confirmation’ );
// This is a product page
if( is_product() && is_one_click_order_active() ) {
$should_be_confirmed = should_be_confirmed();
wp_enqueue_script( ‘express_checkout_product’ );
wp_localize_script(‘express_checkout_product’, ‘express_checkout’, array( ‘should_be_confirmed’ => $should_be_confirmed ) );}
});require_once(‘logic.php’);
require_once(‘admin-panel.php’);
require_once(‘woocommerce-hooks.php’);Forum: Plugins
In reply to: [WooCommerce] Edit text on popup: confirmation_boxHi @spraveenitpro
thanks for your nice response!
Here I have an example page of a ruined installation, that shows exactly what I mean with the popup, in Firefox only, after clicking the order button.
http://www.biz-tycoon.com/freegift/us1/
In IE and Chrome this popup does not show up at all, why is that???
How could I get rid of that popup anyway?
Thanks for your help!Thanks for the nice and quick response!
The Duplicator was not installed before.
So it looked like a conflict with another plugin.
I deactivated all plugins.
Then I activated Duplicator flawlessly. No error.
Then I activated all other plugins one by one (49!!), always after each activation activating and deactivating Duplicator in order to find out, what the conflicting plugin was.
After activating all plugins again, there was no conflict found!!!!
How strange is that??
Well, everything works now and is fine, but I hate, when I don’t understand, why …
Any idea, what happened here?Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] force SSLHi folks,
it took me 2 and a half days to find this enlightening explanation:
“Some Shared SSL’s won’t work with custom permalinks.”
Bluehost certainly does not work!
The permalink trap should be mentioned somewhere on the settings page …Thanks anyway, Mike!