tokyo20
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Remove hyperlink from (Posted On)Hey All,
Im trying to remove/disable the hyperlink that is embedded with the “Posted on {date}”.
Theme: Vantage Premium (I was trying to do the same in the free one as well)
WP: 3.7.1
Steps Taken: E-mailed the theme designer and he informed me that what I am trying to do is a WP modification and not something that he can answer with his theme. I have searched across the forums and Google with no luck. I have even tried to edit strings of code myself to see if I could resolve this with no luck.
If anyone could help me or point me in the right direction, I would greatly appreciate it.
Here is a link to my page so you can see what I am talking about: http://wcscience.com/wordpress/ap-biology
Thank-you,
-Tokyo20
Forum: Themes and Templates
In reply to: Vantage Premium – Remove/Disable "Posted On" HyperlinkThe issue I am having really has nothing to do with it being a Premium theme. I had the same issue when I was using the free version. I have contacted Greg regarding this and he stated that this is a WP customization and not a theme one on their end. So I was trying to find out if anyone here on the WP forums might know how to resolve this issue.
Forum: Fixing WordPress
In reply to: Remove hyperlink from (Posted On)I just looked around (single.php) as you suggested and turned up with nothing. However, I found the following in (content-single.php). How would I remove the link from the following code?
<?php /** * Displays * * @package vantage * @since vantage 1.0 * @license GPL 2.0 */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>> <div class="entry-main"> <?php do_action('vantage_entry_main_top') ?> <header class="entry-header"> <?php if( has_post_thumbnail() && siteorigin_setting('blog_featured_image') ): ?> <div class="entry-thumbnail"><?php the_post_thumbnail( is_active_sidebar('sidebar-1') ? 'post-thumbnail' : 'vantage-thumbnail-no-sidebar' ) ?></div> <?php endif; ?> <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'vantage' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1> <?php if ( get_post_type() == 'post' ) : ?> <div class="entry-meta"> <?php vantage_posted_on(); ?> </div><!-- .entry-meta --> <?php endif; ?> </header><!-- .entry-header --> <div class="entry-content"> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'vantage' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'vantage' ), 'after' => '</div>' ) ); ?> </div><!-- .entry-content --> <?php if(vantage_get_post_categories()) : ?> <div class="entry-categories"> <?php echo vantage_get_post_categories() ?> </div> <?php endif; ?> <?php do_action('vantage_entry_main_bottom') ?> </div> </article><!-- #post-<?php the_ID(); ?> -->Any Suggestions?