Forum Replies Created

Viewing 15 posts - 1 through 15 (of 1,963 total)
  • Author
    Posts
  • in reply to: fatal error

    Hi Jorge,

    I guess you have the free version of announcer plugin activated. Can you please deactivate that before activating the PRO plugin?

    Installation

    Thanks,
    Aakash

    in reply to: Change from ‘nofollow’ to ‘rel=me’

    Hi zanchit,

    Glad you were able to fix the issue. If you have any wordpress cache plugins, then it may cache the pages. So the change might not reflect.

    But I’m sure the change will work.
    Please view-source of the page later and see if the attribute is changed. If it had changed, then other sites will recognize the same.

    Thanks,
    Aakash

    in reply to: Change from ‘nofollow’ to ‘rel=me’

    Hi zanchit,

    Thanks for using WP Socializer plugin. I agree the suggestion you made is valid.

    Right now the change can be made onyl by editing the code. I’ll include the change in the next version of the plugin.

    For now, can you please make the change below?
    1) In wordpress admin, go to Plugins -> plugin editor
    2) select wp socializer -> core/templates/follow-icons.php file.
    3) In line number 88, change nofollow to me
    4) Save the file.

    Thanks,
    Aakash

    Hi Manish,

    Thanks for using Super RSS Reader – PRO.

    The thumbnail image is taken from the RSS feed. Recently Google news stopped putting thumbnails in the RSS feed. Hence the reader is not able to display the image.

    Currently, there is no workaround and I’m still searching for a solution.

    Please note that this is only with Google news RSS feed. Other RSS feeds will display thumbnail if it contains.

    I’ll update if there is any update, but meantime I would suggest disabling thumbnail or use other RSS feed which has thumbnails.

    Thanks,
    Aakash

    in reply to: Shortcode for showing view

    Hi Said,

    We can use the count parameter to set the number of items.

    Please use the shortcode below.

    [srr_feed urls="https://www.eyefootball.com/rss_news_main.xml,https://www.football-news-views.co.uk/football-news-viewsrss.xml" color_style="card" show_author=1 show_date=1 display_type=grid template="%%thumbnail%% %%title%% %%description%% %%metadata%%" grid_columns=3 show_author=0 thumbnail_position=cover thumbnail_size="128px" count="6"]

    Note that I have used count="6" you can change the count as needed.

    Thanks,
    Aakash

    in reply to: Shortcode for showing view

    Hi Said,

    Sorry for the late reply. Please find the updated shortcode using your existing shortcode you have shared.

    [srr_feed urls="https://www.eyefootball.com/rss_news_main.xml,https://www.football-news-views.co.uk/football-news-viewsrss.xml" color_style="card" show_author=1 show_date=1 display_type=grid template="%%thumbnail%% %%title%% %%description%% %%metadata%%" grid_columns=3 show_author=0 thumbnail_position=cover thumbnail_size="128px"]

    Thanks,
    Aakash

    in reply to: Shortcode with blocks or sections?

    Hi,

    Thanks for using Shortcoder plugin.

    Yes it is possible in the PRO version of the plugin.

    Shortcoder

    It has a feature where we can create a shortcode using block editor or 3rd party visual editor.
    Hope this helps.

    Thanks,
    Aakash

    in reply to: problem with dates into rss feed

    Hi Jacques,

    The time in the RSS feed is in UTC timezone (8 December 2024, 11:00 pm UTC)

    This is printed as per your website timezone (CET) which is 9th december.

    Thanks,
    Aakash

    in reply to: Can we add a function pagination when upgrading to pro?

    Hi Tovin,

    Could you please share more details on this requirement?

    Thanks
    Aakash

    in reply to: Annoucer slide from right to left animation

    Hi David,

    No worries. I work on a different timezone here. I’ll check the details you have shared and get back to you asap.

    Thanks,
    Aakash

    in reply to: Annoucer slide from right to left animation

    Hi David,

    Please try the following. I have modified the code you have shared as per your requirement.

    1) In announcer settings, switch to “text” tab.
    2) Paste the code below.

    <div class="sliderWrap">
    <div class="slider">
        <div class='slide first-slide'>This is slide 1</div>
        <div class='slide second-slide'>This is slide 2 for testing</div>
        <div class='slide third-slide'>This is slide 3 for tests</div>
    </div>
    </div>

    3) Go to your theme settings page and paste below CSS

    .sliderWrap {
      --width: 900px;
      width: var(--width);
      overflow: hidden;
    }
    
    .slider {
      --animation-duration: 12s;
      width: calc(var(--width)*3);
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-evenly;
    }
    
    .slide {
      width: var(--width);
    }
    
    .slider .first-slide {
      --visible: 0;
      --hidden: 100%;
      animation: var(--animation-duration) slide-right-animation ease-in-out infinite;
    }
    
    .slider .second-slide {
      --visible: -100%;
      --hidden: 100%;
      animation: var(--animation-duration) slide-right-animation 4s ease-in-out infinite;
    }
    
    .slider .third-slide {
      --visible: -200%;
      --hidden: 200%;
      animation: var(--animation-duration) slide-right-animation 8s ease-in-out infinite;
    }
    
    /* The slide right effect */
    @keyframes slide-right-animation {
      0% {
        transform: translateX(var(--hidden));
        opacity: 0;
      }
      6.66%, 26.64% {
        transform: translateX(var(--visible));
        opacity: 1;
      }
      33.30%, 100% {
        transform: translateX(var(--hidden));
        opacity: 0;
      }
    }

    Change the slide text in #2 as per your needs

    Change the slider width in #3 from 900px as required.

    Note: The code you shared supports only 3 slides. For more slides extra CSS must be added. You can follow the code and duplicate the .slider .third-slide CSS for more.

    Hope this helps.

    Thanks,
    Aakash

    in reply to: Annoucer slide from right to left animation

    Hi David,

    Announcer supports slider and has specific logic for top to bottom only. It does not support left to right. It is because screens are usually wider and announcement messages can be in multiple lines. The animation from left to right was weird and not very appealling.

    Thanks,
    Aakash

    in reply to: All in one web searcher | more than 16 icons

    Hi Giovanni,

    Thanks for confirming! Yes, for now I can’t think of any workaround except using sub search engines so that the main tabs get some space.

    Thanks,
    Aakash

    in reply to: Feature Request

    Hi Ankit,

    Shortcoder PRO already has this feature. Can you please check if that helps?

    Thanks,
    Aakash

    in reply to: All in one web searcher | more than 16 icons

    Hi Giovanni,

    Thanks for using AIOWS extension. I understand your issue, but the extension does not support increasing the popup width.

    I’ll see how to handle this situation in the future versions of the extension.

    For now, can you please include the additional “search engines” as “sub search engines”? So that the organization is more compact?

    Thanks,
    Aakash

Viewing 15 posts - 1 through 15 (of 1,963 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