Quote:
Originally Posted by NarutoFTW
Are we able to use custom icons?
|
What are you referring to?
Quote:
Originally Posted by blue6995
It looks the new version doesn't allow you to disable the auto template edits.
Has this been fixed now?
Thanks
|
You can restore this in the meantime by editing admincp/credits_admin.php and finding:
PHP Code:
// ##################### Start Events Update ###################################
and inserting this ABOVE that:
PHP Code:
// ##################### Start Displays Update ###################################
if ($_REQUEST['do'] == 'update_displays')
{
$vbulletin->input->clean_array_gpc('r', array(
'active' => TYPE_ARRAY
));
$displays = $db->query_read("SELECT displayid FROM " . TABLE_PREFIX . "credits_display");
while ($display = $db->fetch_array($displays))
{
$db->query_write("UPDATE " . TABLE_PREFIX . "credits_display SET enabled = " . intval($vbulletin->GPC['active'][$display['displayid']]) . " WHERE displayid = '" . $db->escape_string($display['displayid']) . "'");
}
$db->free_result($displays);
vbcredits_cache();
define('CP_REDIRECT', 'credits_admin.php?' . $vbulletin->session->vars['sessionurl'] . 'do=displays');
print_stop_message('credits_displays_saved');
}
Quote:
Originally Posted by ocloren
When will crediting of events be available for blog and article sections of vBulletin 4? ...if ever.
|
It is on the radar, but no official timeframe is available sorry. It will probably be one of the sooner ones though, because it seems to have a mild number of people asking for it.
Quote:
Originally Posted by rootsxrocks
Its there somting more I have to set up for charging for content, when a member clicks the button the header loads in the post and then it stalls .
|
Please keep support for the pro features at my official site thanks
Quote:
Originally Posted by merk_aus
Code:
In order to upgrade or install vBCredits, you must upload credits_installer.php to the plugins folder within your forum directory!
Is what it comes up with when attempting to install Credits on fresh install of vbps 4.1 PL2
|
Sorry, but that was something that was forgotten to be changed, but that means you are lacking the (forum)/dbtech/credits folder, or at least the credits_installer.php file within it. Make sure your FTP program deep-uploads directories. If that one is missing, you are probably missing others.