fmigryphon
Forum Replies Created
-
Worked! Thanks!
Failed to load resource: the server responded with a status of 403 (Forbidden)
http://www.yoursaturnreturn.net/wp-content/plugins/tablepress/admin/js/edit.js?ver=1.7 Failed to load resource: the server responded with a status of 403 (Forbidden)
http://www.yoursaturnreturn.net/wp-content/plugins/tablepress/admin/js/common.js?ver=1.7 Failed to load resource: the server responded with a status of 403 (Forbidden)
http://www.yoursaturnreturn.net/wp-content/plugins/tablepress/admin/js/edit.js?ver=1.7 Failed to load resource: the server responded with a status of 403 (Forbidden)I entered the following in a cell and clicked save:
No. It just allows me to click the button and it keeps it highlighted with a light blue highlight around it.
Forum: Plugins
In reply to: [upPrev] upPrev not showing — please helpIt’s not working on the main page.
Forum: Themes and Templates
In reply to: TablePress — How to disable row highlighting?Thank you! That solved my problem!
Forum: Themes and Templates
In reply to: TablePress — How to disable row highlighting?Yes, I need to turn that off so there is no highlighting.
Forum: Themes and Templates
In reply to: Right sidebar widget moved below contentIt was Jetpack’s social comments plugin. I deactivated it and it’s working.
Forum: Themes and Templates
In reply to: Right sidebar widget moved below contentI have an equal number of open and closing divs. Here’s the complete source code from page.php.
<?php
/**
* The template for displaying all pages.
*
* @package WordPress
* @subpackage CTR Theme
* @since CTR Theme 1.0
*/get_header();
$subtheme = get_option(‘ctrplus_ad_subtheme’);
?>
<?php if($subtheme == ‘ctr-modern’) {?>
<div class=”container-fluid top_margin”>
<div class=”row”>
<div class=”container”>
<div class=”col-lg-3 col-md-4 col-sm-4 col-xs-12″>
<?php get_sidebar(); ?>
</div>
<div class=”col-lg-9 col-md-8 col-sm-8 col-xs-12″><?php }?>
<?php if($layout == ‘728’){ echo “<div id=’leaderboard’>{$ads[‘728’]}</div>”; } ?>
<div id=”content” role=”main”>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?><div id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<?php include(TEMPLATEPATH . ‘/includes/postBody.php’); ?>
</div><!– #post-## –><?php endwhile; ?>
<?php comments_template(); ?></div><!– #content –>
<?php if($subtheme == ‘ctr-modern’) {?>
</div>
</div>
</div>
</div>
<?php }?>
<?php get_footer(); ?>