Forum Replies Created

Viewing 15 replies - 1 through 15 (of 80 total)
  • Thread Starter wrightj999

    (@wrightj999)

    I have already tried using a different them and the blog posts worked. Didn’t even have to deactivate plugins. I don’t have this problem with any other of multiple sites that I use with this theme.

    I fixed it. I did use radio buttons and it works like a charm. Thanks!

    Thread Starter wrightj999

    (@wrightj999)

    I’m assuming it should kick back something to the user, because I entered many of the fields as required.

    Thread Starter wrightj999

    (@wrightj999)

    I recreated the form using all the short codes and I can’t seem to get it to work, the send button is not registering. the page is now at https://www.caleblog.com/reserve

    Thread Starter wrightj999

    (@wrightj999)

    Thank you, I will try my best!

    Thread Starter wrightj999

    (@wrightj999)

    Can I rebuild virtually the same look of a form in Contact Form 7? I’ve actually already downloaded/installed it at the development location… and copied the code from this old form to the Contact Form 7 panel in WordPress. Right now the shortcode is working on https://www.caleblog.com/contact-test/

    While the form is displaying as it should, I can’t seem to get it to work… do I have to rebuild the form from scratch within CF7? Is copying and pasting the code from the previous form not going to work even with some code doctoring?

    My guess is that I have to just start from scratch. Do you have any experience using it? I need to figure out how to get something similar, fortunately what I need to replicate in form and function is relatively simple.

    same issue with my site, except I did not notice this until I updated to the latest version of wordpress, and perhaps the new Yoast was updated recently as well.. but my problem is that this plugin makes it so I can’t access my pages for editing, which is a big problem. I love the plugin and am dissapointed I can’t use it.

    If i revert to an earlier version does it erase all of my settings?

    Thread Starter wrightj999

    (@wrightj999)

    nevermind. apparently the answer is that Safari takes ages longer than all the other browsers to propagate updates in complete fashion.

    Thread Starter wrightj999

    (@wrightj999)

    u know what? I guess this is a windows xp, firefox issue with my pc at work. so weird. I just got home and on my imac, using firefox, the site comes up perfectly.

    I had tried everything you suggested in disabling all plugins, and then resetting the plugins folder through my server cpanel, and re-logging in to wordpress.

    The weird thing was that it didn’t work at first. Then I re-enabled the plugin’s and all of a sudden I loaded the page again and the footer came up. However on consecutive loads, it wouldn’t show up any more. very strange and aggravating.

    But it still worked great in all other browsers other than Firefox on my windows xp computer at work. It also works on multiple browsers on the mac.

    So I guess I will just rest the issue.

    Thread Starter wrightj999

    (@wrightj999)

    oh wait, hold up!! I really don’t get this, haha. It worked at first, then on consecutive trys, the footer is again not showing up on the home page ?? Perhaps I will try resetting the plug ins folder.

    Thread Starter wrightj999

    (@wrightj999)

    ahhhh, it was the first plug-in I tried: WordPress SEO by Yoast. It seems like such an excellent plug-in, but it’s also what caused my problem with not being able to go into blog posts with https://www.whoaga.com. (with whoaga.com I just had to go change the permalinks setting, then everything worked fine when I re-activated the plug in)

    Can you think of why this plug in may be doing this, as to a setting I may be able to adjust to still use it? Or is there a better SEO plug in I don’t know about that’d do a better job?

    And thanks btw, that was a quick fix!

    Thread Starter wrightj999

    (@wrightj999)

    hey thanks for responding! I finally got it fixed after updating the theme, messing with my plugins, and changing a custom field adjustment that wordpress SEO was making automatically, that for some reason was causing blog posts to redirect to my home page, and act generally broken. even the comments form and the ability to post videos and images came back!

    Thread Starter wrightj999

    (@wrightj999)

    here is my single.php:

    [71 lines of code moderated as per the Forum Rules. The maximum number of lines of code that you can post in these forums is ten lines. Please use the pastebin]

    Thread Starter wrightj999

    (@wrightj999)

    here is my single.php:
    <?php
    /**
    * The Template for displaying all single posts.
    *
    * @package WordPress
    * @subpackage TravelBlogger
    * @since TravelBlogger Theme 1.0
    */

    get_header(); ?>

    <div id=”yui-main”>
    <div class=”yui-b”>
    <div id=”content” class=”main-content hfeed rounded”>

    <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>

    <div id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
    <h1 class=”entry-title”><?php the_title(); ?></h1>

    <div class=”entry-meta”>
    <?php travelblogger_posted_on(); ?>
    </div><!– .entry-meta –>

    <div class=”entry-content”>
    <?php the_content(); ?>
    <?php wp_link_pages( array( ‘before’ => ‘<div class=”page-link”>’ . __( ‘Pages:’, ‘travelblogger’ ), ‘after’ => ‘</div>’ ) ); ?>
    </div><!– .entry-content –>

    <?php if ( get_the_author_meta( ‘description’ ) ) : // If a user has filled out their description, show a bio on their entries ?>
    <div id=”entry-author-info”>
    <div id=”author-avatar”>
    <?php echo get_avatar( get_the_author_meta( ‘user_email’ ), apply_filters( ‘travelblogger_author_bio_avatar_size’, 60 ) ); ?>
    </div><!– #author-avatar –>
    <div id=”author-description”>
    <h2><?php printf( esc_attr__( ‘About %s’, ‘travelblogger’ ), get_the_author() ); ?></h2>
    <?php the_author_meta( ‘description’ ); ?>
    <div id=”author-link”>
    “>
    <?php printf( __( ‘View all posts by %s <span class=”meta-nav”>→</span>’, ‘travelblogger’ ), get_the_author() ); ?>

    </div><!– #author-link –>
    </div><!– #author-description –>
    </div><!– #entry-author-info –>
    <?php endif; ?>

    <div class=”entry-utility”>
    <?php travelblogger_posted_in(); ?>
    <?php edit_post_link( __( ‘Edit’, ‘travelblogger’ ), ‘<span class=”edit-link”>’, ‘</span>’ ); ?>
    </div><!– .entry-utility –>
    </div><!– #post-## –>

    <div class=”nav-outter clearfix”>
    <div id=”nav-below” class=”navigation clearfix”>
    <div class=”nav-previous”><?php previous_post_link( ‘%link’, ‘<span class=”meta-nav”>’ . _x( ‘←’, ‘Previous post link’, ‘travelblogger’ ) . ‘</span> %title’ ); ?></div>
    <div class=”nav-next”><?php next_post_link( ‘%link’, ‘%title <span class=”meta-nav”>’ . _x( ‘→’, ‘Next post link’, ‘travelblogger’ ) . ‘</span>’ ); ?></div>
    </div><!– #nav-below –>
    </div><!– .nav-outter –>
    <?php comments_template( ”, true ); ?>

    <?php endwhile; // end of the loop. ?>

    </div><!– /.main-content –>
    <?php get_sidebar(‘secondary’); ?>
    </div><!–yui-b-main–>
    </div><!–yui-main–>

    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    Thread Starter wrightj999

    (@wrightj999)

    here is my single.php:

    <?php
    /**
     * The Template for displaying all single posts.
     *
     * @package WordPress
     * @subpackage TravelBlogger
     * @since TravelBlogger Theme 1.0
     */
    
    get_header(); ?>
    
    	<div id="yui-main">
    	   <div class="yui-b">
    			 <div id="content" class="main-content hfeed rounded">
    
    		<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>	
    
    						<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    							<h1 class="entry-title"><?php the_title(); ?></h1>
    
    							<div class="entry-meta">
    								<?php travelblogger_posted_on(); ?>
    							</div><!-- .entry-meta -->
    
    							<div class="entry-content">
    								<?php the_content(); ?>
    								<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'travelblogger' ), 'after' => '</div>' ) ); ?>
    							</div><!-- .entry-content -->
    
    		<?php if ( get_the_author_meta( 'description' ) ) : // If a user has filled out their description, show a bio on their entries  ?>
    							<div id="entry-author-info">
    								<div id="author-avatar">
    									<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'travelblogger_author_bio_avatar_size', 60 ) ); ?>
    								</div><!-- #author-avatar -->
    								<div id="author-description">
    									<h2><?php printf( esc_attr__( 'About %s', 'travelblogger' ), get_the_author() ); ?></h2>
    									<?php the_author_meta( 'description' ); ?>
    									<div id="author-link">
    										<a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>">
    											<?php printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'travelblogger' ), get_the_author() ); ?>
    										</a>
    									</div><!-- #author-link	-->
    								</div><!-- #author-description -->
    							</div><!-- #entry-author-info -->
    		<?php endif; ?>
    
    							<div class="entry-utility">
    								<?php travelblogger_posted_in(); ?>
    								<?php edit_post_link( __( 'Edit', 'travelblogger' ), '<span class="edit-link">', '</span>' ); ?>
    							</div><!-- .entry-utility -->
    						</div><!-- #post-## -->
    
    					<div class="nav-outter clearfix">
    						<div id="nav-below" class="navigation clearfix">
    							<div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'travelblogger' ) . '</span> %title' ); ?></div>
    							<div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'travelblogger' ) . '</span>' ); ?></div>
    						</div><!-- #nav-below -->
    					</div><!-- .nav-outter -->
    						<?php comments_template( '', true ); ?>
    
    		<?php endwhile; // end of the loop. ?>
    
    			</div><!-- /.main-content -->
    			<?php get_sidebar('secondary'); ?>
    	   </div><!--yui-b-main-->
    	</div><!--yui-main-->
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

Viewing 15 replies - 1 through 15 (of 80 total)