sergedirect
Forum Replies Created
-
This is a must-have feature for eCommerce stores.
CRM is not just to manage new leads, but all about existing customer care as well and continues business development, up-sells, cross-sells etc.
I can’t find any docs, am I looking in the wrong place? – We can help to code it if you guys are struggling with time…
I suppose adding a custom role e.g. “CRM client” could solve that.Forum: Plugins
In reply to: WooCommerce Attribute Variations Accounting For More Than One Stock LevelHi I’ve been wandering if you have found a solution to your issue, as I am currently developing a tickets booking option in woocommerce and also need to manage stock for different days.
ThanksForum: Plugins
In reply to: [Custom Permalinks] Notice: Undefined index: pathPlease ignore my previous enhancement suggestion as it turns out to be a little wrong please consider this little modification as possible solution
function custom_permalinks_trailingslash($string, $type) {
global $_CPRegisteredURL;$url = parse_url(get_bloginfo(‘url’));
$request = ltrim(isset($url[‘path’]) ? substr($string, strlen($url[‘path’])) : $string, ‘/’);if ( !trim($request) ) return $string;
$path = ”; // declare $path for future use
if(array_key_exists(‘path’,$url) == true){ // Check whether $url has “path” index
$path = $url[‘path’];
}
if ( trim($_CPRegisteredURL,’/’) == trim($request,’/’) ) { // continue with a $path as variable
return ($string{0} == ‘/’ ? ‘/’ : ”)
. trailingslashit($path) .
$_CPRegisteredURL;
}
return $string;
}