artwood
Forum Replies Created
-
I’ll try that and see if it works. I’ll get back to you with the results.
Thank you for the quick response also Matt!Hi Matthew,
I believe it’s the latest version… 2.3.7
Thank you for creating such an amazing tool by the way ??
You surely are a Champion Among Men, Matt!Hi Lifeinthegrid,
After pulling my hair out and nearly going bald I’ve come to the conclusion that it isn’t the Duplicator plugin that was causing the problem. I tried another plugin, Back up and Move, and got the same result.
This leads me to believe that the problem isn’t the plugins, but either something is setup wrong in the database, or (after some research)the .htaccess file might be causing some michief as well.Either way, I rolled up my sleeves and attempted a manual transfer…
and low and behold! I got it to work!! Literally right before I got the email from you. lol.So I appreciate your help nonetheless, and I still LOVE your Duplicator plugin. Thanks again my man, and take care. :))
Hi zorbiz,
After a week of frustration I found an answer…Look up “Facebook Comments” by Alex Moss in the Plugins Directory.
THE BEST and EASIEST Facebook Comments Plugin that I’ve found in my opinion. You literally install it, activate it, plugin the app ID and secret key, and you’re ready to go.I kept SFC for the “facebook photos import” module and the “publish to facebook” functions, but much of the other features never seemed to work properly for me.
hell, I’ll just give you the link:
This plugin SAVED me! Check it out.
Oh and let me clarify,
I’m trying to get the fb comments to show up underneath each post that I publish.Forum: Fixing WordPress
In reply to: Displaying a WP Page in an existing siteThank You esmi, I’ll try that and see where that gets me. I actually found another way to do it as well. On the “Pages” section of the codex there is a link to a plugin called “Page Includes” or something like that. I installed the plugin and now all I have to do is insert this line wherever I want the Page Content to show up:
<?php iinclude_page(15); ?>
Simple as that!
But now my problem is how to make the content appear correctly. I have some formatting issues with the CSS. Back to the Codex!! lol. I’ll figure it out though.Thank You again for your help!
Forum: Fixing WordPress
In reply to: Displaying a WP Page in an existing siteThat’s what I was thinking, but what is the PHP tag that you use to display a certain page?
For my News page(which is working perfectly),
I have changed the HTML page to a PHP page, and I have this code at the very top of the page:<?php // Include WordPress define('WP_USE_THEMES', false); require('../wordpress/wp-load.php'); query_posts('showposts=5'); ?>
…and then I’ve placed these lines of code, “The Loop”, where I want the post/page to display.
<div class="news_entry"> <?php while (have_posts()): the_post(); ?> <h4><?php the_title(); ?></h4> <?php the_excerpt(); ?> <div class="read_more"><a href="<?php the_permalink(); ?>">Read the rest...</a></div> <?php endwhile; ?> </div><!-- END "NEWS_ENTRY" -->
So if it’s exactly the same process, I’m guessing my problem is this line at the top of the page:
query_posts('showposts=5');
…because I don’t want to show 5 posts, I only want one specific pages content to show. I found the pages ID, which was “p-15” and placed it in there instead.
query_posts('p-15');
Am I missing something?
Thank you again for your help :))Forum: Fixing WordPress
In reply to: Displaying a WP Page in an existing siteThank you for your help Esmi,
But I’ve already read that page 10+ times!! lol.
I keep getting reverted back to that page but it doesn’t have the info I’m looking for. It’s for displaying Posts and converting your entire site to a WordPress theme. I need my Pages content to show up, not the Posts.I know it has to be some little PHP tag that I can use, but I don’t know very much about PHP! lol.
FML!