JustCarmen
Forum Replies Created
-
Forum: Plugins
In reply to: [Menubar] Menubar-template in themefolderThank you for putting me on the right track, but your solution didn’t work because the created url was wrong. The plugin was searching the template in the theme directory as a subdirectory of the plugin directory.
I took me some puzzling but I got it working by changing two other lines in wpm_main.php:
Assume you put a folder in your themefolder that is named ‘menubar-templates’
Than you can leave the line “$wpm_options->templates = ‘menubar-templates” as it is (you only have to change this if you change the folder name also).
The two lines below has to be changed:
1. Change this line:
$wpm_options->templates_url = plugins_url ($wpm_options->templates);Into this line:
$wpm_options->templates_url = get_stylesheet_directory_uri() . '/' . ($wpm_options->templates);2. Change this line:
$wpm_options->templates_dir = WP_PLUGIN_DIR. '/'. $wpm_options->templates;Into this:
$wpm_options->templates_dir = get_stylesheet_directory() . '/'. $wpm_options->templates;[Please post code snippets between backticks or use the code button.]
In that case it is working in the backend as well as in the frontend of the site.
And thank you for putting this option in the next version of menubar!
Forum: Fixing WordPress
In reply to: WordPress 2.9.2 upgradeit’s quite simple to get rid of that bug.
I just did a search on the text ‘you are not allowed etc.’ in Dreamweaver and found a bunch of files in the imageflow plugin that uses that text.
But the one that is important is the one in plugins/nextgen-imageflow/lib/core.php
Just uncomment the first line of that file by adding // after the <?php.
So the line will look like this:
<?php //if(preg_match(‘#’ . basename(__FILE__) . ‘#’, $_SERVER[‘PHP_SELF’])) { die(‘You are not allowed to call this page directly.’); }After that you can reach the update-core file again.
I never used this plugin before and normally I won’t use any plugins that are so buggy (because this is not the only bug I found) but I haven’t found any other plugin that does the same imageflow so I give it a shot anyway.
Forum: Plugins
In reply to: [Plugin: Custom Contact Forms] Cripples NextGen GalleryI think it is the JQuery. I had the same issue with Dynamic Content Gallery and Custom Contact Forms together.
Try disabling ‘Front End JQuery’ in the settings of CCF.
Forum: Plugins
In reply to: [Custom Contact Forms] [Plugin: Custom Contact Forms] Breaks dashboardSame issue here, thanks bwoosh for the workaround, but I hope the developper will solve this annoying issue in the next version of custom contact forms!
Forum: Plugins
In reply to: [Content Types] [Plugin: Content Types] Image file upload is brokenThank you for your quick response. The image popup is working fine now!!!
Forum: Plugins
In reply to: [Simple Portfolio] [Plugin: Simple Portfolio] Fatal ErrorNo, you must add the line:
AddHandler x-httpd-php5 .php
in your .htaccess file. You will find the .htaccess file in the root of your website.
Forum: Plugins
In reply to: [Custom Contact Forms] [Plugin: Custom Contact Forms] jQueryAfter the last update of CCF earlier this week another plugin (Dynamic Content Gallery) stopped working. When I disable frontend JQuery for CCF everything is working as it should. Before the last update both plugins were working properly so I am pretty sure it is your plugin that causes the conflict.
Today I did a fresh WordPress install on my localhost. And the first thing I did after installation was installing your plugin for testing purposes.
But even on a fresh install with no other plugins or themes or things like that standing in the way, the same issue occurs. So I am pretty sure it is a mistake in the plugin itself.
For me it is not a problem anymore because the issue I was dealing with that made me install the plugin in the first place Is not there anymore. I have solved it in an other way.
I wish you good luck in the further development of the plugin.
I updated the plugin but unfortunately it doesn’t make any difference.
The option ‘Show the redirect URL below in the link instead of this page url’ appears to do nothing at all. It doesn’t make any difference whether the checkbox is checked or unchecked. In both cases the redirect URL is shown.
I have the exact same problem as the topic starter.
I can’t give you an example though because my site isn’t online yet. It’s only on localhost.
I hope you can fix this problem. Thanks.