Dorian Vasco
Forum Replies Created
-
Well, it seems that the plugin is no longer under active development and was even removed from the repository.
The problem I described above occures because the plugin caches the menu css in one file, not being aware of a multisite blog.
I fixed this behaviour by adding a $blog_id into the file name.
function front_end_head(){ //// global $blog_id; //// wp_register_style("custom-menu-images", site_url()."/wp-content/plugins/custom-menu-images/css/custom_menu_images" . $blog_id . ".css");
and
function save_config(){ if(strpos($_POST['_wp_http_referer'], 'nav-menus.php')!==false){ global $blog_id; [...] file_put_contents($this->dir."/css/custom_menu_images" . $blog_id . ".css", preg_replace("#[\t]+#", "\t", implode("\n", $this->styles)));
Forum: Plugins
In reply to: NextGen Gallery – WPMU – Gallery Folder IssueEven if the automatic path in the network settings do not apply to galleries of my blogs, its possible to set the path manually. Upload and thumbs work fine but the only issue is that on my dashboard the size of the pictures isnt shown.
Is there something I can do about?Greetings,
DorianHmm isn’t it possible just to create a gallery and upload pictures in one blog. If you then switch to another blog in your multisite, add a gallery and set the path to the first one and search for new pictures?
Unfortunatly I cant try it myself, but it would be cool if its working.
Forum: Plugins
In reply to: [Plugin: Fast and Secure Contact Form] Captcha does not workhttps://dorianvasco.de/en/contact
Hmm on another wordpress installation it seems to work just fine… maybe a theme issue?