productsInRow v1.1 Problem

Marik

No avatar

2006-02-23 10:04

I have used productsInRow v1.1
My product are now in rows
But if i want to change it back in the plugin center
It doesn't work

wizzud

No avatar

2006-02-23 17:20

If by 'plugin center' you mean the Plugin Manager control panel then the reason for productsInRow not being controlled by the Plugin Manager is probably that you have not set it up that way.
Read the AboutThisPlugin document for Plugin Manager, User Guide section, beginning 'Plugins that have not been set up to run under the Plugin Manager ...' and see if that helps.

Otherwise, just uninstall productsInRow if you don't want to use it.

Marik

No avatar

2006-02-24 09:32

I want to switch between the rows
if i use the code

if(pluginIsEnabled('productsInRow/productsInRow.php'))
{
require DIR_PLUGINS.'productsInRow/productsInRow.php';
}

the plugin don't load any more

wizzud

No avatar

2006-02-24 10:08

The NameOfPlugin is just that - the name of the plugin, not its path. So the correct code should be

<?php
if( pluginIsEnabled'productsInRow' ) ){
  require 
DIR_PLUGINS 'productsInRow/productsInRow.php';
}
?>

Marik

No avatar

2006-02-25 20:18

that's it!!

thnx!!

Back to top
about us | contact