Feedzy is not working -Endlesly loading
-
Hello,
I have the free version of Feedzy. I have installed it as it is shown in the videos.HOweve,I am experiencing problems.
Feed do not show up
You see an endless notice of “loading”Pleae help me fix this issue
Thank you very much in advance
Liliana
The page I need help with: [log in to see the link]
-
Hello @aflorarte,
Thank you for using Feedzy and for reaching out!
I took a look at your website and it seems that the feed is loading properly on your website.
Are you still encountering issues?
If yes can you please provide some screenshots or screencast to evidentiate what is exactly happening and how?
Thank you and we’ll wait for your answer!
Hello and thank you for your reply.
Certainly, you can view the issue at https://recorreba.com/datos-utiles/noticiero/
It endlessly loads and retrieves no resultI have uploaded a screenshot for your convenience. please view it at
https://recorreba.com/CAPTURA-PANTALLAS/feedzy.jpgI have refreshed my browsers several times and that error still shows up. Also in my mobile.
I have already activated recent update and the issue persists. I really hope you can help me fix it as I like Feedzy very much
Thank you again and regards
Liliana
Hello @aflorarte,
This issue might be occurring due to a plugin conflict. So please deactivate all plugins and check if it resolves your issue and after that try activating the plugins one by one to find problematic plugin. Then replace it with an alternate plugin.
To do it safely without losing any of your work, please take the following steps:
Install and activate the Health Check plugin.
Enable the TroubleShoot mode.
Enable the Feedzy PRO plugin and open the page.Does it resolve the issue? If yes, then there is some plugin conflict or configuration error that you can check by enabling theme/plugins one by one in the troubleshooting mode.
If not, post us back by keeping the Health Check plugin active. We will also need admin access to troubleshoot further.
Health Check allows troubleshooting without losing the current setup. The changes are done only temporarily until you turn off the troubleshoot mode. However, it is recommended to keep a backup.You might want to back your website up before doing this; if you don’t already have a backup plugin, then you can use this one: https://www.ads-software.com/plugins/updraftplus/.
Since it’s a new plugin, it most likely won’t cause any additional issues.
Let us know if this solved your issue.
Hello Mat and thank you so much for your comprehensive reply
I will take every step you have just suggested. HOwever, please notice that I have the free version, I don′t have Feedzy Pro.
I will try both Health Check and my hosting provider help and eventually, I will keep you on the current
Thank you again and my best regards
Liliana
Hello @aflorarte,
Awesome! I hope you will manage to find the issue and get back to enjoying your website instead of troubleshooting it!
About the PRO mention, that was indeed my bad but nevertheless the same steps apply.
Thank you and we’ll wait for your findings!
Hello @mateithemeisle ,
What I have done is re-configured Feedzy and and it is now working again! ??
Thank you!
Hi there!
We are glad to hear the issue was fixed and everything works properly now!
Have a nice day!
Hello again, Mat
What I can see in my website is that feeds derive you to the original website (from where the feed is fetched) so, when a visitor clicks on the feed he leaves my website.
Please, notice Feedzy behaviour in https://www.recorreba.com/noticiero/
At the moment, the first feed is “Vuelve la milonga del CCK” , If you click on it you will be derived to the source (https://gratisenbuenosaires.com/2021/11/04/vuelve-la-milonga-del-cck/) HOWEVER, you should be derived to my imported feed which is located at:
Kindly let me know how to configure feedzy so that I can prevent visitors from leaving my website when clicking on a feed.
Thank you very much
Liliana
Hello @aflorarte ,
Thank you for reaching out again!
When you are displaying the feed, not importing it, that is the default behavior of Feedzy. When displaying the feed, the user should be redirected to the original source of the article.
There is no default way of changing this behavior to redirect the user to your post unless you use the Feed to Post feature or custom code.
However, if you still want to display the feed but prevent the users to leave your website once they click on an item, you can make those links “no follow”. I would suggest the shortcode approach for this behavior to work properly. Offering custom code solutions is beyond our support services, however, I will provide below a way of achieving this result although you might need to modify it a little in the future. Please create a backup of your website before committing to any changes.
What you need to do is to first remove the links from the thumbnail and item title. In order to achieve this, you need to download a plugin that allows you to add scripts to specific pages. In my case, I used Orbit Fox. After you activate that plugin, you need to go to Dashboard > Pages and Edit the Page where the feed is displayed. Search for the Header/Footer script section. In my case it appears at the bottom of the page when I’m in the Page Editor view. Once you find the footer script section you need to paste the below code:
<script type="text/javascript"> window.addEventListener('DOMContentLoaded', (event) => { var linkToBeRemoved = document.querySelectorAll('.rss_image a'); for (var i = 0; i < linkToBeRemoved.length; i += 1) { if (linkToBeRemoved[i].firstElementChild.tagName == 'SPAN') { linkToBeRemoved[i].parentNode.insertBefore(linkToBeRemoved[i].firstElementChild, linkToBeRemoved[i]); linkToBeRemoved[i].parentNode.removeChild(linkToBeRemoved[i]); } } var aToBeRemoved = document.querySelectorAll('li.rss_item span.title a'); for (var j = 0; j < aToBeRemoved.length; j += 1) { document.querySelectorAll('li.rss_item span.title')[j].innerHTML = aToBeRemoved[j].textContent; } }); </script>
The next step is to add a “Read More” link that will redirect the user to your posts page. To do this you need to create a site-specific plugin, and add the below code:
function feedzy_readmore( $content, $feedURL ) { $content = str_replace( array( '[a€|]', '[…]', '[…]', '...' ), '<a href="https://conceivepear.tastewp.com/300f0-web-agency-news/ " target="_blank">' . __('Read more', 'yourdomain') . ' →</a>My Testing Name', $content ); return $content; } add_filter( 'feedzy_summary_output', 'feedzy_readmore', 9, 3 );
As you can see, I have used the link to my Posts Page so when a user clicks on the read more text, it will redirect them to my posts page. Where it says “My testing Name” you can replace that sentence with something else that you want to appear next to your Read More text, or you can delete it entirely.
Once the above steps are done, you need to display the feed on your page using a shortcode. Here is an example:
[feedzy-rss feeds="https://it.cryptonews.com/news/feed/" max="6" feed_title="no" target="_blank" refresh="2_hours" title="100" thumb="no" size="50" meta="no" summary="yes" summarylength="200" readmore="yes"]
.This is how the result should look like.https://vertis.d.pr/GrabeI
I will also close this thread and mark it as resolved since the original issue has been solved.
Thank you and good luck with achieving the desired result! I hope my insight will help you!
- The topic ‘Feedzy is not working -Endlesly loading’ is closed to new replies.