til

Statistika

Pridružen/a:
10 sep 2015, 16:04
Zadnjič aktiven:
Prispevki:
Teme:
13 | Vse teme
180
205
4
#3

zeko:

Samo nastaviti ga moraš pravilno. Business rules -> triggers, tu nastavljaš tekste in se da vse spremeniti ali pa izklopiti. Tudi podpisati se da e-mail s svojo domeno (DKIM nastavitve)




To sem dejansko učer uspel skupi spravt.



Kaj točno pridobim z DKIM oz. podpisom domene? Hvala


všeč(0) ni všeč(0) spam(0)
#

Torej simple k pasulj, dobili smo 1 leto zendeska zastonj ampak mi je vse ... cluttered. Iščem določene stvari in se mi po domače povedano bruha.



Rabimo pa sledeče:




  • emaili (različni emaili za različne države, tudi različni brandi)

  • fb messagi

  • mogoče woocommerce integracija ...



Vse to zendesk ima, vendar dodaja kar neke svoj stuff v emaile, kot je reply above this line, nič preveč personalizirano (kar neke zendesk domene itd.).



Rabimo simpl. Stranka pošlje mail, to se kreira k ticket v sistemu, ko odpošlemo je kot, da bi nazaj dobila mail. Ne pa ticket created pa ne vem kaj še vse.


všeč(1) ni všeč(2) spam(0)
#2

To prekrivanje sem rešil tako, da mi tracka cel url v GAju.



Sem v precepu. Najrajš bi trackal vsako posebi pa vse na enem samo se mi sanja ne kako to nastavit na woocommercu.


všeč(0) ni všeč(0) spam(0)
#

Torej precej simple vprašanje. Ali imeti za vsako domeno/language svoj GA property ali pač enega za vse?



Mene so sicer "učili", da ločeno ampak ne vem čisto točno zakaj :)



Torej vaša mnenja oz. kako imate rešeno?



Eh pismenost na vrhuncu ... pardon za zatipk v title-u


všeč(0) ni všeč(0) spam(0)
#4

Kako tale vaš plugin hendla WPML oz. še bolj ključno multi currency?



Če ja, American Express podpira HRK?


všeč(0) ni všeč(0) spam(0)
#1

A lohka prosm no.



To je prospector :





To pa vi iščete:



Prospector, jao jao


všeč(30) ni všeč(2) spam(0)
#1

Pri nas je bil to vedno dogovor, vedno poizkusi stremeti h temu, da tisto sodišče države katero boljše poznaš zakone oz. so cenejši stroški odvetnikov. Torej najbrž bo to slovensko.



Če je avstralsko rabiš še sodne tolmače in boh ve kaj, na kratko, po vsej verjetnosti, če bo avstralsko se ti ne bo splačalo it preko sodišča.


všeč(1) ni všeč(0) spam(0)
#3

  • dodati je potrebno nov payment gateway. (nov plugin)



<?php

/**

* Plugin Name: WooCommerce Offline Gateway

* Plugin URI: https://www.skyverge.com/?p=3343

* Description: Clones the "Cheque" gateway to create another manual / offline payment method; can be used for testing as well.

* Author: SkyVerge

* Author URI: http://www.skyverge.com/

* Version: 1.0.2

* Text Domain: wc-gateway-offline

* Domain Path: /i18n/languages/

*

* Copyright: (c) 2015-2016 SkyVerge, Inc. (info@skyverge.com) and WooCommerce

*

* License: GNU General Public License v3.0

* License URI: http://www.gnu.org/licenses/gpl-3.0.html

*

* @package WC-Gateway-Offline

* @author SkyVerge

* @category Admin

* @copyright Copyright (c) 2015-2016, SkyVerge, Inc. and WooCommerce

* @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License v3.0

*

* This offline gateway forks the WooCommerce core "Cheque" payment gateway to create another offline payment method.

*/



defined( 'ABSPATH' ) or exit;

// Make sure WooCommerce is active

if ( ! inarray( 'woocommerce/woocommerce.php', applyfilters( 'activeplugins', getoption( 'activeplugins' ) ) ) ) {

return;

}

/**

* Add the gateway to WC Available Gateways

*

* @since 1.0.0

* @param array $gateways all available WC gateways

* @return array $gateways all WC gateways + offline gateway

*/

function wc
offlineaddtogateways( $gateways ) {

$gateways[] = 'WC
GatewayOffline';

return $gateways;

}

add
filter( 'woocommercepaymentgateways', 'wcofflineaddtogateways' );

