Page 53 of 77 FirstFirst ... 343515253545563 ... LastLast
Results 521 to 530 of 762
  1. #521
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by balihr View Post
    And I thought it would be rude of me to comment on that post... Not that I mind, but it really was bad taste. It would be much better if that plugin was contributed in the Plugins section and available for everyone to download from there. At least we would have one central place to download free stuff...
    Nope.. the post itself was kinda rude IMHO.. My response was a LOT more toned down than what I originally wanted to say..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  2. #522
    Join Date
    Jan 2014
    Location
    Maui, Bohol, Philippines, Philippines
    Posts
    26
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    i uploaded all the files for zx slider onto my site and enabled it to true and added the pictures for the slides but nothing shows besides the number 1 in the blank white space where the slide should show right under the search bar

    Click image for larger version. 

Name:	jdm slide show.jpg 
Views:	91 
Size:	67.6 KB 
ID:	13719

  3. #523
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,617
    Plugin Contributions
    19

    Default Re: ZX Slideshow official thread

    And yet another jQuery conflict...

    First of all, you have tons of jQuery loading on your site - get that fixed. You're loading:
    1) jQuery 1.7.1
    2) jQuery 1.4.2
    3) jQuery 1.7.1
    4) jQuery 1.9.1
    The best part is that one kills the other so in the end, browser uses only 1.9.1 and the first 3 are loaded for nothing...
    Go to your includes/templates/e-ssentials/jscript and delete the following files:
    jscript_1.7.1_jquery.js
    jscript_jquery-1.4.2.min.js
    jscript_jquery-1.7.1.min.js

    Next, delete
    jscript_easySlider.js
    from the same directory because it's not being used. I believe you can delete jscript_jquery.cycle.all.min.js as well, but I'm not sure if it's being used somewhere else on your site...

    Next, check inside includes/modules/pages/index/ and see if you have any .js files that would be loading anything related to slides and delete that.

    And finally, you'll need to locate this piece of code:
    Code:
    <script type="text/javascript">
    		$(document).ready(function(){   
    				$("#slider").easySlider({
    						auto: true, 
    						continuous: true,
    						numeric: true,
    						firstShow : true,
    						lastShow : true,
    						controlsShow: true,
    						speed: 800,
    						pause: 4000
    				});
    	   });     
    </script>
    
    			<div id="slider">
                    <ul>        
    				                </ul>
    			</div>
    somewhere in your site (perhaps includes/templates/e-ssentials/common/tpl_header.php) and delete that code.

    Once you remove all that conflicting code, ZX Slideshow will work.

    Regards,
    Leonard

  4. #524
    Join Date
    Jan 2014
    Location
    Maui, Bohol, Philippines, Philippines
    Posts
    26
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by balihr View Post
    And yet another jQuery conflict...

    First of all, you have tons of jQuery loading on your site - get that fixed. You're loading:
    1) jQuery 1.7.1
    2) jQuery 1.4.2
    3) jQuery 1.7.1
    4) jQuery 1.9.1
    The best part is that one kills the other so in the end, browser uses only 1.9.1 and the first 3 are loaded for nothing...
    Go to your includes/templates/e-ssentials/jscript and delete the following files:
    jscript_1.7.1_jquery.js
    jscript_jquery-1.4.2.min.js
    jscript_jquery-1.7.1.min.js

    Next, delete
    jscript_easySlider.js
    from the same directory because it's not being used. I believe you can delete jscript_jquery.cycle.all.min.js as well, but I'm not sure if it's being used somewhere else on your site...

    Next, check inside includes/modules/pages/index/ and see if you have any .js files that would be loading anything related to slides and delete that.

    And finally, you'll need to locate this piece of code:
    Code:
    <script type="text/javascript">
    		$(document).ready(function(){   
    				$("#slider").easySlider({
    						auto: true, 
    						continuous: true,
    						numeric: true,
    						firstShow : true,
    						lastShow : true,
    						controlsShow: true,
    						speed: 800,
    						pause: 4000
    				});
    	   });     
    </script>
    
    			<div id="slider">
                    <ul>        
    				                </ul>
    			</div>
    somewhere in your site (perhaps includes/templates/e-ssentials/common/tpl_header.php) and delete that code.

    Once you remove all that conflicting code, ZX Slideshow will work.

    Regards,
    Leonard

    hey i did everything you said
    but that bit of code that you said would be in the tpl_header isnt in there

  5. #525
    Join Date
    Jan 2014
    Location
    Maui, Bohol, Philippines, Philippines
    Posts
    26
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    i deleted that strip from the deine_mainpage in the html inscludes

    on my main page it shows only the next and prev buttons but barley still images dont pop up

    www.jdmengineworld.com

  6. #526
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,617
    Plugin Contributions
    19

    Default Re: ZX Slideshow official thread

    You still have this piece of code that's showing up when I view your site's source code:
    Code:
    <script type="text/javascript">
    		$(document).ready(function(){   
    				$("#slider").easySlider({
    						auto: true, 
    						continuous: true,
    						numeric: true,
    						firstShow : true,
    						lastShow : true,
    						controlsShow: true,
    						speed: 800,
    						pause: 4000
    				});
    	   });     
    </script>
    
    			<div id="slider">
                    <ul>        
    				                </ul>
    			</div>
    That's causing a conflict and needs to be removed. If you're not sure where that code is located, you can try using the Developers Tool Kit (under admin->Tools). I recommend searching for just a part of the block, for example
    Code:
    $("#slider").easySlider(
    Regards,
    Leonard

  7. #527
    Join Date
    Jan 2014
    Location
    Maui, Bohol, Philippines, Philippines
    Posts
    26
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by balihr View Post
    You still have this piece of code that's showing up when I view your site's source code:
    Code:
    <script type="text/javascript">
    		$(document).ready(function(){   
    				$("#slider").easySlider({
    						auto: true, 
    						continuous: true,
    						numeric: true,
    						firstShow : true,
    						lastShow : true,
    						controlsShow: true,
    						speed: 800,
    						pause: 4000
    				});
    	   });     
    </script>
    
    			<div id="slider">
                    <ul>        
    				                </ul>
    			</div>
    That's causing a conflict and needs to be removed. If you're not sure where that code is located, you can try using the Developers Tool Kit (under admin->Tools). I recommend searching for just a part of the block, for example
    Code:
    $("#slider").easySlider(
    Regards,
    Leonard


    i deleted that code
    but had no luck before you sent me this reply then i deleted zx_slideshow i still plan on tryng to get it to work
    was just going through my ftp to delete any slideshow files
    i had a slide show that came with my template and what it was doing was in the tool panel it put two slideshow tabs and i started to get stacked images instead of a slide show and when i delete all the files for that slide show that came with my template then run the uninstall sql i get a failed message


    but i took your advice and searched in the the developers tool kit and this is what i got after this step where do i take it from here ?Click image for larger version. 

Name:	easy slider pic.jpg 
Views:	77 
Size:	23.8 KB 
ID:	13723

  8. #528
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,617
    Plugin Contributions
    19

    Default Re: ZX Slideshow official thread

    Notice how the DTK tells you the exact path where to look...

    It seems that you didn't delete /includes/modules/pages/index/jscript_easySlider.js - you have to delete that.

    Also, go to /includes/templates/e-ssentials/common/tpl_main_page.php and find that slider code there and delete it. I thought it was in tpl_header.php, but turns out it was in tpl_main_page.php... You never know where the template's author decides to put his/her code...

  9. #529
    Join Date
    Jan 2014
    Location
    Maui, Bohol, Philippines, Philippines
    Posts
    26
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by balihr View Post
    Notice how the DTK tells you the exact path where to look...

    It seems that you didn't delete /includes/modules/pages/index/jscript_easySlider.js - you have to delete that.

    Also, go to /includes/templates/e-ssentials/common/tpl_main_page.php and find that slider code there and delete it. I thought it was in tpl_header.php, but turns out it was in tpl_main_page.php... You never know where the template's author decides to put his/her code...

    thanks alot for all your help it works now thank you for being very descriptive

  10. #530
    Join Date
    Mar 2010
    Location
    Bonners Ferry, Idaho
    Posts
    69
    Plugin Contributions
    1

    Default Re: ZX Slideshow official thread

    Hello, how would I go about placing this on my contact-us page?

    Can I just copy the code from the tpl_index_default.php
    Code:
    <!-- begin edit for ZX Slideshow -->
    <?php if(ZX_SLIDESHOW_STATUS == 'true') { ?>
    	<?php require($template->get_template_dir('zx_slideshow.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/zx_slideshow.php'); ?>
    <?php } ?>    
    <!-- end edit for ZX Slideshow -->
    And then rename the CSS page contact-us.css

    ??

    Or is it more complicated then that?

    Thank you!
    Jacob

 

 
Page 53 of 77 FirstFirst ... 343515253545563 ... LastLast

Similar Threads

  1. EasyPopulate 4.0 Support Thread
    By chadderuski in forum Addon Admin Tools
    Replies: 3667
    Last Post: 21 May 2025, 09:55 AM
  2. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 20
    Last Post: 23 Apr 2025, 08:49 AM
  3. goMobile Support Thread
    By steveyork136 in forum Addon Templates
    Replies: 29
    Last Post: 26 Aug 2015, 11:56 AM
  4. Frontpage Slideshow [support thread]
    By sport_billy in forum All Other Contributions/Addons
    Replies: 108
    Last Post: 10 Jul 2014, 12:41 PM
  5. SnapShot [support thread]
    By skipwater in forum All Other Contributions/Addons
    Replies: 32
    Last Post: 26 Oct 2012, 08:38 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR