Forum Replies Created

Viewing 15 posts - 556 through 570 (of 2,034 total)
  • Author
    Posts
  • in reply to: Not showing on Mobile.
    Aakash
    Keymaster

    Hi Rebecca,

    Thanks for using Announcer.

    I can see the announcement both on desktop and mobile.
    I saw the banner on my mobile.

    Please check if you are looking at a cached page.

    Thanks,
    Aakash

    in reply to: Issue with description showing on PRO widget
    Aakash
    Keymaster

    Hi David,

    This issue is addressed in version 4.7.1.

    Thanks,
    Aakash

    in reply to: Issue with description showing on PRO widget
    Aakash
    Keymaster

    Hi David,

    Thanks for reporting the issue.
    Can you please make the change below?

    1) Plugin editor -> super-rss-reader-pro\includes\widget-admin.php
    2) At line number 57, change sanitize_textarea_field to wp_kses_post
    3) Save the file.

    The changes should be saved now.
    I’ll release the fix for this issue soon.

    Thanks,
    Aakash

    in reply to: Issue with description showing on PRO widget
    Aakash
    Keymaster

    Hi David,

    Thanks for using Super RSS Reader – PRO.

    This is not expected. I’ll check this issue and update ASAP.

    Thanks,
    Aakash

    in reply to: want to automate the timer daily
    Aakash
    Keymaster

    Hi Shrikrushna,

    I’ve shared the changes required for this via email.
    Please check and let me know.

    Thanks,
    Aakash

    in reply to: want to automate the timer daily
    Aakash
    Keymaster

    Hi Shrikrushna,

    Got it. Let me check the code and see the efforts need to implement this.
    I’ll get back to you tomorrow.

    Thanks,
    Aakash

    in reply to: Shortcode across multisite
    Aakash
    Keymaster

    Hi @balendugo,

    I guess this is the same question as https://wordpress.org/support/topic/shortcodes-across-multisite/

    Unfortunately, shortcodes created using Shortcoder do not work across multiple sites. They work within single only.

    It is due to how the shortcodes are stored and retrieved. I do not think this support will be added anytime soon.

    Shortcoder however supports import/export feature. https://www.aakashweb.com/docs/shortcoder/import-export/
    You can create shortcodes on one site, export and import to other sites easily.
    Hope this is helpful.

    Thanks,
    Aakash

    in reply to: Announcer not showing at the bottom of my site?
    Aakash
    Keymaster

    Hi Toomas,

    I visited your website and the announcement bar is working as expected. Please see the image below.

    View post on imgur.com

    Can you please try in incognito mode or after clearing the browser cache?

    Thanks,
    Aakash

    in reply to: Shortcode to show WooCommerce product description
    Aakash
    Keymaster

    Hi Jason,

    You can use the WordPress information -> “Post excerpt” tag itself.

    As of now the plugin is printing only 100 characters.

    But you can make the change in the code to print full post excerpt.

    In Plugin editor > shortcoder/includes/metadata.php

    Replace this

        public static function excerpt( $length = 250 ){
            
            global $post;
            
            if( !is_object( $post ) ){
                return '';
            }
            
            $excerpt = $post->post_excerpt; // using $post->post_excerpt instead of get_the_excerpt as the_content filter loses shortcode formatting
            
            $excerpt_text = ( empty( $excerpt ) ) ? strip_tags( strip_shortcodes( $post->post_content ) ) : $excerpt;
            return substr( $excerpt_text, 0, $length );
            
        }

    with this

        public static function excerpt( $length = 250 ){
            
            global $post;
            
            if( !is_object( $post ) ){
                return '';
            }
            
            return $post->post_excerpt;
            
        }

    I’ll make the change in the next version to print the full description.

    Thanks,
    Aakash

    in reply to: RSS Feed Has Stopped Working
    Aakash
    Keymaster

    Hi Chris,

    Your server had some trouble fetching the RSS feed.

    Can you please try the suggestions mentioned in the links below?

    1) https://docs.presscustomizr.com/article/326-how-to-fix-a-curl-error-28-connection-timed-out-in-wordpress

    2) https://www.wpbeginner.com/wp-tutorials/how-to-fix-curl-error-28-connection-timed-out-after-x-milliseconds/

    Thanks,
    Aakash

    in reply to: Shortcode to show WooCommerce product description
    Aakash
    Keymaster

    Hi Jason,

    WooCommerce shortcode parameters are not included as a part of the plugin.

    You can paste the code below to include Woocommerce shortcode parameters.
    https://gist.github.com/vaakash/f4891252f698a62bb0dc21d040853e7e

    Note that these shortcode parameters will work only in woocommerce products.

    Thanks,
    Aakash

    in reply to: Safely enable shortcode within ACF field
    Aakash
    Keymaster

    Hi Jason,

    Thanks for using Shortcoder. Happy that you like it.

    Shortcodes are executed in most places by default by WordPress using the function do_shortcode

    But sometimes, certain fields/text of other plugins do not evaluate the shortcode. We must use the same do_shortcode function to do that.

    In your case yes, the code you have used is correct.
    Cheers!

    Thanks,
    Aakash

    in reply to: Kindly Help Me To Solve This Problem!
    Aakash
    Keymaster

    Hi,

    I’m not sure if this is the right forum but I can guess that there is some misconfiguration with the “caching” plugin.

    Maybe caching is very aggressive that the home page is cached for longer and visitors are shown an older page.

    Please check your settings and start a topic on wordpress.org’s plugin support page for more on that.

    Thanks,
    Aakash

    in reply to: Viber & WhatsApp
    Aakash
    Keymaster

    Hi Peter,

    For whatsapp please follow the instruction in the official documentation below.
    https://faq.whatsapp.com/452366545421244?cms_id=452366545421244&published_only=true

    For viber, the link works only when it is accessed on a device where viber app is installed. Please find the format below.

    viber://chat/?number=%2BPHONENUMBERWITHCOUNTRYCODE

    Thanks,
    Aakash

    in reply to: Categories for RSS links?
    Aakash
    Keymaster

    Hi George,

    Super RSS Reader supports “WordPress hooks” using which you can customize the output text.

    Since you want to add custom text to the bottom of the feed description, you can try that. It is written in PHP.

    https://www.aakashweb.com/docs/super-rss-reader/actions-filters/#srr_mod_item_html

    Below is an example for your use case.

        function my_srr_modifier( $html, $feed_url, $feed_item ){
            
            $tag = '';
            if( $feed_url == 'my base ball rss feed url 1' || $feed_url == 'my base ball rss feed url 2' ){
                $tag = 'Baseball';
            }
            
            if( $feed_url == 'my NFL rss feed url 1' || $feed_url == 'my NFL rss feed url 2' ){
                $tag = 'NFL';
            }
            
            $html[ 'after' ] = $html[ 'after' ] . ' <p>' . $tag . '</p>';
            
            return $html;
        }
        
        add_filter( 'srr_mod_item_html', 'my_srr_modifier', 10, 3 );

    Please expand over this example as needed.

    Thanks,
    Aakash

Viewing 15 posts - 556 through 570 (of 2,034 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