whapatron
Forum Replies Created
-
Ok, so I took an older version of the timthumb_cacheLastCleanTime.touch file inside the cache folder and replaced it with the current one. That fixed the problem.
Its strange gn_themes, I tried your solution two weeks ago and it worked. I haven’t touched the website since and tonight I viewed it on another computer and the error was back. file permissions weren’t changed. the cache folder was at 777. Any ideas as to whats happening?
Same problem occurs in Safari. I noticed with similar carousel scripts, the same problem occurs. I think this is a bug for Chrome to work out.
Under further investigation, I realized that I have to be viewing the website at 100%. Previously I was viewing the website at 90%. Once I have changed the view size the damage is irreversible unless I change the view to 100% and refresh the page. I also had a “margin-left” css value that was shifting the li elements over 30px.
Thanks for the reply, I came across this method just now on how to use multiple jquery libaries on the same page.
https://web.enavu.com/daily-tip/using-multiple-versions-of-jquery-on-the-same-page/I’m going to try it out either today or tomorrow. I’m not sure if this would solve all my problems though. I’ll keep you posted.
Fixed it but I have a new concern for whenever I want to replace the [….] from excerpts in the future.
In functions.php I had to remove these lines:
add_filter('excerpt_more', 'new_excerpt_more'); // custom excerpt ellipses for 2.9+ function custom_excerpt_more($more) { return 'Read More »'; } add_filter('excerpt_more', 'custom_excerpt_more'); // no more jumping for read more link function no_more_jumping($post) { return '<a href="'.get_permalink($post->ID).'" class="read-more">'.' Continue Reading »'.'</a>'; } add_filter('excerpt_more', 'no_more_jumping');