h2vm
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Looking for Pluginthanks
Forum: Fixing WordPress
In reply to: Posting Questionit is a very funky template. I have figured it out.
thank you
Forum: Fixing WordPress
In reply to: Posting Questionit is actually in Archive.php
<div class=”content”>
<?php the_content(__(‘Read more…’, ‘inove’)); ?>
<div class=”fixed”>
</div>if I remove this code (or comment out) that all side bar gets out of place
Forum: Fixing WordPress
In reply to: Posting QuestionNot entirely… I would like to have the name of the post only and remove “Read more”
Forum: Everything else WordPress
In reply to: Unable to locate Home pageResolved
P.S. Moderator, I do not have an option to change this to resolved for some reason
Forum: Fixing WordPress
In reply to: Unable to remove Date/Time stampArchive.php it is…
thank you
Forum: Fixing WordPress
In reply to: Problem with WidgetsGot it,
ThanksForum: Installing WordPress
In reply to: Best Practice to backup your site contentI have done the backup and tried all option all looks good.
Thanks for advise.
one little warning message I have that won’t go awayYour backup folder MIGHT be visible to the public
To correct this issue, move the .htaccess file from wp-content/plugins/wp-dbmanager to /homepages/0/d288471900/htdocs/wp-content/backup-db
I did move that file to wp-content/backup-db
Although it is not .htaccess file but htaccess.txthow do i get rid of this message?
Forum: Installing WordPress
In reply to: Best Practice to backup your site contentI have installed and configured the wpBackup.
The option I do not see if I can schedule the backup or do manual backup.. advise? should I use different plug-in than wpBackup?
Also it backups sql database… how do I restore it? it lets me download the file from the backup but not directly restore the database…Forum: Everything else WordPress
In reply to: Posting Content Questiongot it working
Forum: Fixing WordPress
In reply to: remove date, categories and tagsNazcar, I have picked the different theme which has an option to disbale all that info. i think it is clean now. thank you
for your helpForum: Fixing WordPress
In reply to: remove date, categories and tagsnever mind… it is categories.php so it is a different file you asked about.
what is single.php controls?
it has simular code<div class=”meta”> <div class=”alignleft floatleft”> <div class=”date”><? printf( __(‘%1$s at %2$s’, ‘blocks’), get_the_time(__(‘l, F jS, Y’, ‘blocks’)), get_the_time(__(‘H:i’, ‘blocks’)) ); ?></div> <?php if ($options[‘categories’]) : ?> <div class=”post_info”><?php _e(‘Categories: ‘, ‘blocks’); the_category(‘, ‘) ?></div> <?php endif; ?> <?php if ($options[‘tags’]) : ?> <div class=”post_info”><?php _e(‘Tags: ‘, ‘blocks’); the_tags(”, ‘, ‘, ”); ?></div> <?php endif; ?>
Forum: Fixing WordPress
In reply to: remove date, categories and tagsI am not seeing this
div class=”meta”>
<div class=”floatleft”>
in index.php
category.php is in directory wp-admin… what do i need to do with it?
i know i had the same file in the old them that i have deleted already….
Forum: Fixing WordPress
In reply to: remove date, categories and tagsForum: Fixing WordPress
In reply to: remove date, categories and tagsI have downloaded the index.php so i have a backup.
removed suggested. all links are working so far but
comments, date, all the info still there
here is my new index.php<?php $options = get_option(‘blocks_options’); ?><?php get_header(); ?><?php if ($options[‘notice’]) : ?> <div class=”block”> <div class=” <?php if($options[‘notice_color’] == 1) {echo ‘content’;} else if($options[‘notice_color’] == 3){echo ‘content r’;} else{echo ‘content g’;} ?>”> <div id=”notice_content”><?php echo($options[‘notice_content’]); ?></div> </div> </div><?php endif; ?><?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class=”post”> <h3 class=”title”>” rel=”bookmark”><?php the_title(); ?></h3> <div class=”content”> <?php the_content(__(‘Read more…’, ‘blocks’)); ?> <div class=”fixed”></div> </div> </div> <div class=”alignright floatright”> <div><?php comments_popup_link(__(‘No comments’, ‘blocks’), __(‘1 comment’, ‘blocks’), __(‘% comments’, ‘blocks’)); ?></div> <div><?php edit_post_link(__(‘Edit’, ‘blocks’), ”, ”); ?></div> </div> <div class=”fixed”></div> </div> </div><?php endwhile; ?> <div id=”pagenavi” class=”block”> <?php if(function_exists(‘wp_pagenavi’)) : ?> <?php wp_pagenavi() ?> <?php else : ?> <div class=”content g”> <span class=”newer”><?php previous_posts_link(__(‘« Newer Entries’, ‘blocks’)); ?></span> <span class=”older”><?php next_posts_link(__(‘Older Entries »’, ‘blocks’)); ?></span> <div class=”fixed”></div> </div> <?php endif; ?> </div><?php else: ?> <div class=”block”> <div class=”content small r”> <?php _e(‘Sorry, no posts matched your criteria.’, ‘blocks’); ?> </div> </div><?php endif; ?><?php get_footer(); ?>