perltechs
Forum Replies Created
-
Forum: Plugins
In reply to: [RSS Feed Retriever] Configure Date settingsA nice addition to the embed code could be something like:
date=”true” time=”false”This would be a simple option modifier around line 273!
return date_i18n(get_option('date_format') .' - ' . get_option('time_format'), strtotime($date->format('Y-m-d H:i:s')));
Cheers.
Five Star plugin! Easy to modify for your own use.Forum: Plugins
In reply to: [RSS Feed Retriever] OrderbyI had the same problem.
FYI, I figured out what is going on here, the plugin is using the feed functions of wordpress, and apparently the sort by date is default behavior, even if not specified.
if ( !is_wp_error( $rss ) ) { if ($orderby == 'date' || $orderby == 'date_reverse') { $rss->enable_order_by_date(false); }
This is a hack, but it works. Line 61, $rss->enable_order_by_date(false), instead of true. The next update for the plugin should specify:
$rss->enable_order_by_date(false)
before it gets into the logic of setting it to true. This way, the output matches the rss.xml feed as displayed, instead of using the original post date.
Where I specifically had a problem was where a feed item was originally dated in March, but updated last month with new info and was now at the top of the rss feed (the publish date remained as March).
Once I changed the true to false, my local feed matched the remote feed perfectly.
Recommended future plugin code change:
$rss = fetch_feed( $urls ); $rss->enable_order_by_date(false); #<--set default behavior. remove_filter( 'wp_feed_cache_transient_lifetime', 'wp_rss_retriever_cache' ); if ( !is_wp_error( $rss ) ) { if ($orderby == 'date' || $orderby == 'date_reverse') { $rss->enable_order_by_date(true); }
Great plugin, five stars!!!
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Category not selectingFixed! I had selected stop ppl from posting in top level categories!
Plug-in works! The world is awesome!Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Category not selectingStarted over. Deleted all listings. Added a new listing. Still won’t let me select a specific category. I’m going to look in settings to see if there’s something I missed.
Thank You.Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Registration/subscriber management.Ignore this post/request as I’ve deleted the swm plug-in and using a different one. Solved.
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] ADMIN not allowedlooking at other avenues atm. Mark this solved.
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Add New ListingIn mine it shows up as of now. That was quick!
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Code errors after upgrading to PHP 7.2This is the #1 problem I’ve had with php since it was produced so many years ago. Function Bloat=Deprecated functions! It’s never a problem with the programmers that code in php, but php.org itself.
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] User menuI used a plug-in to eliminate the extra pages in the menu. This is really a wordpress and theme problem that wp needs to include in the core. Btw, the plugin I used is ‘Exclude Pages From Menu’.
Works great.Thanks man, If the plugin would save the post text data from the original post, it would be great if the recaptcha is not checked.
I got stories that are in the thousands of characters typed. And losing a complete post (for missing the recaptcha) for an old 70yo guy that’s got thousands of hours doing his job to simply miss this one single check-box, is horrifying.
That one thing would kill a website’s reputation. Thank you for your work Jeff.
Doug.- This reply was modified 6 years, 2 months ago by perltechs.
If you’re saying the plugin saves the text data upon submit (without recaptcha success), it does not. This is a deal killer. Most of my clients could miss this based on age and internet competency.
I’m trying man… I’d really rather not have to go to that other place, jeez, too many plugins out there. Along with so much work to get the right one. Yours does everything I need, except save the post text on forgetting to check the captcha thing. << Fix that, and you’ve got a winner.
It’s almost like having a free preview thingy, without dealing with security issues.- This reply was modified 6 years, 2 months ago by perltechs.
I dunno. The submit button is active even with recaptcha v2 not checked. I just did another submission without it checked, and indeed, the post text field is blank after the error. Been doing this for over 20 years so I’m not a noob.
The only other plugins on the site are simple ssl, and modula gallery. Newspaper Lite theme. It’s a new domain with latest wp.
here’s the site: https://bit.ly/2V7SXqE
Forum: Reviews
In reply to: [Gutenberg] Give me back the old editor!Don’t know what’s going on, but after using this new editor a few times, it always said “UPDATE FAILED”. I installed the old editor via the plug in and it works. This is crazy.