BikeStore-Template without store?

Amazing responsive, mobile ready VirtueMart e-commerce Joomla template
Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Tue Mar 12, 2013 7:49 pm
Reply with quote
Report this post
Hello,
I´ve been asked by a friend if I could make a presentation website for products that will be sold in an external store. This template seems to be great for presentation, but would it be possible to use it without all the store things?
I tested the Joomla 3.0 version, it is really perfect, but my friend wants to stay with Joomla 2.5. And when I´m honest, I don´t like 3.0 too...it is so....messed up :)

How to setup the 2.5-Template like the 3.0-Version, only pretty presentation but no selling options? The original store will be built in with a link, that´s all :)

I easily thought I uninstall all shop-related modules, will it be enough for my purpose?

Thanks in advance,
Steph
User avatar
Senior Boarder

GK User
Wed Mar 13, 2013 9:26 am
Reply with quote
Report this post
In Joomla! 3.0 version we just use k2 item instead of VirtueMart products, so you can do the same. Then you just need to change data source for News Show Pro modules from VM to K2, and of course you will not have any store features.
User avatar
Platinum Boarder

GK User
Wed May 29, 2013 2:40 pm
Reply with quote
Report this post
hey guys im having the same issue? im using J 2.5 as my client ( a bike store) is on a faulty host. anyway so i paid and managed to the template setup even with the great starter package. anyway how do i remove all the prices the client only wants to move to Ecommerce later. right now just a sort of catalog so not quite sure what to do
User avatar
Fresh Boarder

GK User
Thu May 30, 2013 9:51 am
Reply with quote
Report this post
Probably you just need to disable showing prices in VirtueMart, you can do it via CSS, just add display: none for price container or maybe there is option in VirtueMart to hide price.
User avatar
Platinum Boarder

GK User
Wed Jul 24, 2013 4:22 am
Reply with quote
Report this post
somebody who wants to help me ?

I can not see my bike store front page, everything is in the backend, but when i want to see the frontpage, all is white.
User avatar
Fresh Boarder

GK User
Wed Jul 24, 2013 10:29 am
Reply with quote
Report this post
Please enable display_errors option in PHP settings. You can also look to Joomla! error logs because without additional details it is really hard to help you.
User avatar
Platinum Boarder

GK User
Wed Jul 24, 2013 4:55 pm
Reply with quote
Report this post
bkrztuk wrote:Please enable display_errors option in PHP settings. You can also look to Joomla! error logs because without additional details it is really hard to help you.


this is the error.php
<?php



/**

*

* Error view

*

* @version 1.0.0

* @package Gavern Framework

* @copyright Copyright (C) 2010 - 2011 GavickPro. All rights reserved.

*

*/



// No direct access.

defined('_JEXEC') or die;

jimport('joomla.factory');

// get the URI instance

$uri = JURI::getInstance();

// get the template params

$templateParams = JFactory::getApplication()->getTemplate(true)->params;

if($templateParams->get('webmaster_contact_type') != 'none') {

// get the webmaster e-mail value

$webmaster_contact = $templateParams->get('webmaster_contact', '');

if($templateParams->get('webmaster_contact_type') == 'email') {

// e-mail cloak

$searchEmail = '([\w\.\-]+\@(?:[a-z0-9\.\-]+\.)+(?:[a-z0-9\-]{2,4}))';

$searchText = '([\x20-\x7f][^<>]+)';

$pattern = '~(?:<a [\w "\'=\@\.\-]*href\s*=\s*"mailto:' . $searchEmail . '"[\w "\'=\@\.\-]*)>' . $searchText . '</a>~i';

preg_match($pattern, '<a href="mailto:'.$webmaster_contact.'">'.JText::_('TPL_GK_LANG_CONTACT_WEBMASTER').'</a>', $regs, PREG_OFFSET_CAPTURE);

$replacement = JHtml::_('email.cloak', $regs[1][0], 1, $regs[2][0], 0);

$webmaster_contact_email = substr_replace($webmaster_contact, $replacement, $regs[0][1], strlen($regs[0][0]));

}

}



// get necessary template parameters

$templateParams = JFactory::getApplication()->getTemplate(true)->params;

$pageName = JFactory::getDocument()->getTitle();



// get logo configuration

$logo_type = $templateParams->get('logo_type');

$logo_image = $templateParams->get('logo_image');

$template_style = $templateParams->get('template_color');



if(($logo_image == '') || ($templateParams->get('logo_type') == 'css')) {

$logo_image = JURI::base() . '../images/logo.png';

} else {

$logo_image = JURI::base() . $logo_image;

}

$logo_text = $templateParams->get('logo_text', '');

$logo_slogan = $templateParams->get('logo_slogan', '');



?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">

<head>

<title><?php echo $this->error->getCode(); ?>-<?php echo $this->title; ?></title>

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2.0">

<link href="http://fonts.googleapis.com/css?family=Oswald:300,400,700" rel="stylesheet" type="text/css" />

<link href="http://fonts.googleapis.com/css?family=Russo+One" rel="stylesheet" type="text/css" />

<link rel="stylesheet" href="<?php echo JURI::base(); ?>templates/<?php echo $this->template; ?>/css/system/error.style<?php echo $template_style; ?>.css" type="text/css" />

</head>

<body>

<div id="gkPage">

<div id="gkPageTop">

<?php if ($logo_type !=='none'): ?>

<?php if($logo_type == 'css') : ?>

<a href="./" id="gkLogo" class="cssLogo"></a>

<?php elseif($logo_type =='text') : ?>

<a href="./" id="gkLogo text">

<span><?php echo $logo_text; ?></span>

<small class="gkLogoSlogan"><?php echo $logo_slogan; ?></small>

</a>

<?php elseif($logo_type =='image') : ?>

<a href="./" id="gkLogo">

<img src="<?php echo $logo_image; ?>" alt="<?php echo $pageName; ?>" />

</a>

<?php endif; ?>

<?php endif; ?>

</div>

<div id="gkPageWrap">

<div id="frame">

<div id="errorDescription">

<h2><?php echo JText::_('TPL_GK_LANG_ERROR_INFO'); ?> <strong><?php echo $this->error->getCode(); ?></strong></h2>

<h3><?php echo JText::_('TPL_GK_LANG_ERROR_DESC'); ?></h3>

</div>

<div id="errorboxbody">

<a href="<?php echo JURI::base(); ?>" title="<?php echo JText::_('JERROR_LAYOUT_GO_TO_THE_HOME_PAGE'); ?>"><?php echo JText::_('JERROR_LAYOUT_HOME_PAGE'); ?></a>

<span>-</span>

<?php if($templateParams->get('webmaster_contact_type') == 'email') :

echo $webmaster_contact_email;

?>

<?php elseif($templateParams->get('webmaster_contact_type') == 'url') : ?>

<a href="<?php echo $webmaster_contact; ?>"><?php echo JText::_('TPL_GK_LANG_CONTACT_WEBMASTER'); ?></a>

<?php endif; ?>

</div>

</div>

</div>

</div>

</body>

</html>
User avatar
Fresh Boarder

GK User
Thu Jul 25, 2013 10:25 am
Reply with quote
Report this post
error.php is not a log file for errors but file which display J! errors when they occur. Please look at error_log file and don't paste content here but just attach a file.
User avatar
Platinum Boarder


cron