Forum Replies Created

Viewing 15 posts - 241 through 255 (of 2,109 total)
  • Author
    Posts
  • in reply to: No Settings. No Edit. Nothing.
    Aakash
    Keymaster

    Hi Decsites,

    No worries. I can guide you accordingly.

    Please let me know where do you plan to insert the RSS reader?

    1) On the sidebar/footer using “widgets”
    2) Inline to any content using “shortcodes”

    if widgets, you can drag and drop the widget and configure the settings.

    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.

    Feel free to let me know how you would like to proceed, I can help further.

    Thanks,
    Aakash

    in reply to: Shortcoder Custom fields
    Aakash
    Keymaster

    Hi Romeo,

    I would like to understand how you want to use the custom fields which are added to the shortcoder.

    The option of custom fields for posts make sense since while displaying a post, users can include additional metadata to display in that post. I’m not sure if this will work for shortcoder. Could you please share any example usecase?

    Thanks,
    Aakash

    in reply to: Feature repeat schedule duration
    Aakash
    Keymaster

    Hi Athannor,

    Thanks for using Announcer plugin. Happy that you like it.

    I too thought that of that feature. The implementation was expensive as there would be demand for more granular configurations/selections. I’ll add this to my todo list and revist this in the future.

    Meantime, you can use the “custom” display option to launch the announcement bar by writing your own logic in javascript – https://www.aakashweb.com/docs/announcer/js-api/ If you are comfortable with basic scripting you can look for resources and implement the same.

    Thanks,
    Aakash

    Aakash
    Keymaster

    Hi Steven,

    Glad your figured it out. The content users insert their widget is untouched by UFW. So if it can work outside UFW, then it will work with UFW too.

    Thanks,
    Aakash

    in reply to: Help with update webhook setup
    Aakash
    Keymaster

    Hi Kaioliver,

    Sorry for the late reply.

    I hope you have configured the github username and authentication settings as in this link – https://www.aakashweb.com/docs/git-it-write/getting-started/#configuring-authentication-settings

    In Github, can you please go to repository -> settings -> webhooks -> recent delieveries and see if the commit action was posted to your website?

    You can also click to see the full details. Sometimes you would see timeout error which is fine.

    Please let me know more on this further.

    Thanks,
    Aakash

    in reply to: Avada Theme
    Aakash
    Keymaster

    Hi Shasin,

    I Understand. Let me see if there is any option or workaround to enable this.

    Please give me time till Sunday. If there is no solution then I can arrange a refund.

    Thanks,
    Aakash

    in reply to: Avada Theme
    Aakash
    Keymaster

    Hi Shasin,

    I guess you are talking about super RSS Reader plugin.

    Unfortunately, SRR supports only classic widgets in the free version. In the PRO version however we can use shortcodes to insert the RSS reader.

    I’m not sure how to help in this case. Only way is to check with Avada theme author and see if any exception can be made.

    Thanks,
    Aakash

    in reply to: Adding a description paragraph
    Aakash
    Keymaster

    Hi Dan,

    Right now it is not possible to include a “static content” below a “scrolling content”. There were no requirements for it as per my research.

    Now that you have asked, I’ll see if this is really required.

    For now I’ll see if I can give you some workaround.
    Can you please share the page URL where the announcement is active?

    Thanks,
    Aakash

    Aakash
    Keymaster

    Hi there,

    SRR is mostly WP independent. Things like tab are not related to WP. I’m currently planning for a release in this month which I’ll test in the latest WP version.

    You can upgrade the plugin and use if not done already.

    Regarding the tab issue, please share the page URL. I’ll look at it and find the cause of the issue.

    Thanks,
    Aakash

    Aakash
    Keymaster

    Hi Tim,

    I see this is kind of expected. I’ll reduce the default margin in the next version of the plugin so it does not look like bloated.

    For now, can you please add below CSS to your site?

    @media only screen and (max-width: 800px) {
        .ancr-lo-same_row .ancr-btn-wrap{
            margin: 0.25em 0;
        }
    }

    Thanks,
    Aakash

    in reply to: not displaying on search results page
    Aakash
    Keymaster

    Hi Sue,

    I understand the issue. This happens when the theme does not “execute” the shortcode. WordPress will run the shortcode only when a function like do_shortcode is called on the content.

    In this case, I see the “post excerpt” is not checked for shortcodes.

    You will see this behavior for any shortcode.

    Can you please send an email/raise a support ticket with the theme developer and ask them to execute shortcodes?

    If in case, the theme developer does not respond, please share create a temp admin user account and share it’s detail with me in the contact form below. I’ll login to the site and see if I can make any changes to the theme/see if there is any workaround.

    Contact

    Thanks,
    Aakash

    Aakash
    Keymaster

    Hi Tim,

    Thanks for using Announcer. There is no specific height set to the announcement bar in small screens, the items re-align in a new line.

    I’m not sure if there is anything unusual happening on your site.

    Could you please share a screenshot for me to have a look?
    We can also try to reduce the bar height if possible.

    Thanks,
    Aakash

    in reply to: Image in announcer bar only works if it’s square
    Aakash
    Keymaster

    Hi there,

    Could you please share the page link where I can see the issue in the contact form below?

    Contact

    Thanks,
    Aakash

    in reply to: Compatibility with Elementor
    Aakash
    Keymaster

    Hi Stephen,

    Glad to know SRR works great on your site.

    Regarding elementor, SRR plugin is editor independent.
    Based on the theme used, the plugin’s design will vary on spacing, margins etc.

    SRR can be inserted in two ways
    1) WordPress sidebar widget
    2) shortcodes

    Shortcode

    You can use either of these methods to insert the SRR feed.

    Thanks,
    Aakash

    in reply to: Is there any way to
    Aakash
    Keymaster

    Hi Martin,

    Apologize for the delay. I missed this thread. Since this is a custom requirement, I wrote below modification as you requested.

    Can you please paste the PHP below on your site?

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

    You can follow the articles below, if you are new to inserting PHP code on your site.

    1) https://www.aakashweb.com/articles/create-site-specific-wordpress-plugin-custom-code/
    2) https://www.aakashweb.com/articles/best-methods-to-insert-custom-php-code-in-wordpress/

    Thanks,
    Aakash

Viewing 15 posts - 241 through 255 (of 2,109 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