Forum Replies Created

Viewing 15 posts - 646 through 660 (of 2,115 total)
  • Author
    Posts
  • 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

    in reply to: Adding lines between items
    Aakash
    Keymaster

    Hi George,

    You can use CSS to customize as you like.
    You can find the list of CSS classes that you can use to customize the reader in the link below.
    https://www.aakashweb.com/docs/super-rss-reader/faq/#q-how-to-make-custom-css-styling-to-the-feed-like-changing-colors-width-etc

    You can add below CSS to add border.
    Please feel free to edit this CSS as per your liking.

    .srr-wrap .srr-item {
        border-bottom: 1px solid;
        padding: 15px 0 10px 0 !important;
    }

    Thanks,
    Aakash

    in reply to: No Widget Found
    Aakash
    Keymaster

    Hi Gary,

    Sorry for the late reply.
    Your query got lost among other topics.

    In case you are interested in the plugin, please do let me know.

    Thanks,
    Aakash

    in reply to: Adding lines between items
    Aakash
    Keymaster

    Hi George,

    Sure, I can help.
    Can you please share the page URL where the RSS reader is present?
    I need to write CSS to add border lines.

    Thanks,
    Aakash

    in reply to: Setting ultimate floating in bottoms sides
    Aakash
    Keymaster

    Hi,

    Please use the below CSS to bring the dropdown forward.

    .wpdreams_asl_results {
        z-index: 9999999 !important;
    }

    The dropdown is an overlay and it is positioned below the search box dynamically.
    This is beyond UFW’s control to change that.

    So please check if the search plugin has an option to position the dropdown above the search box.
    Otherwise, you must position the widget to the top of the page.

    Thanks,
    Aakash

    in reply to: Setting ultimate floating in bottoms sides
    Aakash
    Keymaster

    Hi Edward,

    Sure, let me see how I can help.
    The screenshots are not clear for some reason and ibb.co is not working so I cannot fully see what is being hidden.

    Can you please share your website URL?

    Thanks,
    Aakash

    in reply to: Setting ultimate floating in bottoms sides
    Aakash
    Keymaster

    Hi Edward,

    Since the floating sidebar is positioned in the bottom left corner, it overlaps the content below.
    The sidebar is supposed to float over all the content.

    It is not possible to place it below any content.

    Can you please check if you can position the floating sidebar in the bottom right corner and see if it works for you?

    Thanks,
    Aakash

    in reply to: Ad Block collapses my WP Socializer plugin
    Aakash
    Keymaster

    Hi Riccardo,

    I do not see any issue why adblock enabled.
    Please see image below.

    View post on imgur.com

    Can you please check if there is any caching issue or if the WP Socializer script is loaded correctly?
    You can press ctrl+shift+j in chrome to see if there are any errors in the console.

    PS: you are using “drop” icon style. For this style I would recommend choosing “sharebar style” as enclosed as in mobile version it would look good.

    Thanks,
    Aakash

    in reply to: Ad Block collapses my WP Socializer plugin
    Aakash
    Keymaster

    Hi Riccardo,

    There is no reported issue as such.

    If adblock is disabled, does it work?
    There is no reason for adblock to block wp socializer script. The script should be loaded.

    My guess is there is some “css/js minifying” plugin that failed to minimize wp socializer script.
    Please check this too.

    I’m unable to access the website because it is in maintenance mode.
    Can you please disable and let me know?

    Thanks,
    Aakash

    in reply to: Combine different sources to one feed
    Aakash
    Keymaster

    Hi all,

    This feature will be available in the next version.
    I haven’t started the development yet, but hopefully, I should be able to get it done in a couple of months.

    Thanks,
    Aakash

Viewing 15 posts - 646 through 660 (of 2,115 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