Skip Navigation

[Resolved] Images not found and Text

This support ticket is created 5 years, 3 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Karachi (GMT+05:00)

Tagged: 

This topic contains 6 replies, has 2 voices.

Last updated by Waqar 5 years, 3 months ago.

Assisted by: Waqar.

Author
Posts
#1385561

hidden link

Images are not loaded

and I can't find the text to change anywhere in the toolset.

#1385563

$('.flexslider').flexslider({
animation: "slide"
});

is not working!!!!

#1385597

Hi,

Thank you for contacting us and I'd be happy to assist.

In WordPress, the jQuery script library is loaded in a no-conflict safe mode, which means that you'll need to replace all instances of "$" with "jQuery" in your custom scripts.
( ref: hidden link )

You can update your custom jQuery script snippets as follows and they should work:


function processFlexslider()
{
    jQuery('.flexslider').flexslider({
        animation: "slide"
    });
}
 
// load processFlexslider function on page load
jQuery(window).load(function() {
    processFlexslider();
});

jQuery(window).load(function(){
    jQuery("div.flexslider").each(function(index){
      var priceTag = jQuery( this ).find(".image-price-tag");
      var flexViewport = jQuery( this ).find(".flex-viewport");
      
      priceTag.appendTo(flexViewport);
    });
});

I hope this helps.

regards,
Waqar

#1385643

My issue is resolved now. Thank you!

#1385703

if am login in works login off works not same on chrome und firefox

#1385759

hidden link

Uncaught TypeError: $ is not a function
at 53b84e5739cf42ddd874c9f622474e73.js:396

#1385857

Hi,

I've checked your page's source code ( view-source:hidden link ), and I'm still seeing the script using "$".

Screenshot: hidden link

It seems the script in the "loop-item-grid" content template was updated, but it is also getting loaded through the view "predio-search".

Please make sure that all the instances of the custom script have been updated and you don't have to repeat the same script on a page.

After making this change, please clear all involved caches and then check this page again.

regards,
Waqar