aichholzer
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Visitor map generator] excellent pluginThank you donald97 for the good comments on the plug-in. I’m very glad it works for you. Regarding the plug-in’s CSS if you read the “Information / Help” page you’ll see that’s actually mentioned there:
By default the plug-in will not include any CSS and it will be up to your to add the properties in your .css (Template style sheets) files.
However, I will set the plug-in to use some default values even if the CSS has not been entered, so you can always see a map.
Thank you once again.
Forum: Plugins
In reply to: register_activation_hook and Global VariablesFixed it, thank you.
Forum: Plugins
In reply to: register_activation_hook and Global VariablesHello, I have this issue. Here’s my code:
register_activation_hook( dirname(__FILE__).’/visitors.php’, ‘visitors_install’ );
add_action(‘admin_menu’, ‘ip_tracker_map_add_options’);function visitors_install()
{
global $wpdb;
$table_name = “wp_accessips”;if($wpdb->get_var(“SHOW TABLES LIKE ‘$table_name'”) != $table_name)
{
$sql = “CREATE TABLE “.$table_name.” (
id int(11) NOT NULL auto_increment,
ip varchar(15) NOT NULL,
latlon varchar(100) NOT NULL,
hits int(11) NOT NULL,
PRIMARY KEY (id) )”;dbDelta($sql);
add_option( “visitor_map_db_version”, “0.3.0” );
}
}I keep getting an error about re-declaring the visitors_install function. This very code is being used on another plugin I use and it works like a charm, can you tell the problem here?
Thank you
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] swobjects 2.0.4Too bad ?? I’ll wait for a new version of NextGen as well, meanwhile I have to disable Vipers Quicktags, as I do have more galleries than videos but on the other hand all my videos are offline or using the old YouTube object.
Thank you guys. ??
Same for me, I had to disable Vipers Quicktags, I have, however, already reported it to Viper so he can release a patch.