csloisel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Import External XML feedYes I understand the formats they have, but that xml feed is not an RSS feed.
Forum: Fixing WordPress
In reply to: Import External XML feedWell I can explain why there is no WordPress plugin available for you to accomplish this. That particular feed is a custom feed and does not follow any standardized format. If it were say an RSS feed it would be a lot easier to find a plugin since RSS is a widely used feed format. For this reason you would have to find a plugin specifically written for this site, but it is a pretty obscure site so it is not really surprising that one has not been written.
Another problem with the feed is that it does not contain any of the content, so setting up the feed to create posts would require an additional request to fetch the html for the content. This is why I asked if you were trying to list them or create posts.
As for you question regarding set-back, that is really between you and whatever developer you hire.
Forum: Fixing WordPress
In reply to: WP_Query on CPT Archive Page including Custom TaxonomySomething doesn’t add up, there is no way using just those query args will result in that statement, and if you are using a custom post type and a custom taxonomy, why are you using ‘post’ post type and ‘category’ taxonomy?
Forum: Fixing WordPress
In reply to: WordPress Pagination Shows Same Page at all page numbersRemove line 1:
<?php query_posts('posts_per_page=7'); ?>
and it should work.If you want to change the posts per page you should use the setting in the admin panel or add a filter to the main query.
Forum: Fixing WordPress
In reply to: WordPress Pagination Shows Same Page at all page numbersYou are using query_posts() at the top of the template file which you shouldn’t really be doing, you are adding an unnecessary extra query to the page load, but if you are going to keep it there you have to add the paged query var to the query args, otherwise it will always show the first page.
Forum: Fixing WordPress
In reply to: WordPress Pagination Shows Same Page at all page numbersFirst Question: Why not use
paginate_links()
?Forum: Fixing WordPress
In reply to: Portfolio – WHERE DID IT GO!!While WordPress.com uses the code from www.remarpro.com as a foundation, they have features and modifications not available in the open source code base.
Forum: Fixing WordPress
In reply to: Entry title & info missing from my postsWell the meta is actually printing out, but your theme stylesheet has it hidden on line 1477:
.entry-meta { display: none; clear: both; color: #888; font-size: 16px; font-size: 1.6rem; }
Forum: Fixing WordPress
In reply to: Import External XML feedWell it is possible, but it would require writing a lot of custom code, this is something someone familiar with WordPress development and a solid understanding of php would have to handle. is that something you are comfortable with? If so I can point you in the right direction.
Forum: Fixing WordPress
In reply to: How To Combine CSS Files4 style sheets is not something you should worry about.
Forum: Fixing WordPress
In reply to: Entry title & info missing from my postsTyping strings in without quotes is not valid php syntax, they need to be wrapped.
For example:
array(contact, about, portfolio, services, contact-test)
Should be:
array('contact', 'about', 'portfolio', 'services', 'contact-test')
Forum: Fixing WordPress
In reply to: Very new to wordpress, Help is Appreciated :)The best way is to modify the theme template files or create a child theme. Switching the_content() with the_excerpt() will generate a preview with a read more link. As for the infinite scroll, check your theme for an option to disable, if not, you will have to figure out where the script is being initialized and remove it, and add the paginate_links() function to the page.
Forum: Fixing WordPress
In reply to: Import External XML feedWhat exactly is the end goal here, to create a new post on your site to replicate every post on the feed? Or is it just to list them out somewhere and link to the origin site?
Forum: Fixing WordPress
In reply to: WordPress need username to external scriptCan you make the button an ajax call and send the data from the back-end using the current user information?
Forum: Fixing WordPress
In reply to: Wesbite with custom members logins and direct debit payment optionsHave you looked into this plugin?