opencart这个程序怎么样,主要的优缺点在哪里?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了opencart这个程序怎么样,主要的优缺点在哪里?相关的知识,希望对你有一定的参考价值。

国外的网店程序

很不错的,速度很快,SEO优化很好,一般网站建好后,做好内容更新,对于2,3百万的关键词,自己上首页的。而且代码简单,适合二次开发。你可以去www.23athome.com看看,有关于opencart的教程 参考技术A opencart的SEO优化非常棒,运行速度也很快,缺点目前只发现一点,当产品价格有多种组合时就不好用,减速机4S体验店为您解答。

PHP OpenCart主要类别

<?php
	$top_cat_id = '';
	if (isset($this->request->get['path'])) {
		$path = $this->request->get['path'];
		$cat_array = explode ("_", $path);
		$top_cat_id = $cat_array[0];
	}

	$this->load->model('tool/seo_url');
	
	$results = $this->model_catalog_category->getCategories();

	if ($results) {
		$output = '<ul>';
	}

	foreach ($results as $result) {
		$new_path = $result['category_id'];
		$unrewritten = HTTP_SERVER.'index.php?route=product/category&path=' . $new_path;
		$rewritten = $this->model_tool_seo_url->rewrite($unrewritten);
		if ($new_path == $top_cat_id) {
			$output .= '<li id="current-cat"><a href="'.str_replace('&', '&', $rewritten).'">'.$result['name'].'</a>';
		} else {
			$output .= '<li><a href="'.str_replace('&', '&', $rewritten).'">'.$result['name'].'</a>';
		}

		$output .= '</li>';
	}

	if ($results) {
		$output .= '</ul>';
	}
	
	echo $output;
?>

以上是关于opencart这个程序怎么样,主要的优缺点在哪里?的主要内容,如果未能解决你的问题,请参考以下文章

zencart与opencart用哪一个做电子商务网站好?

OpenCart 中的权限被拒绝?

Opencart 中的支付网关集成

opencart资料链接

ZenCart与osCommerce、OpenCart、PrestaShop哪种开设外贸网店更适合新手操作

opencart3.0模板问题