kellkellkelly
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to remove grey browse bar from homepageAugustin56, would you happen to know where to lead me to look for turning off breadcrumbs?
Forum: Fixing WordPress
In reply to: Can't find footer widget in back end?Nope, it created a bunch of warnings about splitting where the links were showing up in the footer. :{
Forum: Fixing WordPress
In reply to: Can't find footer widget in back end?Woah! I found it… it was a footer plug-in…
// mainline (mont co) echo "<div class='footer-col'>"; echo "<h3>Main Line<br />Pennsylvania</h3>"; echo "<ul>"; $args = array( 'post_type'=> 'property', 'location' => 'montgomery-county', 'order' => 'ASC', 'orderby' => 'title' ); query_posts( $args ); while(have_posts()) : the_post(); $title = get_the_title(); $link = get_permalink(); echo "<li><a href='{$link}'>{$title}</a></li>"; endwhile; echo "</ul>"; echo "</div>";I think I figured out what the issue is… there are two properties that are in Delaware County (and checked off as such on their property page) that I need to appear at the bottom under the heading “main line.” In the code, it’s telling to pull from the location of “Montgomery County” only. I tried to tell it to do both by entering it like this:
'location' => 'montgomery-county', 'delaware-county',But it continued to just pull montgomery county. I tried just delaware county just to make sure it would work and it did–just pulled the two delaware county listings. Any ideas? :-/
Thanks so much for your help & patience! :}
Forum: Fixing WordPress
In reply to: Can't find footer widget in back end?whoops, actually this is the correct website: http://yourmetropolitan.com/wordpress/
I’m trying to duplicate the old website within wordpress
Forum: Fixing WordPress
In reply to: Can't find footer widget in back end?This is what that looks like:
<?php /** * The template for displaying the footer. * * Contains the closing of the id=main div and all content * after. Calls sidebar-footer.php for bottom widgets. * * @package WordPress * @subpackage Twenty_Ten * @since Twenty Ten 1.0 */ ?> </div><!-- #main --> </div><!-- #wrapper --> <div id="footer" role="contentinfo"> <div id="colophon"> <?php /* A sidebar in the footer? Yep. You can can customize * your footer with four columns of widgets. */ get_sidebar( 'footer' ); ?> <div id="site-info"> © <?php _e( date( 'Y' ) ); ?> Metropolitan Management Corporation • 230 Windsor Avenue • Narberth, Pennsylvania • (610) 667-1700 • <a href="http://yourmetropolitan.com/wordpress/contact-us/" target="_blank">CONTACT US</a> • Site design by <a href="http://www.acquirevisual.com" target="_blank">Acquire, LLC</a> • <a href="?theme=handheld">Mobile Site</a> </div><!-- #site-info --> <!-- #site-generator --> </div><!-- #colophon --> </div><!-- #footer --> <?php /* Always have wp_footer() just before the closing </body> * tag of your theme, or you will break many plugins, which * generally use this hook to reference JavaScript files. */ wp_footer(); ?> </body> <script> jQuery(document).ready(function(){ if (jQuery('#eModal-1').length) { var modalclick = '<a href="#" class="eModal-1" style="display: none;">Open Modal</a>'; jQuery(modalclick).appendTo("body"); jQuery(".eModal-1").click(); } }); </script> </html>Forum: Fixing WordPress
In reply to: How to change height of image in text header widgetThank you!!
Forum: Fixing WordPress
In reply to: How to change font to sans serif for testimonial slider?Thank you so much!
Forum: Fixing WordPress
In reply to: How to change font to sans serif for testimonial slider?I think I found it. I found the link for Cardo in the Header.php & inserted the Roboto link under that & it worked. That’s correct, right?
Forum: Fixing WordPress
In reply to: How to change font to sans serif for testimonial slider?Thanks so much for your help!
I understand number 3, but where should I insert the link from #2?
Forum: Fixing WordPress
In reply to: Tried changing logo & now it's showing as a blue '?' inside a boxThank you for your help!
It did need an update. My coworker did it, and I could change the image no problem.
Thank you!!
Forum: Fixing WordPress
In reply to: How do I change the font color of my testimonial carousel?That was SO easy!
Thank you so much!
Forum: Fixing WordPress
In reply to: Tried changing logo & now it's showing as a blue '?' inside a boxNo there are no options… Only through that page will I be able to edit the logo??
Forum: Fixing WordPress
In reply to: Tried changing logo & now it's showing as a blue '?' inside a boxThanks for responding!
When I go to Appearance->Theme Options there are a bunch of warnings (more than just these three) that look like this:
Warning: include_once(__DIR__/src/Colors.php) [function.include-once]: failed to open stream: No such file or directory in /home/acquirev/public_html/orion/wp-content/themes/patti/framework/ReduxFramework/ReduxCore/inc/scssphp/scss.inc.php on line 3
Warning: include_once() [function.include]: Failed opening ‘__DIR__/src/Colors.php’ for inclusion (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/acquirev/public_html/orion/wp-content/themes/patti/framework/ReduxFramework/ReduxCore/inc/scssphp/scss.inc.php on line 3
Warning: include_once(__DIR__/src/Compiler.php) [function.include-once]: failed to open stream: No such file or directory in /home/acquirev/public_html/orion/wp-content/themes/patti/framework/ReduxFramework/ReduxCore/inc/scssphp/scss.inc.php on line 4