storeline
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: woocommerce sellers linkThank you!
Forum: Plugins
In reply to: [Abandoned Cart Lite for WooCommerce] plugin not workinghi, i check the plugin in fresh install wordpress and the plugin work. mybe you can figur whats the problem with my website? i can pay for it…
Hi bro,
i try the code you put here but where i need to write the category ID?Forum: Plugins
In reply to: [Abandoned Cart Lite for WooCommerce] plugin not workingHi, thanks for the replay
i cant see Abandoned Carts, i put things in my shopping cart and enter my details but i didnt see the order.
the Abandoned Cart version is 3.7
the woocommerce version is 3.0.5Forum: Networking WordPress
In reply to: multisite auto themei look at the website but i didnt get how they can set a default theme. they sell seo plans…
Forum: Networking WordPress
In reply to: multisite auto themethuanks, i will
Forum: Plugins
In reply to: [WC Duplicate Order] not workingthanks bro!!
but which file i need to change?
i try to change the wc-duplicate-order.php file but after the change i get white screen of deaththis is what i do
<?php
/*
Plugin Name: WC Duplicate Order
Plugin URI: https://jamiegill.com
Description: Adds a duplicate link to Woocommerce on the order actions to duplicate the existing order
Version: 1.2
Author: Jamie Gill
Author URI: https://jamiegill.com
License: GPLv2 or later
*/if ( ! defined( ‘ABSPATH’ ) ) {
exit; // Exit if accessed directly
}/**
* Check if WooCommerce is active
**/
if ( in_array( ‘woocommerce/woocommerce.php’, apply_filters( ‘active_plugins’, get_option( ‘active_plugins’ ) ) ) ) {define( ‘WCO_PLUGIN_DIR’, dirname( __FILE__ ) );
include_once( ABSPATH . ‘wp-admin/includes/plugin.php’ );
if (is_plugin_active( ‘woocommerce/woocommerce.php’)){
// Hooke Duplicate CTA to shop_order post type
function clone_order_cta($actions, $post){
if ($post->post_type==’shop_order’) {
$url = admin_url( ‘edit.php?post_type=shop_order&order_id=’ . $post->ID );
$copy_link = wp_nonce_url( add_query_arg( array( ‘duplicate’ => ‘init’ ), $url ), ‘edit_order_nonce’ );
$actions = array_merge( $actions,
array(
‘duplicate’ => sprintf( ‘%2$s‘,
esc_url( $copy_link ),
‘Duplicate’
)
)
);
}return $actions;
}
add_filter( ‘post_row_actions’, ‘clone_order_cta’, 10, 2 );
}
Forum: Fixing WordPress
In reply to: woocommerse problemthank you!!
Forum: Developing with WordPress
In reply to: Multisite admin roleYou are a genius!!!
Thanks a lot bro!!!
Forum: Developing with WordPress
In reply to: Multisite admin roleForum: Developing with WordPress
In reply to: Multisite admin roleloco translate
and other tags like posts and more. if you can just write it and i will add some more
Thanks a lot!!Forum: Developing with WordPress
In reply to: Multisite admin roleThanks for replying
I want to remove specific tabs from the menu …