Forum Replies Created

Viewing 15 posts - 316 through 330 (of 1,956 total)
  • Author
    Posts
  • in reply to: Location of Thumbnail Images

    Excellent Sean! The plugin looks great on your website!

    in reply to: Location of Thumbnail Images

    Sean,

    Please paste the CSS below in your theme settings. View the page source and ensure the CSS is present on the page.

    .srr-thumb {
        margin-right: 15px !important;
    }
    
    .srr-item-in.srr-clearfix {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    Thanks,
    Aakash

    in reply to: Location of Thumbnail Images

    Hi Sean,

    Sure, this can be done. Can you enable feed title and thumbnail and share the page URL?
    I’ll check and share CSS.

    Thanks,
    Aakash

    in reply to: Shortcode Translation with WPML not working

    Hi Sinota,

    I’m sorry to tell you that, there is no progress in this area 😔 I cannot find APIs from WPML to integrate.

    The current workaround is to create multiple separate shortcode for every language and use it the specific post language.

    Thanks,
    Aakash

    in reply to: script not working in a shortcode

    Hi Alae,

    Can you please share the page URL where the shortcode is inserted?

    Thanks,
    Aakash

    in reply to: link dosn`t work

    Hi Elias,

    Thanks for using Shortcoder.

    When a shortcode is missing the “name” attribute it will print “shortcode is missing name attribute”. I can see the same on your side.

    For somereason I guess the “name” attribute is stripped while saving the post? Please use the “shortcoder” block if you are using block editor.

    Please share a screenshot of the usage if issue persists.

    Thanks,
    Aakash

    in reply to: Feed is showing different results

    Got it ! Thanks for confirming. Marking this as resolved.

    in reply to: Feed is showing different results

    Hi Kevin,

    Are you using the same RSS feed url?

    Can you please confirm that?

    Can you also share the RSS feed url?

    Thanks,
    Aakash

    in reply to: Make the RSS description into the same URL as the title

    Hi Kevin,

    I’ll add this option in the next version.

    For now add below PHP code to your website’s function.php file or using a custom plugin – https://www.aakashweb.com/articles/create-site-specific-wordpress-plugin-custom-code/

    function my_srr_modifier( $html, $feed_url, $feed_item ){
        $url = $feed_item->get_link();
        $html[ 'description' ] = '<a href="' . esc_attr( $url ) . '" target="_blank">' . $html[ 'description' ] . '</a>';
        return $html;
    }
    
    add_filter( 'srr_mod_item_html', 'my_srr_modifier', 10, 3 );

    Thanks,
    Aakash

    in reply to: Make the RSS description into the same URL as the title

    Hi Kevin,

    To make any advanced changes like this, the plugin provides helper functions to play manipulate the output as needed.

    You might need to use PHP code to do that like in the example below.

    Actions and Filters

    If you are comfortable with that, you can use that hook and wrap the description with an “a” tag. Otherwise let me know, I will write that for you. I can share you the code by tomorrow after testing.

    Thanks,
    Aakash

    in reply to: Make the RSS description into the same URL as the title

    Hi Kevin,

    Do you mean, you want to make the feed description as a link so that it is clickable?

    Thanks,
    Aakash

    Hi Marlon,

    It seems you have the widget content with html tag which is not a valid syntax.

     <h2 class="widgettitle">Meu bilhete</h2><html>  <----- HTML tag
    <script type="text/javascript" src="scripts.js"></script>
    
    <style>
     #content aside h2 {
        background: white;
        padding: 10px 20px 10px 20px;
    .
    .
    .
    //#stake-input {
        padding-left: 10px;
        color: black;
    }
    </style>
    
    </html><--- here
    

    Can you please remove that and ensure the code pasted in the widget is valid.

    Thanks,
    Aakash

    in reply to: Please provide me with the download link

    Thanks for confirming. Marking this as resolved.

    in reply to: Please provide me with the download link

    Hi,

    Thanks for purchasing Super RSS Reader PRO.

    Yes, when you click the link in the email a zip file will be downloaded.

    Go ahead and upload it to your WordPress site.

    The email already has the link on how to get started.

    Please follow the link below to get started.

    Installation

    Thanks,
    Aakash

    in reply to: Issues with grid settings in Super RSS

    Hi Michael,

    #1 – I’ll include option in the next version for more than 4 columns. For now please set grid_columns="5" in the shortcode.

    Paste the CSS below n your theme settings page.

    .srr-grid.srr-g-col-5 .srr-item {
        flex-basis: calc(20%);
    }

    #2 – The images are small because, they are picked from the RSS feed. If you own the RSS feed then you can configure it to set URLs of bigger images.

    Otherwise, in the PRO version you can configure to fetch the image directly from the website. To do that, set thumbnail_force="always" in the shortcode.

    Thanks,
    Aakash

Viewing 15 posts - 316 through 330 (of 1,956 total)

Subscribe to our Newsletter

Get updates on the WordPress plugins, tips and tricks to enhance your WordPress experience. No spam. View newsletter

By using this website, you agree to our Terms