Re: How to disable the automatic swipe effect on the product page? Programming Web Development by kimnancy I recommend checking the lightgallery documentation or reaching out to their support forum for assistance with disabling the automatic swipe effect on your product page. It might provide you with specific guidance on the code modification you're looking for. Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim …) thousand and one tweaks that really should be default like disabling the multi step context menus that present only some options… Disabling of hyperlink Programming Web Development by softheart Disabling of hyperlink can be done by the help of Javascript, … Re: Disabling of hyperlink Programming Web Development by softheart … nice code, but I need a little more information regarding disabling of hyper link. I want that its color would become… Re: Disabling of hyperlink Programming Web Development by softheart … daryII1 I am happy that you got my point regarding disabling of hyperlink. I have not yet checked your code, but… Disabling arrow keys, +other beginner questions Programming Software Development by Eternity[LK] … click the button by using the mouse. Done. 1.2.) Disabling tab button which allows user to navigate between buttons in… code needs to be written. Which one makes more sense: * disabling keys (up,down,left,right) * make the buttons do something… Disabling the parent form when child form is open Programming Software Development by poojavb … click on member login the background form gets grayed out.... Disabling the form is not the option cause it will just… form then the screen should show some movement... I tried disabling the form...changing the background of the form to opaque… Re: Disabling arrow keys, +other beginner questions Programming Software Development by jonsca Could your professor have meant something like disabling them as well? That was the first thing that came to my mind, but maybe that's oversimplifying it a bit. Re: Disabling arrow keys, +other beginner questions Programming Software Development by Geekitygeek … does seem like an odd homework assignment.[/QUOTE] I agree, disabling the button would render 1.1 pointless, but 1.1… Disabling Win XP standard picture/fax viewer Hardware and Software Microsoft Windows by Samashahdi … double click on the image. Is there any way of disabling this ? Regards ~Sam~ Disabling Internet Explorer on a Terminal server Hardware and Software Microsoft Windows by kev1978 Does anyone know how to go about disabling IE 6 on a terminal server or any windows server w/o deleting the iexplorer.exe. Thanks, Disabling the title bar? Programming Software Development by aot … easily be able to exit my experiments... so hints on disabling alt-tab would be useful too. (Of course, I'd… Disabling hover events in Jbutton Programming Software Development by zyaday I don't wan't my buttons to reacts to hover events or any other events... and i dont want to disable them.............................how do i do that without disabling them ? Disabling back/forward buttons Programming Web Development by Sheridan Is there a way of disabling the browser back/forward buttons using PHP? Or is there a way of destroying the memory or history that the back/forward buttons use to traverse previously visited pages? Re: Disabling back/forward buttons Programming Web Development by langsor [QUOTE=Sheridan;679548]Is there a way of disabling the browser back/forward buttons using PHP? Or is there a way of destroying the memory or history that the back/forward buttons use to traverse previously visited pages?[/QUOTE] Nope, and why would you want to? ... Re: Disabling back/forward buttons Programming Web Development by iamthwee I agree with the above post, disabling such functionality is a nuisance. It can't be done with php but may be possible using javascript. However, considering people use very different web browsers you won't be able to guarantee standard behaviour. Disabling tital and status bar from the registry Hardware and Software Microsoft Windows by Himanshu1984 Hi, i have developed an application in Windows CE to play media file but its not running in full screen mode by default, also if anyone can please provide the information about disabling the title bar, control bar and status bar from the registry then that would be very helpful for me. Thanks Himanshu Disabling CTRL-N in IE7 Programming Web Development by sbhavan I am using the following code for disabling Ctrl-N in IE7. It disables the Ctrl-N feature … Disabling autmatic update & administrator privelege problems Hardware and Software Microsoft Windows by samizdat … (it doesn't); that command line thing (nope). Everything but disabling the automatic updates. You'd think that'd be the… Disabling PHP within a specified folder, except for certain files? Programming Web Development by Kadence I'd like to turn PHP off within a folder, with the exception of certain files (e.g. disabling PHP for all files but test1.php and test2.php, or test*.php). I believe PHP can be turned off for a folder by placing "php_flag engine off" within that folder's .htaccess, but how can I still have certain specific php files work? Disabling/enabling mouse/keyboard input Programming Software Development by Death20 I'm a begginner programmer running a windows XP with Dev-C++. Would it be possible to know the syntax to disabling mouse and keyboard input? (I want to disable the mouse first, then later both the mouse and keyboard.) Google's pointed me towards blockinput(), but I can't get that to work. Disabling Copying Of Windows File Programming Software Development by jhai_salvador … USB Drive? I want to Disable Copying of files by; Disabling CTRL+C, Removing Copy from Right Click or Move (when… Disabling save button on firefox download window Programming Web Development by divyakrishnan ….w3.org/1999/xhtml"> <head> <!---------Disabling save button works with IE -------------> <meta name="… Re: Disabling PHP Safe Mode for a specific directory Programming Web Development by visio …=org.mozilla%3Aen-GB%3Aofficial&hs=NqV&q=+Disabling+Safe+Mode+for+a+directory&btnG=Search"…;]disabling safe mode for a directory[/URL] " and this post … Re: Disabling the underline of a hyperlink Digital Media UI / UX Design by rsatyajit77 [quote=jamello;328449]Yes! both approaches worked! thanks:lol:[/quote] To Disabling the underline of a hyperlink <style type="text/css"> <!-- .w { font-family: Arial, Helvetica, sans-serif; text-decoration: none; } --> </style> Re: Disabling Keys in VB.Net Programming Software Development by SolTec … chart for the numeric equivilant's and then search "disabling keystrokes in VB.NET" This would be coded in… Re: Disabling and enabling ctrl keys Programming Software Development by jhai_salvador wow.. thats alot of code for disabling keys... hehe.. but how does it work?... i hope after i disable the keys i can enabled it again... Re: Disabling of hyperlink Programming Web Development by fobos you should use "if/else" statements.. [CODE=php] <?php if(isset($user) && (isset($pass)) { //whatever u want for this echo "<td><a href='www.something.com/file.htm'>Click</a><td>"; } else { echo "<td>Click</td>"; } [/CODE] Hope this helps.. Re: Disabling of hyperlink Programming Web Development by ko ko Add 'class' or 'id' for this anchor. [code] <?php if(isset($user) && (isset($pass)) { //whatever u want for this echo "<td><a href='www.something.com/file.htm' class='memberlink'>Click</a><td>"; } else { echo "<td>Click</td>"; } ?> [/code] And you … Re: Disabling of hyperlink Programming Web Development by daryll1 If I understand right you'd like a link that doesn't go anywhere if they're not an admin. Something like [CODE]if($user= "admin"){ print '<a href="page.php" class="enabled-link">Admin Section</a>'; } else{ print '<a href="" class="disabled-link">Admin Section</a>'; }[/CODE]…