Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • I have to go with rchrisbishop’s evaluation. I manage content for a church website. We can’t use ads. Since there was no notice of ads for the free version, I had to go back and uninstall it. It’s a shame, because it’s a cool plugin. I know developers put a lot of time into creating these plug-ins. I certainly don’t blame you for needing to make a buck. But if you offered a premium version with a one-time price, I’d pay for it out of my own pocket and not charge the church. A subscription is out of the question.

    Since it’s such an excellent plugin, I didn’t rate it. But I wanted to add my opinion for your consideration.

    Thread Starter jadar

    (@jadar)

    Before I began editing, I had copied the original css code into notepad. After getting in over my head, I went back and returned both posts and archives to the original script. I read more and more posts and articles on wordpress and found how to change what’s seen through the current theme options.

    Again, I humbly apologize for taking up your time. It’s easy to panic. I’m a DIY person in many ways. I’ve learned much from reading the forums and tutorials, but there’s no substitute for experience when it comes to code.

    I’ll mark this thread as resolved.

    Thread Starter jadar

    (@jadar)

    What changes I made were base mostly on posts in this forum. That’s how out of my element I am.

    Original css single.php:

    [ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]

    <?php get_header(); ?>
    <?php $options = get_option('inove_options'); ?>
    
    <?php if (have_posts()) : the_post(); update_post_caches($posts); ?>
    
    	<div id="postpath">
    		<a>" href="<?php echo get_settings('home'); ?>/"><?php _e('Home', 'inove'); ?></a>
    		 > <?php the_category(', '); ?>
    		 > <?php the_title(); ?>
    	</div>
    
    	<div class="post" id="post-<?php the_ID(); ?>">
    		<h2><?php the_title(); ?></h2>
    		<div class="info">
    			</span>
    			<?php if ($options['author']) : ?><span class="author"></span><?php endif; ?>
    			<?php edit_post_link(__('Edit', 'inove'), '<span class="editpost">', '</span>'); ?>
    
    		<div class="fixed"></div>
    		</div>
    		<div class="content">
    			<?php the_content(); ?>
    			<div class="fixed"></div>
    		</div>
    		<div class="under">
    			<?php if ($options['categories']) : ?><span class="categories"><?php _e('Categories: ', 'inove'); ?></span><span><?php the_category(', '); ?></span><?php endif; ?>
    			<?php if ($options['tags']) : ?><span class="tags"><?php _e('Tags: ', 'inove'); ?></span><span><?php the_tags('', ', ', ''); ?></span><?php endif; ?>
    		</div>
    	</div>
    
    Changed to:
    
    <?php get_header(); ?>
    <?php $options = get_option('inove_options'); ?>
    
    <?php if (have_posts()) : the_post(); update_post_caches($posts); ?>
    
    	<div id="postpath">
    		<a>" href="<?php echo get_settings('home'); ?>/"<?php _e('Home', 'inove'); ?></a>
    
    	</div>
    
    	<div class="post" id="post-<?php the_ID(); ?>">
    		<h2><?php the_title(); ?></h2>
    		<div class="info">
    			</span>
    			<?php if ($options['author']) : ?></span><?php endif; ?>
    			<?php edit_post_link(__('Edit', 'inove'), '<span class="editpost">', '</span>'); ?>
    
    		<div class="fixed"></div>
    		</div>
    		<div class="content">
    			<?php the_content(); ?>
    </div>
    		<div class="under">
    			<?php if ($options['categories']) : ?><?php _e('Categories: ', 'inove'); ?></span><span></span><?php endif; ?>
    			<?php if ($options['tags']) : ?><span class="tags"><?php _e('Tags: ', 'inove'); ?></span><span><?php the_tags('', ', ', ''); ?></span><?php endif; ?>
    		</div>
    	</div>
    Thread Starter jadar

    (@jadar)

    I tried removing the hyperlinks within the text editor. When I updated the post, it looked fine on the browser (Mozilla and IE), but when I checked my netbook and tablet, the hyperlinks were there.

Viewing 4 replies - 1 through 4 (of 4 total)