alexWP333
Forum Replies Created
-
Yes, I’m using the short code.
It sounds like, as a temporary fix, you’re recommending that I check the “Suppress Warning Messages in the Shortcode and Widget”, but that there’s something wrong with the feeds or something else.
I went ahead and checked the “Suppress Warning Messages in the Shortcode and Widget” checkbox, and now the error message does not appear.
My concern, based on what you’re saying, is that there may still be some underlying problem with the feeds.
This is what I get when I go to the Diagnostics and run a check on the feeds:
Cron Schedule:The AutoPost is successfully scheduled for this time period: ten minutes.
The database is successfully scheduled for this time period: thirty minutes.
IMPORTANT: If the period for AutoPost is less than the period for the database, you will not be getting new AutoPost feeds until the database is updated. It is better to have the AutoPost set for a longer interval than than the database.
If there are cron schedules, but things do not seem to be working, read this to learn what is going on.You appear to be running the Feed to Post and chosen to have no text
This is the most likely reason you have no text in your posts. If you want text to show, set that in the Feed to Post admin page.
(but I do have text in my posts)
You appear to be running the Feed to Post and configured the number of feeds incorrectly.
This is the most likely reason you have problems. GO HERE TO SEE HOW TO SET THIS OPTION
When I clicked on “CLICK to CHECK ALL FEEDS NOW” button I get message that reads: “Good News: There were no errors due to feeds not connecting to external servers. Make sure to update the feeds by clicking the green button below.”
Does any of this Diagnostic information help shed some light on what’s wrong?
Thanks.
I’ve now upgraded to version 3.11 of the plugin.
I found the Global Settings area, and experimented with checking/unchecking the SimplePie checkbox.
I’m still receiving an error message on my home page that reads “There is a problem with the feeds you entered. Go to our support page to see how to solve this.”
I’m also noticing that this error message only appears as long as I’m logged into the WP Admin for my site. When I log out of the WP Admin the error message on the Home page disappears.
My client will be using the WP Admin very frequently to update site content, and it would be problematic if an error message (related to the feeds) appeared every time they were logged in.
In your instructions you mentioned the possibility that the server is not accepting the feed, due to the WP installation. Should I contact my host (SiteGround), and tell them to reinstall WP in some different way?
Please advise.
Allen,
With your help, and the feed-URL information from the link below, I was able to solve the problem. The separate feeds work fine now. Thanks a lot for educating me on this.
Can I create these 2 separate feeds (along with 2 different URLs) from the same single blog that I already have setup, and if so (and forgive me for asking what may be a very basic question) how do I assign a different feed URL for the second feed?
If 2 separate feeds from a single blog won’t work, then would it be necessary to setup a second, completely separate, blog (by doing a second WordPress installation)?
Thanks again for you help.
Thanks Allen,
I’ve been assuming that I have 2 different feeds assigned to 2 different categories, but I could be wrong in assuming this.
Under the Feeds tab I clicked on “Add a new Feed”, and what I currently have is 2 different Feed Names, the exact same Feed URLs, and 2 different Categories. The Feed URLs are the same, both ending with
.../feed/rss/
. I figured that having the same URLs was okay, since I was wanting to pull posts from just a single blog.What I want to have as output is for the shortcode for the
category="2"
feed to only display the blog posts that I’ve assigned as category 2 posts, and for the shortcode for thecategory="3"
feed to only display the blog posts that I’ve assigned as category 3 posts.Yes, I have two different shortcodes on the Home page of the site that I’m working on.
The first is:
[wp_rss_multi_importer category="2" hdsize="18px" datestyle="font-size:12px;" showgroup="0"]
The second is:
[wp_rss_multi_importer category="3" hdsize="18px" datestyle="font-size:12px;" showgroup="0"]
Forum: Fixing WordPress
In reply to: Problem displaying Posts on Blog PageJust noticed that line 3690 of formatting.php file actually says “urldecode” instead of the “urlencode” that’s indicated in the warning message.
I’m lost.
Forum: Fixing WordPress
In reply to: Problem displaying Posts on Blog PageI opened the formatting.php file that’s referenced in the warning message above, and I’m seeing the following function, called wp_basename:
/** * i18n friendly version of basename() * * @since 3.1.0 * * @param string $path A path. * @param string $suffix If the filename ends in suffix this will also be cut off. * @return string */ function wp_basename( $path, $suffix = '' ) { return urldecode( basename( str_replace( array( '%2F', '%5C' ), '/', urlencode( $path ) ), $suffix ) ); }
It looks like parameter 1 of urlencode() is currently
basename( str_replace( array( '%2F', '%5C' ), '/'
I’m wondering what would need to be done here to make this a string, as expected.
Any advice would be appreciated.
Forum: Fixing WordPress
In reply to: Problem displaying Posts on Blog PageThanks for the help. I can now see the full posts, but am also getting a warning message at the top of the blog page that says: “Warning: urlencode() expects parameter 1 to be string, array given in /home/bfd/public_html/beekman/wp-includes/formatting.php on line 3690”
Here’s the latest code on my template file:
<?php /* Template Name: newsArchiveTemplate */ /** * Beekman custom page template file. * * This is the custom page template file, called newsArchiveTemplate. * Beekman will be able to select this file from the Add Page drop down menu. */ get_header(); ?> <?php include("leftSidebar.php"); ?> <?php get_sidebar(); ?> <div id="primary" class="content-area" style="width:300px; position:relative; left:300px; top:-1380px; margin-left:20px; float:left;"> <main id="main" class="site-main" role="main"> <?php /* The loop: the_post retrieves the content * of the new Page you created to list the posts, * e.g., an intro describing the posts shown listed on this Page.. */ if ( have_posts() ) : while ( have_posts() ) : the_post(); // Display content of page get_template_part( 'content', get_post_format() ); wp_reset_postdata(); endwhile; endif; $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $args = array( // Change these category SLUGS to suit your use. 'category_name' => array('music, videos'), 'paged' => $paged ); $list_of_posts = new WP_Query( $args ); ?> <?php if ( $list_of_posts->have_posts() ) : ?> <?php /* The loop */ ?> <?php while ( $list_of_posts->have_posts() ) : $list_of_posts->the_post(); ?> <?php // Display content of posts ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> <?php beekmantheme_paging_nav(); ?> <?php else : ?> <?php get_template_part( 'content', 'none' ); ?> <?php endif; ?> </div><!-- #content --> </div><!-- #primary --> <!--<?php get_sidebar(); ?>--> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Problem displaying Posts on Blog PageThanks for the link. Based on the info on the link I revised the code for my page template to read as shown below, but when I go the site page I get a message that says:
“Nothing Found. It seems we can’t find what you’re looking for. Perhaps searching can help.”
Is there something missing from my new page teamplate file?<?php /* Template Name: newsArchiveTemplate */ /** * Beekman custom page template file. * * This is the custom page template file, called newsArchiveTemplate. * Beekman will be able to select this file from the Add Page drop down menu. */ get_header(); ?> <?php include("leftSidebar.php"); ?> <?php get_sidebar(); ?> <div id="primary" class="content-area" style="width:300px; position:relative; left:300px; top:-1380px; margin-left:20px; float:left;"> <main id="main" class="site-main" role="main"> <?php /* The loop: the_post retrieves the content * of the new Page you created to list the posts, * e.g., an intro describing the posts shown listed on this Page.. */ if ( have_posts() ) : while ( have_posts() ) : the_post(); // Display content of page get_template_part( 'content', get_post_format() ); wp_reset_postdata(); endwhile; endif; $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $args = array( // Change these category SLUGS to suit your use. 'category_name' => 'music, videos', 'paged' => $paged ); $list_of_posts = new WP_Query( $args ); ?> <?php if ( $list_of_posts->have_posts() ) : ?> <?php /* The loop */ ?> <?php while ( $list_of_posts->have_posts() ) : $list_of_posts->the_post(); ?> <?php // Display content of posts ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> <?php beekmantheme_paging_nav(); ?> <?php else : ?> <?php get_template_part( 'content', 'none' ); ?> <?php endif; ?> </div><!-- #content --> </div><!-- #primary --> <!--<?php get_sidebar(); ?>--> <?php get_footer(); ?>
Forum: Plugins
In reply to: [WP Calendar] PHP warning messages and not able to create a categoryThanks DYC,
I checked the fsCalendarAdmin.php, and there’s no blank or white space before the <?php , and there’s a return after the < ?php , like so:
<?php class fsCalendarAdmin { var $settings;
Forum: Plugins
In reply to: [WP Calendar] End Time and Event DetailsI’m having the same problem with sending the user to the event details when clicking.
You can see the calendar at https://rdchin99.com/calendar-archived-events/
The steps I took were:
1. in Admin go to Pages > Add New Page (to be used to display the single calendar events)
2. in Admin go to Calendar > Edit > Add New Event (noting event as #1)
3. add {event_id; id=1} to the new page that I set up in step 1.
4. Go to full calendar, and click on the event
I would expect to be sent to the single event page, but nothing happens. I don’t even get the link symbol when I bring my cursor over the event.
Forum: Plugins
In reply to: [WP Calendar] PHP warning messages and not able to create a categoryI ran into the same problem too.
kaduprey, I used the instructions that you posted, and it did remove the “fsCalendarEvent.php on line 69” warning that was appearing on my full calendar page. Many Thanks!
However, when I go to view a Single Event page I’m still getting the “fsCalendarAdmin.php on line 376” warning.
Would you hazard a guess as to what further hacking would remove this second warning?
Alex
Forum: Plugins
In reply to: [The Events Calendar] Past events not showing on calendarSame here. The last day of January, I’d click on February, and not be able to see any Febrauary events, unless I refreshed the browser. At the top it would also say that “there were no results found” for February.
Now that it’s the first day in February, I can see all the Feb events without having to refresh.
When I click back to January, I can still see all of the January events.
Forum: Fixing WordPress
In reply to: Custom post type thumbnail (underscores theme)Hi Jeremy,
Does Underscores support custom post types?
The reason I ask is that I just installed a very popular WordPress calendar plugin on my Underscores site, and the events detail pages of this calendar are said (by the plugin authors) to be created as custom posts.
The plugin authors go on to say that if the theme doesn’t support custom post types then ‘the events detail pages may not show up at all’.
Well, this is exactly what I’m experiencing. I click on the event on the monthly calendar, and I get a page-not-found.
Any help would be appreciated.
Finally, if this question is too far off the topic, let me know, and I’ll do a new post with this question.
Thanks,
Alex