WPIntell

Source evidence

Some edits needed.

Arconix Flexslider · support · 2014-01-29T20:55:00+00:00

mixedsentiment
mediumseverity
0.85relevance
12replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

6 / 23 rows with source links

26.1% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

17 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
pac918 resolved
How can I change the cycle speed of this slider? Is there a way to either have the […] (ellipsis) link to the post or perhaps change it to [Read] and link to the post? http://wordpress.org/plugins/arconix-flexslider/ Hi pac918 Thank you for using my plugin. Inside the includes/js folder in my plugin is a file called flexslider.js . If you copy that to your theme’s folder and rename it to arconix-flexslider.js , my plugin will load that file instead of the plugin file so you can make changes without losing those changes when I upgrade the plugin. In that js file (open it in a text editor) you’ll see the following: jQuery(window).load(function() { jQuery('.flexslider').flexslider( { pauseOnHover: true, controlsContainer: ".flex-container" } ); } ); Add a comma at the end of the controlsContainer line and add properties for slideshowSpeed to control the amount of time between each slide. You can also play with the animationSpeed which controls the length of time the transition between slides takes (it’s more apparent if you change the animation from the default of fade to slide . Please note all times are represented in milliseconds, so 7000 milliseconds is 7 seconds. Example: jQuery(window).load(function() { jQuery('.flexslider').flexslider( { pauseOnHover: true, controlsContainer: ".flex-container", slideshowSpeed: 7000, animationSpeed: 1000, animation: "slide" } ); } ); As to the second part of your question — are you showing the content or the excerpt? Thanks! We’re showing the excerpt. Ok… that’ll be done by filtering the_excerpt() I got the following code snippet from here . Put it in your functions.php file in your theme function new_excerpt_more( $more ) { return ' <a class="read-more" href="'. get_permalink( get_the_ID() ) . '">Read More</a>'; } add_filter( 'excerpt_more', 'new_excerpt_more' ); I think that’ll work. Fantastic and thanks much! I do believe the last item that the client wanted was for the slider to be slightly larger. Is this doable? Yes. You’d have to add the appropriate image size and then refer to it in the slider shortcode or widget. See add_image_size() for adding the desired image size and documentation for how to refer to that image size in the plugin. Well what about just the slider in general? Currently, it doesn’t stretch across the area its in on their page. The image size doesn’t necessarily need to be increased just wanting to make the whole deal wider a bit. p.s. thanks again for the help and quick replies! The default slider size will be to 100% of the available width unless the image size somehow constricts it (for example when you have an image that is taller than it is wide), or if there’s an empty sidebar or if there’s some kind of CSS in place that’s targeting it. There could potentially be other sources, but those are the most obvious off the top of my head. Slide size will work now, that I centered it as a widget-on-page. Thanks for the info. I have another deal and that’s the slider’s post title text seems to have 0px padding between its lines causing what looks to be an overlapping of text. Can this be spaced slightly? Sure, you’d just have to add the relevant CSS… though it might be line height and not padding… I’d have to see it in action, or you can use the developer tools in chrome or firefox to investigate. We are currently getting ready to launch tomorrow at noon so we’re in maintenance mode. You should be able to see it though at http://www.jollybomb.com using this login info using the staff login link; name – support pass – support123 You may be right and it could be line height and not padding. In any case, I haven’t been able to get it right for the team. Site is live now http://www.jollybomb.com and you can see the slider in the middle of the homepage. Titles are a little close. Thanks! It was a line height issue. Add this to your theme’s style.css file: .flex-title { line-height: 1; }

Comments

12 shown
John Gardner 2014-01-30T00:41:00+00:00

Hi pac918 Thank you for using my plugin. Inside the includes/js folder in my plugin is a file called flexslider.js . If you copy that to your theme’s folder and rename it to arconix-flexslider.js , my plugin will load that file instead of the plugin file so you can make changes without losing those changes when I upgrade the plugin. In that js file (open it in a text editor) you’ll see the following: jQuery(window).load(function() { jQuery('.flexslider').flexslider( { pauseOnHover: true, controlsContainer: ".flex-container" } ); } ); Add a comma at the end of the controlsContainer line and add properties for slideshowSpeed to control the amount of time between each slide. You can also play with the animationSpeed which controls the length of time the transition between slides takes (it’s more apparent if you change the animation from the default of fade to slide . Please note all times are represented in milliseconds, so 7000 milliseconds is 7 seconds. Example: jQuery(window).load(function() { jQuery('.flexslider').flexslider( { pauseOnHover: true, controlsContainer: ".flex-container", slideshowSpeed: 7000, animationSpeed: 1000, animation: "slide" } ); } ); As to the second part of your question — are you showing the content or the excerpt?

pac918 2014-01-30T00:43:00+00:00

Thanks! We’re showing the excerpt.

John Gardner 2014-01-30T01:04:00+00:00

Ok… that’ll be done by filtering the_excerpt() I got the following code snippet from here . Put it in your functions.php file in your theme function new_excerpt_more( $more ) { return ' <a class="read-more" href="'. get_permalink( get_the_ID() ) . '">Read More</a>'; } add_filter( 'excerpt_more', 'new_excerpt_more' ); I think that’ll work.

pac918 2014-01-30T02:42:00+00:00

Fantastic and thanks much! I do believe the last item that the client wanted was for the slider to be slightly larger. Is this doable?

John Gardner 2014-01-30T03:07:00+00:00

Yes. You’d have to add the appropriate image size and then refer to it in the slider shortcode or widget. See add_image_size() for adding the desired image size and documentation for how to refer to that image size in the plugin.

pac918 2014-01-30T03:11:00+00:00

Well what about just the slider in general? Currently, it doesn’t stretch across the area its in on their page. The image size doesn’t necessarily need to be increased just wanting to make the whole deal wider a bit. p.s. thanks again for the help and quick replies!

John Gardner 2014-01-30T04:00:00+00:00

The default slider size will be to 100% of the available width unless the image size somehow constricts it (for example when you have an image that is taller than it is wide), or if there’s an empty sidebar or if there’s some kind of CSS in place that’s targeting it. There could potentially be other sources, but those are the most obvious off the top of my head.

pac918 2014-02-01T16:53:00+00:00

Slide size will work now, that I centered it as a widget-on-page. Thanks for the info. I have another deal and that’s the slider’s post title text seems to have 0px padding between its lines causing what looks to be an overlapping of text. Can this be spaced slightly?

John Gardner 2014-02-01T17:10:00+00:00

Sure, you’d just have to add the relevant CSS… though it might be line height and not padding… I’d have to see it in action, or you can use the developer tools in chrome or firefox to investigate.

pac918 2014-02-02T00:36:00+00:00

We are currently getting ready to launch tomorrow at noon so we’re in maintenance mode. You should be able to see it though at http://www.jollybomb.com using this login info using the staff login link; name – support pass – support123 You may be right and it could be line height and not padding. In any case, I haven’t been able to get it right for the team.

pac918 2014-02-03T05:55:00+00:00

Site is live now http://www.jollybomb.com and you can see the slider in the middle of the homepage. Titles are a little close. Thanks!

John Gardner 2014-02-03T14:07:00+00:00

It was a line height issue. Add this to your theme’s style.css file: .flex-title { line-height: 1; }