Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

WP eStore conflict with homepage slider WordPress

  • SOLVED

Hello,
First post! I've had Wp eStore installed on my site for the past two years with no updates. I decided to update the plugin and noticed that the home page slider stopped working. I rolled it back and it started working again.

One thing I noticed is when I add a product to the cart, it stops working again. If I remove the product, the slider reappears. Now, it may have done this before and I never noticed - I don't go shopping on my site - hah.

If I install the updated version, the slider will not work at all. I have emailed support with zero success. I took a look at their forum and see that the mod mentions a jQuery conflict.

A link to my site is below. I'm not sure how much to offer. I don't want to lowball anybody. It's worth 25.00 to me to find a solution. Support may even find a solution but I wanted to test the waters with this site as I think it's great to have a place where you can post work for folks.

Thank you!

http://www.mytwangyguitar.com/

Answers (2)

2013-10-14

isp_charlie answers:

could you give me ftp informations, i think it is jquery issues, i'll able to debug and fix it for you, my email [email protected].


Sam comments:

Thanks for your reply. Perhaps it would be easier/better to install a new slider.


isp_charlie comments:

just find index.php and find where

$(function () {

$('.anythingSlider').anythingSlider({
easing: "easeInOutExpo", // Anything other than "linear" or "swing" requires the easing plugin
autoPlay: true, // This turns off the entire FUNCTIONALY, not just if it starts running or not.
delay: 5900, // How long between slide transitions in AutoPlay mode
startStopped: false, // If autoPlay is on, this can force it to start stopped
animationTime: 900, // How long the slide transition takes
hashTags: true, // Should links change the hashtag in the URL?
buildNavigation: true, // If true, builds and list of anchor links to link to each slide
pauseOnHover: true, // If true, and autoPlay is enabled, the show will pause on hover
startText: "Go", // Start text
stopText: "Stop", // Stop text
navigationFormatter: formatText // Details at the top of the file on this use (advanced use)
});

$("#slide-jump").click(function(){
$('.anythingSlider').anythingSlider(6);
});

});


change to:


jQuery(function ($) {

$('.anythingSlider').anythingSlider({
easing: "easeInOutExpo", // Anything other than "linear" or "swing" requires the easing plugin
autoPlay: true, // This turns off the entire FUNCTIONALY, not just if it starts running or not.
delay: 5900, // How long between slide transitions in AutoPlay mode
startStopped: false, // If autoPlay is on, this can force it to start stopped
animationTime: 900, // How long the slide transition takes
hashTags: true, // Should links change the hashtag in the URL?
buildNavigation: true, // If true, builds and list of anchor links to link to each slide
pauseOnHover: true, // If true, and autoPlay is enabled, the show will pause on hover
startText: "Go", // Start text
stopText: "Stop", // Stop text
navigationFormatter: formatText // Details at the top of the file on this use (advanced use)
});

$("#slide-jump").click(function(){
$('.anythingSlider').anythingSlider(6);
});

});


Sam comments:

This is the index.php file

<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/

/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define('WP_USE_THEMES', true);

/** Loads the WordPress Environment and Template */
require('./wp-blog-header.php');


Sam comments:

This is the wp-blog-header.php file

<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/

if ( !isset($wp_did_header) ) {

$wp_did_header = true;

require_once( dirname(__FILE__) . '/wp-load.php' );

wp();

require_once( ABSPATH . WPINC . '/template-loader.php' );

}


isp_charlie comments:

i mean index.php of theme:
http://www.mytwangyguitar.com/twc/wp-content/themes/Video3/index.php


Sam comments:

This is what is there.