• Resolved R Bunicich

    (@bunic000)


    Hello,
    On my website (www.ste-ameland.nl) I did a few months ago the logo slider placed. At first I could show one logo at a time,but after my update I can show only three logos at a time, I would like to show one logo at a time……….. how do I do that?

    Sincerely,
    Richard

    https://wordpress.org/plugins/logo-slider/

Viewing 7 replies - 1 through 7 (of 7 total)
  • I have the same problem… any solution?

    Is there any solution to this? No response so far.

    I’m having the same problem here: http://www.4atc.com/clients/ and need to have it fixed ASAP. Thank you.

    Ok… so I had to go to a back up and reinstall the last version to get this corrected.

    But now I don’t have the much appreciated drag and drop feature.

    Any thoughts on when this will be corrected? I want to go back to the upgrade for that drag and drop feature but I have to show one logo at a time.

    A response to this string would be greatly appreciated.

    Hi,

    I have similar problem. I want to show only 2logos. I have a solution, whcih works for 1, 2 or what number of logos you want.

    1) Edit file: logo-slider/logo-slider.php (via FTP or in WordPress via Edit link)
    In this file find this code (it is in middle):

    <select name="wp_logo_slider_settings[num_img]">
            	<option value="3" <?php echo ($options['num_img'] == '3' ? 'selected="selected"' : '') ?>><?php _e('3','lgs') ?></option>
            	<option value="4" <?php echo ($options['num_img'] == '4' ? 'selected="selected"' : '') ?>><?php _e('4','lgs') ?></option>
            	<option value="5" <?php echo ($options['num_img'] == '5' ? 'selected="selected"' : '') ?>><?php _e('5','lgs') ?></option>
            	<option value="6" <?php echo ($options['num_img'] == '6' ? 'selected="selected"' : '') ?>><?php _e('6','lgs') ?></option>
            	<option value="7" <?php echo ($options['num_img'] == '7' ? 'selected="selected"' : '') ?>><?php _e('7','lgs') ?></option>
            	<option value="8" <?php echo ($options['num_img'] == '8' ? 'selected="selected"' : '') ?>><?php _e('8','lgs') ?></option>
            </select>

    And as you can see, there are listed all number options. So if you want add 1 logo option just insert this:
    <option value="1" <?php echo ($options['num_img'] == '1' ? 'selected="selected"' : '') ?>><?php _e('1','lgs') ?></option>
    under:
    <select name="wp_logo_slider_settings[num_img]">

    2) Go to plugin settings and change number of logos to 1! 🙂

    The final code will look like this:

    <select name="wp_logo_slider_settings[num_img]">
            	<option value="1" <?php echo ($options['num_img'] == '1' ? 'selected="selected"' : '') ?>><?php _e('1','lgs') ?></option>
            	<option value="3" <?php echo ($options['num_img'] == '3' ? 'selected="selected"' : '') ?>><?php _e('3','lgs') ?></option>
            	<option value="4" <?php echo ($options['num_img'] == '4' ? 'selected="selected"' : '') ?>><?php _e('4','lgs') ?></option>
            	<option value="5" <?php echo ($options['num_img'] == '5' ? 'selected="selected"' : '') ?>><?php _e('5','lgs') ?></option>
            	<option value="6" <?php echo ($options['num_img'] == '6' ? 'selected="selected"' : '') ?>><?php _e('6','lgs') ?></option>
            	<option value="7" <?php echo ($options['num_img'] == '7' ? 'selected="selected"' : '') ?>><?php _e('7','lgs') ?></option>
            	<option value="8" <?php echo ($options['num_img'] == '8' ? 'selected="selected"' : '') ?>><?php _e('8','lgs') ?></option>
            </select>

    ugh… I hate messing with code. Seems like the plugin should have 1 as default.

    Thank you for this, usrbowe!

    I went in through filezilla and couldn’t find that file.

    Think I will take a deep breath before going at this again.

    You have your lucky day! 😀

    Here is edited file (logo-slider.php), just upload to this folder:
    /wp-content/plugins/logo-slider/(rewrite existing)
    DOWNLOAD LINK::
    http://www.filedropper.com/logo-slider

    Plugin Author Maeve Lander

    (@enigmaweb)

    Hey Guys, I’ve released an update – 1.4.2 has the options added for 1 or 2 slides (so 3 is no longer the lowest option).

    When I saw this post last week I had a vague memory of there being a good reason why I didn’t do it to start with…. but for the life of me I can’t remember what it was! And after implementing and testing I can’t find any problems, so I’ve gone ahead and added it. But please do let me know if there are any issues that crop up with this.

    @ursbowe
    Thank you for helping with this issue 🙂 Much appreciated.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘how to show one logo’ is closed to new replies.