jstudios
Forum Replies Created
-
Forum: Themes and Templates
In reply to: M footer widgets disappear when I add a new sidebar widget…It’s happening again… 🙁
Forum: Themes and Templates
In reply to: M footer widgets disappear when I add a new sidebar widget…Alright, I did that and added a main widget successfully without loosing the footer widgets. I’ll keep an eye out on how it works out and if I have any issues I’ll rebump the thread.
Many thanks!!!
Forum: Themes and Templates
In reply to: M footer widgets disappear when I add a new sidebar widget…I did the following and the output is “1”.
<?php echo $options['showfooterwidgets']; ?>Forum: Themes and Templates
In reply to: M footer widgets disappear when I add a new sidebar widget…I have a whole div container dedicated to the footer widgets. Under Theme Options I can elect if I wish to enable the footer widgets or not. That conditional will display the footer widgets area if checked under Theme Options. That way, if someone doesn’t wish to use footer widgets, there won’t be an empty div at the bottom, but instead it will be removed completely.
I removed it and everything works fine, I even added a widget to the main sidebar without losing the footer widgets. But I WILL be needing that conditional because of the way the theme is built.
Forum: Themes and Templates
In reply to: M footer widgets disappear when I add a new sidebar widget…Here is my footer.php in its entirety:
<span class="clearfix"></span> </div><!-- #main --> <?php $options = get_option( 'jframe_theme_options' ); ?> <footer id="footer"> <?php if ( isset( $options['showfooterwidgets'] ) ) { ?> <section id="footer-widgets"> <?php dynamic_sidebar('Footer 1'); dynamic_sidebar('Footer 2'); dynamic_sidebar('Footer 3'); dynamic_sidebar('Footer 4'); ?> <span class="clearfix"></span> </section><!-- #footer-widgets --> <?php } ?> <div id="footer-container"> <div id="footer-content" class="leftFooterContent"> <?php if ( isset( $options['leftfootercontent'] ) ) { echo do_shortcode( $options['leftfootercontent'] ); } ?> </div> <div id="footer-content" class="rightFooterContent"> <?php if ( isset( $options['rightfootercontent'] ) ) { echo do_shortcode( $options['rightfootercontent'] ); } ?> </div> <div id="footer-content" class="middleFooterContent"> <?php if ( isset( $options['middlefootercontent'] ) ) { echo do_shortcode( $options['middlefootercontent'] ); } ?> </div> </div><!-- #footer-container --> <span class="clearfix"></span> <?php wp_footer(); ?> </footer><!-- #footer --> </div><!-- #wrapper --> </body> </html>Forum: Themes and Templates
In reply to: M footer widgets disappear when I add a new sidebar widget…My own, I built my own parent theme to use on clients. Let me know what you need.
Theme works just as I need, expect the footer widgets issue.
Forum: Themes and Templates
In reply to: M footer widgets disappear when I add a new sidebar widget…Still happening.
Forum: Fixing WordPress
In reply to: 3.5: Any way of retaining a post's gallery without embedding?It appears the system works as always, it just seems different because of the new process.
When I edit a post (car listing) and upload images while I’m at it, it will assign/relate those uploaded images with the current post being edited regardless of what you with them (add them to a galley, insert them, etc.)
Forum: Fixing WordPress
In reply to: HTTP errorI’ve had that happen sometimes when uploading more than 1 image at a time. Try uploading 1 image at a time and see if you get the error.
Forum: Themes and Templates
In reply to: Theme Options – esc_textarea stays empty when savingNever mind, I forgot to change the word “sample” to the correct term.