Andy Woggle
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Remove Page Title but not Post TitleI *hope* this is what you mean..Please forgive my noobiness if it isn’t..
The Audio Page code <p style="text-align: justify;">I come from a musical family- nearly all of us have some kind of musical quirk in our clan- so it was inevitable that I'd end up doing something musical at some point in time.. I was trained to play the piano as a child, which never really got very far,and come the age of 15 thought I'd put my hand at playing the guitar... Again it never really got very far, into a couple of not especially good bands, one funny one that shall remain nameless which got us some comedy gigs... And then it all stopped for a while, barring a dabbling at making bad dance music on an even worse computer in the late 90s..</p> <p style="text-align: justify;">And then I saw Two Many DJs...</p> <p style="text-align: justify;">They blew me away.. But after playing "<a title="THAT 2 Many DJs CD...." href="http://www.discogs.com/2-Many-DJs-As-Heard-On-Radio-Soulwax-Pt-2/release/49619" target="_blank">THAT</a>" CD of theirs to absolute death, I had a game-changing thought.. "Hang on, I've got a good musical ear.. I can use computers.. I've got a sense of humour.... I CAN DO THAT"</p> <p style="text-align: justify;">So I booted up a copy of Soundforge, a copy of Acid and a rake of plug-ins.. And the next thing I'm aware of is having a legit copy of Traktor Pro in my arsenal too, and was playing my heinous mix of music to anyone and their dog that would listen...</p> <p style="text-align: justify;">Places I have played at include-</p> <ul style="text-align: justify;"> <li><span class="Apple-style-span" style="line-height: 12px;">Strawberry Fair,Cambridge</span></li> <li>Shambala Festival</li> <li>Beautiful Days Festival,Devon</li> <li>Alchemy Festival</li> <li>Friekfest, Amsterdam</li> <li>Not forgetting of course, several hilariously good times had at <a title="Bristol Roller Derby" href="http://www.bristolrollerderby.com/" target="_blank">Bristol Roller Derby</a> afterbout parties too, amongst many others.</li> </ul> <p style="text-align: justify;">If you want me to play your event/festival/party, drop me a line from the Contact section and we shall work something out...</p>Forum: Fixing WordPress
In reply to: Remove Page Title but not Post Titlewhich page do you need to see (sorry,I am really new to WP although getting there)
Forum: Fixing WordPress
In reply to: Remove Page Title but not Post TitleNothing happened 🙁 Can you suggest a CSS editor?The one I just tried didn’t seem to affect anything (WP LIVE CSS)
Would there be a plug-in that could edit the css of each post?I guess this is probably just a run-around and not advisable,but I’m really struggling on this bit..
Forum: Fixing WordPress
In reply to: Remove Page Title but not Post TitleNot that I am aware of-Plug ins I’m using are -Contact Form/Captcha, Hide Title (which I can turn off if I can find a solution),Per Page sidebars, and a few media plugins
Forum: Fixing WordPress
In reply to: Remove Page Title but not Post TitleWorked out how to post code!! Here is the code of my page.php file-
<?php /** * page.php * * The single page template file, used to display single pages. * * @package Shiword * @since 1.00 */ get_header(); ?> <?php shiword_get_layout( 'page' ); ?> <div class="<?php shiword_content_class(); ?>"> <?php if ( have_posts() ) { while ( have_posts() ) { the_post(); ?> <?php shiword_hook_entry_before(); ?> <div <?php post_class( 'sw-entry-standard' ) ?> id="post-<?php the_ID(); ?>"> <?php shiword_hook_entry_top(); ?> <?php shiword_post_title( array( 'featured' => 1 ) ); ?> <?php shiword_hook_like_it(); ?> <?php shiword_extrainfo( array( 'auth' => 0, 'date' => 0, 'tags' => 0, 'cats' => 0 ) ); ?> <div class="storycontent"> <?php the_content(); ?> </div> <div class="fixfloat"> <?php wp_link_pages( 'before=<div class="meta sw-paginated-entry">' . __( 'Pages', 'shiword' ) . ':&after=</div>' ); ?> </div> <?php shiword_hook_entry_bottom(); ?> </div> <?php shiword_hook_entry_after(); ?> <?php shiword_get_sidebar( 'single' ); // show single widget area ?> <?php comments_template(); // Get wp-comments.php template ?> <?php } ?> <?php } else { ?> <p><?php _e( 'Sorry, no posts matched your criteria.', 'shiword' );?></p> <?php } ?> </div> <?php shiword_get_sidebar(); // show sidebar ?> <?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Total Newbie-Help with Child Theme please?Forgot to say “SOLVED”:D
Forum: Fixing WordPress
In reply to: Total Newbie-Help with Child Theme please?Thanks for your reply!! I’ve just cracked it now.(I do have an understanding of CSS,just not the way WordPress operates-it’s all a whole new learning curve!!(and one I’m enjoying so far.No more Dreamweaver!!)
I’ve managed to create the child theme with minimal fuss (it didn’t like textedit on Mac,but that was the only real hitch),I lost a bit of formatting in the process,but only a small bit!!So all is good
Thanks for getting back to me!!
Andy