jfantasybooks
Forum Replies Created
-
Hi.
http://whatismyipaddress.com/ip/54.237.37.226
http://whatismyipaddress.com/ip/54.146.92.176
http://whatismyipaddress.com/ip/54.227.80.230Looking them up, they seem to be all from Amazon AWS.
I think I know where they are from. Would a tracking code by an amazon company leave such a result?
- This reply was modified 8 years, 5 months ago by jfantasybooks.
Hi. Cloudflare’s IP ranges are listed here: https://www.cloudflare.com/ips/
These IPs are not even close to those.
And yes, refreshing my browser does not work. It’s been like this for a while now.
I’m not sure why, and it’s a bit scary.
When I had made a new Admin account (swapped it), they were gone for a bit, too. But even if I use the old account (which is no longer admin level) and the new one, I only see the new one showing so many different IPs.
Hi there. No. Even for my account it shows dozens of IPs.
Furthermore, I have the forced log out after 60 minutes enabled. But the same 170 or so logged in users as it says remains the same.
Even when I had forced logged out everyone from the site, I looked and it showed that people were still ‘logged in’…so I’m unsure of what’s going on.
- This reply was modified 8 years, 5 months ago by jfantasybooks.
- This reply was modified 8 years, 5 months ago by jfantasybooks.
Hi! Thanks for the quick response.
I do use Cloudflare.
And some users log in using their Social Media Accounts.
Forum: Fixing WordPress
In reply to: Static Front Page Option causes 301 RedirectIt seems like this is something that can’t be avoided.
Thank You.
Forum: Fixing WordPress
In reply to: Shortcode looping/ html tagsI actually figured it out eventually. Thank You for helping, @jonradio
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Viewers per post per authorThanks for doing that, Jeremy.
Forum: Plugins
In reply to: [Comments - wpDiscuz] Some Elements not visible (ex. voting)Oh Thank You! And you had replied so quickly! Had I not browsed WordPress, I would not have known.
You’re awesome.
I sent a message through the channel.
Using my site as a feed can be used as an example to see how you would approach this. It has been set by wordpress (not by wp-aggregator) to only allow syndication of feeds 10 and under in quantity.
https://fantasy-books.live/feed
I have many feed sources, and more coming along in the future.
So I found the problem.
Apparently WordPress allows sites to limit the syndication feeds that they show under [Settings]–> [Reading] > [Syndication feeds show the most recent]. The default is 10. So unless that is changed, WP-rss Aggregator won’t import more than 10 feeds, regardless of the force feed or general settings.
Is there a way around this?
My Feed source Settings are on default. As for my general settings, I have it listed as No Limit.
Doesn’t that mean the Feed Source Settings follow the ‘No limit’ as default means following the general settings? Or do I have it wrong?
If so, What is the Default? Is default 10 items? Must I specify 1000 or so to get all the feed items for all of the sources by hand?
I would think there is a much easier option. I want no limit in importing feed items.
Can you help with this?
- This reply was modified 9 years, 7 months ago by jfantasybooks.
- This reply was modified 9 years, 7 months ago by jfantasybooks.
I sent a ticket, but there was no available option to add screenshot files.
Forum: Fixing WordPress
In reply to: Shortcode looping/ html tagsSo, I had this plugin designed for me, and only now I realized the nested shortcodes are not activated within the <,> tags. The designer won’t help as his ‘job’ is technically done, as it has the requested features.
I see that I already have the do_shortcodes for content…
Something like
function your_initials_shortcode_activate($atts = array(), $content = null)
.. a few if statements …
$cf_content_build = ‘ ‘;
$loop = new WP_Query($args);
while ($loop->have_posts()):
$loop->the_post();// echo do_shortcode($content);
$cf_content_build .= do_shortcode($content);
endwhile;wp_reset_query();
wp_reset_postdata();return $cf_content_build;
Since that’s the case, I am not sure if that’s the problem.
What do you think?
- This reply was modified 9 years, 7 months ago by jfantasybooks.
- This reply was modified 9 years, 7 months ago by jfantasybooks.
Forum: Fixing WordPress
In reply to: Shortcode looping/ html tagsThank You, I will try it.
Forum: Fixing WordPress
In reply to: Shortcode looping/ html tagsHmmm. Thanks for the quick reply.
Can you be a little more specific on how to initialize returning content as a parameter?
so for:
function some_function($atts)
{
$content = get_post_meta(get_the_ID(), ‘some_code’, true);
return $content;
}add_shortcode(‘shortcode 0’, ‘some_function’);
I would do something like this instead?:
function some_function($atts)
{
$content = get_post_meta(get_the_ID(), ‘some_code’, true);
$content = do_shortcodes( $content );
return $content;
}add_shortcode(‘shortcode 0’, ‘some_function’);