Forum Replies Created

Viewing 15 replies - 1 through 15 (of 15 total)
  • Plugin Author david wolfpaw

    (@wolfpaw)

    Hello, thanks for messaging.

    You are using Flexslider, but it is built into your theme. This is not related to this plugin, which is also using Flexslider but not the same one that you are using.

    Fixing that is unrelated to this plugin, so I’m going to mark this support ticket as resolved.

    The issue that you are having though is unrelated to the slider itself. WordPress creates attachment pages for media, including your slider images. I would look at a tool to disable attachment image pages. Some SEO plugins allow you to disable those pages, by having any URLs redirect to the main page that the images are on.

    I hope that helps!

    Confirming the same issue with my site:

    Fatal error: Declaration of Http\Client\Curl\Client::sendRequest(Psr\Http\Message\RequestInterface $request) must be compatible with Psr\Http\Client\ClientInterface::sendRequest(Psr\Http\Message\RequestInterface $request): Psr\Http\Message\ResponseInterface in /nas/content/staging/david/wp-content/plugins/connector-gravityforms-mailerlite/vendor/php-http/curl-client/src/Client.php on line 111

    • This reply was modified 4 years, 10 months ago by david wolfpaw.
    • This reply was modified 4 years, 10 months ago by david wolfpaw.
    Plugin Author david wolfpaw

    (@wolfpaw)

    Hi @kaquna I pushed an update to the plugin to clean up a few things. Among those changes is a new setting to choose whether you want to display the post excerpt, post content, or neither.

    Plugin Author david wolfpaw

    (@wolfpaw)

    The reason that I wrote it as is was to allow someone to set a custom excerpt length from the widget and just grab the start of the post.

    If you want to have it only display the excerpt, write this:

    $output .= '<p>' . $display->recent_post_flexslider_excerpt( get_the_excerpt(), $excerpt_length ) . '</p>';

    That will pull from the excerpt of the post (assuming a custom excerpt is set), and will still trim it to the length of characters set in $excerpt_length, which is a user-edited field in the widget settings.

    Plugin Author david wolfpaw

    (@wolfpaw)

    Thanks for the suggestion, that’s a good idea. I just incorporated it in v2.2.0 of the plugin.

    Note if you haven’t seen it yet, if there isn’t a featured image (and the new option is not set to true), it’ll look for the first image in the post to use for the slider.

    Plugin Author david wolfpaw

    (@wolfpaw)

    Thanks for the info! I’ve just pushed an update that includes your patch to fix this

    Plugin Author david wolfpaw

    (@wolfpaw)

    Thanks for the offer @marbaque! I realized that I never added translation files, and I cleaned up the code a bit and made it more translatable today. I’d greatly appreciate the translation.

    If you do take the time to translate it, note that I made the URLs translatable too, since the Creative Commons licenses are also in multiple languages at different URLs.

    Plugin Author david wolfpaw

    (@wolfpaw)

    Sorry for the long delay; I didn’t get notified of this question.

    Yes, this does work with custom post types as well. I’ve just updated the plugin JavaScript code as well for higher compatibility.

    Plugin Author david wolfpaw

    (@wolfpaw)

    @butleraj Thanks for catching this! I updated the plugin, and it should be available for download now. I also confirmed that it’d work against WordPress v5.1.0 since that should be out today.

    Plugin Author david wolfpaw

    (@wolfpaw)

    Did you get this sorted out? I pushed an update since this review, and am preparing some minor CSS changes to make it more compatible with other themes. The goal is to get out of the way of style that a theme sets, while letting you make some style changes as needed to better fit your site.

    Plugin Author david wolfpaw

    (@wolfpaw)

    Hey Brian, I made a few updates to the plugin to improve usability. The previous version moved it from images to an icon font, which appears not to have been loaded. Can you update and try it again?

    Plugin Author david wolfpaw

    (@wolfpaw)

    The order of the HTML changed on purpose in the update. There are now two issues that I see:
    1. The icon font for FlexSlider isn’t loading.
    2. The styling has changed.

    If you update your custom styling on the staging site with the following changes, it should get you to where you want to be:
    .flexslider .flexslider-caption – Remove position: relative;, and change the bottom positioning to something smaller as the offset, like bottom: 60px;

    Remove the following styles from the custom styling:

    #slider-wrap a, #slider-wrap .featured-img span {
        padding: 10px;
    }
    #slider-wrap a, #slider-wrap .featured-img span {
        display: block;
    }
    #slider-wrap a, #slider-wrap .featured-img span, .one-column #slider-wrap a, .one-column #slider-wrap .featured-img span {
        padding: 10px;
    }

    You’ll still want to add your border and rounded edges back, but that’ll get you most of the way there.

    Plugin Author david wolfpaw

    (@wolfpaw)

    Were you able to get this sorted? I’m looking at your live site now and it appears to be using version 2, and the styling looks better.

    Plugin Author david wolfpaw

    (@wolfpaw)

    Hi @dneale123 I apologize for the delay in responding.

    I see that you’ve customized the plugin a bit, which looks great on the page that you have it working on, but appears to have a few bugs on the page with issues. For whatever reason a few things being output by the custom css on that page have code errors. as an example, this is on your homepage:

    
    .flexslider .flexslider-caption {
        position: relative;
        bottom: 230px;
        text-align: left;
        padding-left: 30px;
        padding-bottom: 32px;
        max-width: 80%;
        background: rgba(0,0,0,0.3);
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    

    While this is on the test page:

    
    .flexslider .flexslider-caption {
        position: relative;
        bottom: 230px;
        text-align: left;
        padding-left: 30px;
        padding-bottom: 32px;
        max-width: 80{7f624ae056de7b3c58862bbdf3a4ecbc47e5f02f7f46cc84c321efdcc8faf923};
        background: rgba(0,0,0,0.3);
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    

    Without knowing the rest of the makeup of your site I would only be guessing, but a few things, including a built-in WordPress function, esc_sql can cause that type of error on percentage signs: https://make.ww.wp.xz.cn/core/2017/10/31/changed-behaviour-of-esc_sql-in-wordpress-4-8-3/

    While that may not be the full source of issues (it could just be a bug on that staging site), I would ask if you are able to remove the slider widget from the sidebar, update the plugin, put the widget back into place, and re-apply the custom css changes that you made, probably adjusting a few of them for the new layout.

    I apologize for the extra stress this has caused for you. I made this a major update instead of a minor release specifically because some of the underlying markup was changed to better accommodate responsive images of different heights and more flexible positioning of captions of varying sizes.

    • This reply was modified 7 years, 8 months ago by david wolfpaw. Reason: fix code backticks
    Plugin Author david wolfpaw

    (@wolfpaw)

    Hi @kclarksc2 I apologize for the delay in responding.

    Are you using this plugin on your site? I do see you using FlexSlider on your site, but it appears to be a version that is bundled with your theme, not this plugin.

Viewing 15 replies - 1 through 15 (of 15 total)