Forum Replies Created

Viewing 15 posts - 136 through 150 (of 2,019 total)
  • Author
    Posts
  • in reply to: Thumbnail only for the first item?
    Aakash
    Keymaster

    Hi, Can you please use the CSS below and see if it helps?

    .srr-wrap .srr-thumb {
        display: none;
    }
    .srr-wrap > div > .srr-item:first-child .srr-thumb {
        display: block;
    }
    in reply to: Date format in hours
    Aakash
    Keymaster

    Hi, You can set the data format under content -> “date format” option.
    Refer format codes here – https://wordpress.org/support/article/formatting-date-and-time/

    If using shortcode, use the date_format parameter.
    Complete list of supported parameters here – https://www.aakashweb.com/docs/super-rss-reader/pro/shortcodes/

    in reply to: Video instead of Thumbnail
    Aakash
    Keymaster

    Hi,

    The reader displays images out of the box. Videos are not supported because the source video could be anything and one integration won’t help all users.

    The plugin however supports extensiblity via code.

    By using the hook below, we can customize the output as required, insert custom code etc.

    Actions and Filters

    Let me know if you need ay clarification on this.

    Thanks,
    Aakash

    in reply to: How to change the feed fetch interval?
    Aakash
    Keymaster

    Hi Fox,

    Please find the FAQ below regarding the feed refresh behavior.

    FAQ

    Note that increasing the feed refresh behavior to a very short time can impact page load when RSS feed is big otherwise we should be good.

    You can add the above code using a method like below.

    Best methods to Insert Custom PHP code in WordPress?

    How to Add Custom Code in WordPress with Site-Specific Plugin?

    Thanks,
    Aakash

    in reply to: How to change title font-size depending on theme
    Aakash
    Keymaster

    Hi Fox,

    I’m not sure if inserting CSS is related to SRR plugin itself.
    But there will always be one active theme.

    Also, any CSS you paste in WordPress will work on the active theme.

    I believe below doc will help you in some way.

    How to Edit CSS in WordPress (Edit, Add, and Customize How Your Site Looks)

    Thanks,
    Aakash

    in reply to: Links are disabled under overlay path
    Aakash
    Keymaster

    Hi there,
    Glad you figured it out 🙂

    Thanks,
    Aakash

    in reply to: scrawling bar is too thick
    Aakash
    Keymaster

    Hi there,

    Thanks for using Announcer. The horizontal ticker works that way by default.

    It is not possible to loop the ticker without a empty space.
    This is a challenging implementaion since the plugin needs to consider a variety of conditions, styles, message content etc.

    Except repeating the texts like you have done there is no idea I can suggest for this requirement now. Hope you understand 🙂

    Thanks,
    Aakash

    in reply to: Open in the same window – not working
    Aakash
    Keymaster

    Glad this helped! I’m marking this topic as resolved.

    Aakash
    Keymaster

    Hi Raul,

    Exactly, I was planning to suggest that. Glad that you figured it out.

    Thanks,
    Aakash

    Aakash
    Keymaster

    Hi Raul,

    Thanks for using Shortcoder.

    Social media sites, pull that text from HTML “metadata”.

    When you view the page source, you can see the tag below.

    view-source:https://threeestate.com.br/imoveis/residencia-6213/

    <meta name="twitter:description" content="[sc name=&quot;detalhes_excerpt&quot;][/sc]" />

    This is added by yoast SEO and yoast SEO is NOT executing shortcodes. This is not only for shortcoder, any shortcode you insert in post excerpts it won’t work.

    Solution is to check with Yoast SEO team and see if they can execute shortcodes in “opengraph” meta twitter descriptions or try pasting the code below in functions.php file of your theme.

    https://stackoverflow.com/questions/73485852/wordpress-shortcode-not-rendering-in-yoast-ogtitle

    add_filter( 'wpseo_opengraph_desc', 'do_shortcode' );
    add_filter( 'wpseo_twitter_description', 'do_shortcode' );

    Hope this helps.
    Let me know how it goes.

    Thanks,
    Aakash

    in reply to: Open in the same window – not working
    Aakash
    Keymaster

    Hi Jeffrey,

    Just saw your website. There is some javascript on your site which is opening all links in new tab.

    Please find that code and make changes as required.

    //<![CDATA[
    jQuery(document).ready(function($) {
        $('a').each(function() {
            var a = new RegExp('/' + window.location.host + '/');
            if (!a.test(this.href)) {
                $(this).click(function(event) {
                    var f_class = $(this).attr('class');
                    if (f_class == 'xoo-el-lostpw-tgr' || f_class == 'xoo-el-login-tgr') {
                        return true;
                    } else {
                        event.preventDefault();
                        event.stopPropagation();
                        window.open(this.href, '_blank'); <--- this line is opening in new tab
                    }
                });
            }
        });

    Thanks,
    Aakash

    Aakash
    Keymaster

    Hi Doha,

    Thanks for using UFW plugin. You have a nice website!

    Looking at the screenshot shared, the “widget box” will be shown only on the page with ID 2053.

    I’m not sure why it is not placed. There could be multiple reasons.

    Could you please create a temporary admin account and share it’s username and password with me in the contact form below?

    Contact

    Apologize for the inconvenience.

    Thanks,
    Aakash

    in reply to: shortcodes not expanded in site search for products
    Aakash
    Keymaster

    Hi,

    One way to execute the shortcode is analyze the theme and execute the shortcode where the description is printed.

    Other way would be to look for functions like below.
    https://wordpress.stackexchange.com/questions/367511/adding-shortcode-to-product-short-description

    Can you please paste the code as in the link above in theme functions.php file and see if it works?

    Thanks,
    Aakash

    in reply to: shortcodes not expanded in site search for products
    Aakash
    Keymaster

    Hi pptech,

    Shortcodes are executed by WordPress themes on the specific area as required.

    Looks like the area you have mentioned is not executed for shortcodes.

    This applies to any shortcode.
    Can you please add a different shortcode like [gallery] and see if it executes?

    I tried inserting shortcodes in content in “twenty-twenty” theme and it got executed. The child theme which you developed seems to be missing that.

    Please confirm the same as requested above. I’ll suggest next steps as per that.

    Thanks,
    Aakash

    in reply to: No Settings. No Edit. Nothing.
    Aakash
    Keymaster

    Hi Decsites,

    Super RSS Reader follows the same process like any other widget in WordPress. There is no intention to be cryptic here.

    Widgets have UI to config the settings and shortcodes must be written since they can be inserted anywhere on your website (even in places where UI can’t come in)

    Regarding shortcodes, I already mentioned it in my reply.

    If shortcode, then you must build the shortcode using the example as mentioned in “Settings > super rss reader” page. It is quite simple and intuitive.

    Regarding ” i STILL no way to change the appearance/view eg Grid”

    Can you please share more details on what appearance you want to change? I can help with CSS if required. Also, can you please share your website URL where the reader is inserted.

    Thanks,
    Aakash

Viewing 15 posts - 136 through 150 (of 2,019 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