/**

* Adds plugin page links

*

* @since 1.0.0

* @param array $links all plugin links

* @return array $links all plugin links + our custom links (i.e., "Settings")

/

function wcofflinegatewaypluginlinks( $links ) {

$pluginlinks = array(

'<a href="' . admin
url( 'admin.php?page=wc-settings&tab=checkout&section=offlinegateway' ) . '">' . _( 'Configure', 'wc-gateway-offline' ) . '</a>'

);

return arraymerge( $pluginlinks, $links );

}

addfilter( 'pluginactionlinks' . pluginbasename( _FILE__ ), 'wcofflinegatewaypluginlinks' );

/
*

* Offline Payment Gateway

*

* Provides an Offline Payment Gateway; mainly for testing purposes.

* We load it later to ensure WC is loaded first since we're extending it.

*

* @class WCGatewayOffline

* @extends WCPaymentGateway

* @version 1.0.0

* @package WooCommerce/Classes/Payment

* @author SkyVerge

/

addaction( 'pluginsloaded', 'wcofflinegatewayinit', 11 );

function wc
offlinegatewayinit() {

class WCGatewayOffline extends WCPaymentGateway {

/
*

* Constructor for the gateway.

*/

public function __construct() {


        $this->id                 = 'offline_gateway';
$this->icon = apply_filters('woocommerce_offline_icon', '');
$this->has_fields = false;
$this->method_title = __( 'Offline', 'wc-gateway-offline' );
$this->method_description = __( 'Allows offline payments. Very handy if you use your cheque gateway for another payment method, and can help with testing. Orders are marked as "on-hold" when received.', 'wc-gateway-offline' );

// Load the settings.
$this->init_form_fields();
$this->init_settings();

// Define user set variables
$this->title = $this->get_option( 'title' );
$this->description = $this->get_option( 'description' );
$this->instructions = $this->get_option( 'instructions', $this->description );

// Actions
add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
add_action( 'woocommerce_thankyou_' . $this->id, array( $this, 'thankyou_page' ) );

// Customer Emails
add_action( 'woocommerce_email_before_order_table', array( $this, 'email_instructions' ), 10, 3 );
}


/**
* Initialize Gateway Settings Form Fields
*/
public function init_form_fields() {

$this->form_fields = apply_filters( 'wc_offline_form_fields', array(

'enabled' => array(
'title' => __( 'Enable/Disable', 'wc-gateway-offline' ),
'type' => 'checkbox',
'label' => __( 'Enable Offline Payment', 'wc-gateway-offline' ),
'default' => 'yes'
),

'title' => array(
'title' => __( 'Title', 'wc-gateway-offline' ),
'type' => 'text',
'description' => __( 'This controls the title for the payment method the customer sees during checkout.', 'wc-gateway-offline' ),
'default' => __( 'Offline Payment', 'wc-gateway-offline' ),
'desc_tip' => true,
),

'description' => array(
'title' => __( 'Description', 'wc-gateway-offline' ),
'type' => 'textarea',
'description' => __( 'Payment method description that the customer will see on your checkout.', 'wc-gateway-offline' ),
'default' => __( 'Please remit payment to Store Name upon pickup or delivery.', 'wc-gateway-offline' ),
'desc_tip' => true,
),

'instructions' => array(
'title' => __( 'Instructions', 'wc-gateway-offline' ),
'type' => 'textarea',
'description' => __( 'Instructions that will be added to the thank you page and emails.', 'wc-gateway-offline' ),
'default' => '',
'desc_tip' => true,
),
) );
}


/**
* Output for the order received page.
*/
public function thankyou_page() {
if ( $this->instructions ) {
echo wpautop( wptexturize( $this->instructions ) );
}
}


/**
* Add content to the WC emails.
*
* @access public
* @param WC_Order $order
* @param bool $sent_to_admin
* @param bool $plain_text
*/
public function email_instructions( $order, $sent_to_admin, $plain_text = false ) {

if ( $this->instructions && ! $sent_to_admin && $this->id === $order->payment_method && $order->has_status( 'on-hold' ) ) {
echo wpautop( wptexturize( $this->instructions ) ) . PHP_EOL;
}
}


/**
* Process the payment and return the result
*
* @param int $order_id
* @return array
*/
public function process_payment( $order_id ) {

$order = wc_get_order( $order_id );

// Mark as on-hold (we're awaiting the payment)
$order->update_status( 'on-hold', __( 'Awaiting offline payment', 'wc-gateway-offline' ) );

// Reduce stock levels
$order->reduce_order_stock();

// Remove cart
WC()->cart->empty_cart();

// Return thankyou redirect
return array(
'result' => 'success',
'redirect' => $this->get_return_url( $order )
);
}

} // end \WCGatewayOffline class

}


všeč(1) ni všeč(2) spam(0)
#2

https://wordpress.org/plugins/woocommerce-payment-discounts/


všeč(1) ni všeč(0) spam(0)
#13

OvcaX:

brazara kaj the f**** pa vi delate?

Mi imamo 10x manjšo konfiguracijo za ogromen magento z 250k SKUji.



če te zanima managed hosting lahko pogledava ali lahko pomagamo.




So ... 5GB imate 250k izdelkov? Torej "panika", ki sem se z njo srečal pred dnevi, da 4 GB (300 skujev) cca. 1k daily visitov (2-3 PW na visitorja) ne bo dovolj je odveč?


všeč(0) ni všeč(0) spam(0)