MKlein Web Design
Forum Replies Created
-
Forum: Plugins
In reply to: [bxSlider integration for WordPress] Highlight active carousel thumbnailSo I actually solved this – for anyone that would also like to highlight the active image in the carousel add this script before the </body> tag
<script> //When clicking on carousel image $('.bxpager a').on('click', 'img', function () { //Remove active class from all other images $('.bxpager a img').removeClass('active'); //Add active class to clicked image only $(this).addClass('active'); }); </script>
Then simply add your own styles to the selector
.bxpager a img.active { /*put your styles here */ }
Forum: Plugins
In reply to: [bxSlider integration for WordPress] Highlight active carousel thumbnailIs there any update on this or can you point me in the right direction?
Forum: Plugins
In reply to: [bxSlider integration for WordPress] Highlight active carousel thumbnailBoth Thumbnail pager methods in the original documentation have the active thumbnail with a different colored border and that’s all I want to do!
https://bxslider.com/examples/thumbnail-pager-1
https://bxslider.com/examples/thumbnail-pager-2This code works until any thumbnail besides the first one is selected:
.bxpager a:hover img, .bxpager a.active img {
border: 3px solid #8CC63F !important;
}https://www.mkleinmedia.com/pandemicdesignstudio/project/iron-curtain/
Forum: Plugins
In reply to: [bxSlider integration for WordPress] Highlight active carousel thumbnailI tried
a.active img{ border: 3px solid #8CC63F;
padding: 5px;
box-sizing: border-box;}But it only works on initial page load. Once another thumbnail is selected the border disappears.
Any help/advice is GREATLY appreciated. Thanks!
Forum: Plugins
In reply to: [Event List] Latest event topI figured this one out!
Here’s how to do it:
Go to the file ‘event-list/includes/sc_event-list.php’
–change line 266 to:
$sort_array = array( ‘start_date DESC’, ‘time ASC’, ‘end_date ASC’ );
–change line 270 to:
$sort_array = array( ‘start_date DESC’, ‘end_date ASC’, ‘time ASC’ );
This worked for me. I hope it helps someone!
Forum: Plugins
In reply to: [Event List] Latest event topI would also like to do this. Any estimate on how soon this feature will be added?
Thanks so much!
Just FYI here’s how to do this:
Find this file (event-organiser-posterboard.php)
It will be in > wp-content >> plugins >>> event-organiser-posterboard
and delete this line:
‘event_start_after’ => ‘today’,
Hope this helps!
Meredith
Forum: Fixing WordPress
In reply to: Malicious Redirect on 404 pagesThanks a lot for the reply,
It seems that a folder located at wp-content/plugins/wpppm contains the redirect and I’m planning on deleting the folder and then installing WordPress 3.5.1 (I have 3.5 installed currently) and then implementing a security plugin maybe https://www.ads-software.com/extend/plugins/bulletproof-security/.
I’m not sure if the above measures are at all enough in this instance. Any thoughts or advice would be GREATLY appreciated.
Thanks again.