iamkangy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can Not Turn Comments OnThis has been resolved. I overlooked one setting in my theme that had comments disabled. As soon as I enabled the box returned on posts.
Feel a bit silly now though I thought I went right through those settings.
Forum: Fixing WordPress
In reply to: Can Not Turn Comments On@t-p – as a Moderator, you should know the ACP stands for the Admin Control Panel.
@alchymyth – Thank you for your reply. I have checked the Twenty Twenty theme and the comment box DOES show correctly. I have checked my settings within the Multi News theme that I use and everything is set correctly in there also.
So I really do not know why it isn’t showing up anymore. And I have so far been waiting for a reply from the developer for more than 2 weeks, which is why I am now posting here as I really need my comments back on.
Forum: Fixing WordPress
In reply to: WP Admin Extra SecurityThank you.
Forum: Fixing WordPress
In reply to: Password Protected Folder Returning 404 ErrorHi Christopher. Thank you for such a speedy reply. I just followed your instructions and it worked perfectly. Thank you so much ??
Forum: Fixing WordPress
In reply to: Show Full Post on HomepageAlready know that link, I have been trying to get support from the theme maker for the last couple of weeks with no response.
Forum: Fixing WordPress
In reply to: Show Full Post on HomepageThis is my index.php file code in full (you might have a better of idea of what I am looking for then what I do in this one). BTW thank you so much for your help with this.
<?php get_header(); ?>
<div class=”main-container clearfix”><!–container–>
<div class=”main-left”><!–Main Left–>
<div class=”main-content” role=”main”><!–Main Content–>
<?php
$display = mom_option(‘hp-display’);
$style = mom_option(‘hp-blog-style’);
$post = mom_option(‘hp-blog-posts’);
$unique_posts = ”;
$unique_posts = mom_option(‘uni_posts’);
if($display == ‘builder’) {
echo apply_filters(‘the_content’, mom_option(‘home_page_builder’));
} else {
echo do_shortcode(‘[blog style=”‘.$style.'” posts_per_page=”‘.$post.'”]’);
}
?>
</div><!–Main Content–>
<?php get_sidebar(‘left’); ?>
</div><!–Main left–>
<?php get_sidebar(); ?>
</div><!–container–>
</div><!–wrap–>
<?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Show Full Post on HomepageThank you for your reply, I do not see a content.php file. I searched all the files even on my local PC. The closet that I found was a content.tpl.php file in the admin folder Located under: multinews\framework\admin\redux-framework\ReduxCore\templates\panel but there is nothing like the code you suggested. And I have no idea where else to look.