NDDT
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Map field to multiple namesOnly way would be to do that with javascript.
It can’t be solved on the serverside.
Forum: Plugins
In reply to: [WP Super Cache] Leverage Browser Caching = 0Just open the .htaccess-File in your wordpress-folder and insert this at the bottom.
Forum: Fixing WordPress
In reply to: theme upload from pcCould it be that the server closes the connection bevore u fully transmitted the theme? Happens with large files.
Forum: Plugins
In reply to: [Max Mega Menu] Theme-IntegrationHi Tom,
I won’t sell the Theme and it will only be handled by us. I’m developing it this way to set up new websites faster.
Thats why i want to change the default-values of Appearance-> Mega Menu.
Forum: Plugins
In reply to: [Max Mega Menu] Theme-IntegrationI have one more question: Where would i change the initial values for the options-page?
Forum: Plugins
In reply to: [Max Mega Menu] Theme-IntegrationHi Tom,
thanks for your reply. I packaged the plugin with a theme. And u were right. The paths to the javascript were the problem.
I solved it by setting the path-variables to:
define( 'MEGAMENU_VERSION', $this->version ); define( 'MEGAMENU_BASE_URL', trailingslashit(get_template_directory_uri() . '/inc/plugins/megamenu') ); define( 'MEGAMENU_PATH', get_template_directory() . '/inc/plugins/megamenu/' );For evrybody else reading this: You also have to change the init-hook to:
add_action( 'after_setup_theme', array( 'Mega_Menu', 'init' ), 10 );