Bundy21
Forum Replies Created
-
Forum: Plugins
In reply to: [Testimonials Widget] Quotes not rotatingOk, I’ll have a developer look into it. Thank you so much for your help!
Forum: Plugins
In reply to: [Testimonials Widget] Quotes not rotatingUpdate:
That widget glitch only shows when logged out now.
Firefox not reading CSS width(short quotes don’t hold 90% width, see ‘testing’ -Satan), Chrome/Safari fine.Forum: Plugins
In reply to: [Testimonials Widget] Quotes not rotatingSent child and theme CSSs via http://aihr.us/contact-aihrus/? re: breakpoints.
The problem with setting pixel width is it stays fixed for mobile/smaller screens. So everything is responsive except that widget.Forum: Plugins
In reply to: [Testimonials Widget] Quotes not rotatingWhat do you mean by breakpoints?
Forum: Plugins
In reply to: [Testimonials Widget] Quotes not rotatingThis widget is driving me nuts, now it wonβt stay the same length if the quote is short.
Hereβs the CSS I have for it, was staying the same length earlier. No idea why it isnβt now, donβt believe anything changed.
#testimonials_widget-2
{
overflow: auto;
min-width: 90%;
max-width: 90%;
width: 90%;
height: 100px;
margin-left:auto;
margin-right:auto;
font-size:16px;
font-style:oblique;
font-weight:bold;
}Forum: Plugins
In reply to: [Testimonials Widget] Quotes not rotatingCleared all browsers and turned of wp super cache a while ago, glitch still there.
Forum: Plugins
In reply to: [Testimonials Widget] Quotes not rotatingYa, that was from another theme update, fixed it.
Looks like rotation is there! Thanks so much for your help.
One small thing that is bugging me…whenever you load the site, the testimonials element starts super small and pushes up another widget, but then starts rotating normally. Looks really ugly.
Do you see that? Any ideas why in the world it started doing that?
Again, thanks so bunch buddy.Forum: Plugins
In reply to: [Testimonials Widget] Quotes not rotatingwell, after a couple updates we now have rotation…..only when NOT logged in.
sn: testuser
pw: test12345Sigh, got so excited there for a minute π
Forum: Plugins
In reply to: [Testimonials Widget] Quotes not rotatingdone and done
sent you my child-theme tooForum: Plugins
In reply to: [Testimonials Widget] Quotes not rotatingStill doesn’t rotate with all other plugins disabled.
I don’t know enough about jQuery to suggest a fix.
Sigh, thanks for sticking with this. If you have any other suggestions I’m all ears πForum: Plugins
In reply to: [Testimonials Widget] Quotes not rotatingOops, I meant I put everything back to where it was before and it was ready for you to take a crack at debugging. Sorry about that.
I wish I had fixed it πForum: Plugins
In reply to: [Testimonials Widget] Quotes not rotatingOk, everything is back to normal.
Thanks again so much for your help.Forum: Plugins
In reply to: [Testimonials Widget] Quotes not rotatingOk this is really weird. I fixed my css additions so they aren’t being affected by jquery.
But with that code commented out…mobile ios css is different(the menu is setup different). Plus I can’t seem to see it rotating except on mobile platforms. Cleared local cache on three browsers, not rotating on any of them. Has to be something local, but no idea what.Forum: Plugins
In reply to: [Testimonials Widget] Quotes not rotatingHappy to, Google Libraries is gone.
I’d like to find a solution to getting quotes rotating that doesn’t affect other things and is in a child theme.
When i simply comment out that block of code, I get rotation, but CSS gets all screwy.
Theme actually just updated, this is the new code for its jquery call:
if (!is_admin())
add_action(‘wp_enqueue_scripts’, ‘responsive_js’);if (!function_exists(‘responsive_js’)) {
function responsive_js() {
// JS at the bottom for fast page loading.
// except for Modernizr which enables HTML5 elements & feature detects.
wp_enqueue_script(‘modernizr’, get_template_directory_uri() . ‘/js/responsive-modernizr.js’, array(‘jquery’), ‘2.6.1’, false);
wp_enqueue_script(‘responsive-scripts’, get_template_directory_uri() . ‘/js/responsive-scripts.js’, array(‘jquery’), ‘1.2.2’, true);
wp_enqueue_script(‘responsive-plugins’, get_template_directory_uri() . ‘/js/responsive-plugins.js’, array(‘jquery’), ‘1.2.2’, true);
}}
Forum: Plugins
In reply to: [Testimonials Widget] Quotes not rotatingGood question π
I was trying to figure out how to disable the theme’s jquery call in child theme, that was the only thing I could think of(clearly new to this).
Any suggestions on how to only cancel the theme’s jquery?
I took out that line, have ‘Use Google Libraries’ plugin active and stil no rotation.
Thanks again for your help!