Sana Ullah
Forum Replies Created
-
Forum: Plugins
In reply to: [jQuery Dropdown Menu] Deactivating plugin screws up my siteHi Amy,
if you wanted to deactivate plugin so, you can just remove jquery_drop_down_menu(‘HOME’) function from header.php then deactivate from backend.if you wanted me to help on your website on the problem that occur on your website so, just send me URL.
Thanks,
SanaForum: Plugins
In reply to: [Firelight Lightbox] [Plugin: Easy FancyBox] Cant get Easy Fancybox to workHi Matrover,
I come here after long time, because i was very busy in pass days, sorry for late response.
Thanks
Forum: Plugins
In reply to: [Firelight Lightbox] [Plugin: Easy FancyBox] Cant get Easy Fancybox to workHi Matrover,
You have installed the oldest version, I am sure, please download this file and overwrite the existing one by this one http://downloads.wordpress.org/plugin/jquery-drop-down-menu-plugin.2.4.zip.
Thanks
Forum: Plugins
In reply to: [Firelight Lightbox] [Plugin: Easy FancyBox] Cant get Easy Fancybox to workHi Matrover,
Please use latest plugin.
http://downloads.wordpress.org/plugin/jquery-drop-down-menu-plugin.2.4.zip.I have visited http://volleybal.vridos.nl/de-teams/heren-2/, i have not found any problem in the site,
Can you tell me the problem you are facing
Thanks
Forum: Plugins
In reply to: [jQuery Dropdown Menu] [Plugin: JQuery Drop Down Menu] Just don't work at allHi Csigncsign,
It’ working to multiple level, Please have a look on http://www.phpinterviewquestion.com/demo/.
Please have a look in you css file, I think some css class is conflicting with the plugin css.
Please use firebug Mozilla addon for better understanding,
Thanks
Forum: Plugins
In reply to: [Firelight Lightbox] [Plugin: Easy FancyBox] Cant get Easy Fancybox to workHi,
matrover, I have review your site,you are using old version of plugin, that’s why problem created.
Please try latest version2.0,because new version loaded embed query library instead of add their own.The version2.0 uses all standard method of wordpress, like, to add jquery library use wp_enqueue_script() etc.
I hope this will help
Thanks
Sana UllahHello,
you need to replace below function with jquery_drop_down_menu() existing function in jquery-drop-down-menu.php
function jquery_drop_down_menu($home=’Home’) {
$gdd_wp_url = get_bloginfo(‘wpurl’) . “/”;
$home_link = get_option(‘home_link’);
$include = get_option(‘include’);
$fadein = get_option(‘fadein’);
$fadeout = get_option(‘fadeout’);
$sort_by = get_option(‘sort_by’);
$sort_order = get_option(‘sort_order’);
$depth = get_option(‘depth’);
$exclude_pages = get_option(‘exclude_pages’);
$custom_menu = get_option(‘custom_menu’);
$custom_menu_value = get_option(‘custom_menu_value’);
$custom_menu_include = get_option(‘custom_menu_include’);$parameters=’title_li=’;
if($sort_by)
$parameters.=’&orderby=’.$sort_by.”;
if($sort_order)
$parameters.=’&order=’.$sort_order.”;$parameters.=’&depth=’.$depth.”;
if($exclude_pages)
{
$parameters.=’&exclude=’.$exclude_pages.”;
}echo ‘<ul id=”dropmenu”>’;
if($home_link)
{
echo ‘<li >‘.$home.’‘;
}
if($custom_menu==1 && $custom_menu_include==1)
{
echo stripslashes($custom_menu_value);
}wp_list_categories($parameters);
if($custom_menu==2 && $custom_menu_include==1)
{
echo stripslashes($custom_menu_value);
}echo ”;
}
to work with categories.
Thanks