jwswordpress
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Two column Bottom widget area but single column content area<div style="float:left; width:33%;"><center><a href="Link to site"><img src="url" alt="" title="Logo name" width="98" height="91"/></center></a></div> <div style="float:left; width:33%;"><center><a href="Link to site"><img src="url" alt="" title="Logo name" width="98" height="91"/></center></a></div> <div style="float:left; width:33%;"><center><a href="Link to site"><img src="url" alt="" title="Logo name" width="98" height="91"/></center></a></div>
This is three images spaced evenly. Not sure what kind of theme you have but I use the Weaver theme which is very customizable and there is place you can put the above code for your footer without editing the footer.php file.
Forum: Fixing WordPress
In reply to: Two column Bottom widget area but single column content areaI think I have it close but I’m not seeing the widget areas in the widget settings under appearance?
I’m using the Weaver theme and the TTW_Trans is how it’s done in that theme. My two widget areas (similar to the footer widgets):
// Area B1, located at the bottom left side of the page. Empty by default. register_sidebar( array( 'name' => __( 'The left bottom widget area', TTW_TRANS ), 'id' => 'left-bottom-widget-area', 'description' => __( 'The left bottom widget area', TTW_TRANS ), 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 'after_widget' => '</li>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); // Area B2, located at bottom right side of page. Empty by default. register_sidebar( array( 'name' => __( 'The right bottom widget area', TTW_TRANS ), 'id' => 'right-bottom-widget-area', 'description' => __( 'The right bottom widget area', TTW_TRANS ), 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 'after_widget' => '</li>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) );
the code in my new template file near the bottom:
</div><!-- #content --> <?php weaver_put_wvr_widgetarea( 'left-bottom-widget-area','right-bottom-widget-area'); ?> </div><!-- #container --> <?php get_footer(); ?>
My site is still functional that’s why I think I’m close… ??
Forum: Fixing WordPress
In reply to: Two column Bottom widget area but single column content areaCan you suggest some tutorials on how to do this? I’m pretty new to this stuff. Would this be done on the page itself or would I create the new widget areas in the functions.php file?
If I have to call the widget areas in the template that I want them to appear and I use this template for multiple pages but I only want the custom widget area on one of these pages then I would have to create a new template correct?
Forum: Fixing WordPress
In reply to: Removing link from thumbnail?Easy fix. Just add onclick=”return false” at the end of href.
Forum: Fixing WordPress
In reply to: Removing link from thumbnail?I like the script because its simple. I have tried the nextgen gallery and there were to many things that I wanted to change. The images are also preloaded in the script so the page does not refresh every time you click an image (at least that’s what it does in that example) Thanks for your help. I should probably ask the people who wrote the script in the first place… ??
Forum: Fixing WordPress
In reply to: Removing link from thumbnail?The mouseover effect still works but if I put text in there the text links to the image. The idea was to have thumbnails as selectors and larger image being the display area.
Is there a way to disable links in a WP Table Reloaded cell?
Forum: Fixing WordPress
In reply to: Changing the title of the page in the browser tabYeah. I got it to work thanks.
Forum: Fixing WordPress
In reply to: Changing the title of the page in the browser tabIm using the Weaver twenty ten theme and Weaver provides a place in the appearance settings to make all your changes there. I have reloaded the original style.css over the one that I made changes to and got it back to where I had it before. Thanks though. It’s only the style.css file that I shouldn’t edit correct?
My Site: REA
Forum: Fixing WordPress
In reply to: Removing link from thumbnail?I’m using WP Table Reloaded and a script by dynamic drive: Script
the code for the thumbnail is in one cell of WP Table Reloaded:
<a href="https://renewableassociates.com/wordpress/wp-content/uploads/2011/02/Lemelson-Front-f.jpg" rel="enlargeimage" rev="targetdiv:loadarea"><img src="https://renewableassociates.com/wordpress/wp-content/uploads/2011/02/Lemelson-Front-tn.jpg" alt="" title="Lemelson Front" width="94" height="94" size-thumbnail wp-image-413" /></a>
Forum: Fixing WordPress
In reply to: Adding a script to wp weaver twenty tenGot it. the script needs to be placed after the <style> section in the <head> area or the Weaver advanced options.
Forum: Fixing WordPress
In reply to: Adding a script to wp weaver twenty tenPretty much lost on this one. I have read a bunch of stuff on including jQuery in wordpress, where to place scripts and so on and really have no idea. Any help would be greatly appreciated.
Forum: Fixing WordPress
In reply to: Changing the title of the page in the browser tabDo I need to copy over only my style.css file into my child theme or do I need to copy over every file that I have made changes to? header.php, footer.php, template files, ect?
Can anybody provide some links or clues to hiding my site title and site description from graphical browsers?
Thanks
Forum: Fixing WordPress
In reply to: Creating custom search result template pageSo I changed the code near the top of the search.php file from:
<div id=”container”>
to
<div id=”container” class=”one-column”>
and at the end changed
<?php get_sidebar(); ?>
to
<!–<?php get_sidebar(); ?>–>
Works great.