wiresplus
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 2014 image size questionOK, go to dashboard, then pages.
Select the page that your posts go on, and click edit.
Over on the right hand side, there’s a box where you select the template.Forum: Fixing WordPress
In reply to: 2014 image size questionWhoops! sorry, wrong thread! I was also helping someone with woo! Duh, me!
Forum: Fixing WordPress
In reply to: Changing URL of a categoryAnd, how to change the URL to remove “/category/travel/”
‘edit permalinks’ on the edit page screen. But this will temporarily wreck SEO. A good content site can rapidly reappear in google anyway.
So, first make a new page that’s a top level page, and call it photos. Use it from now on.
In header.php, add<?php if (is_page(‘ — ‘)){
<?php wp_redirect( ‘http://www.example.com/photos’, 301 ); exit; ?>
} ?>
<?php endif; ?>That will make the page number — redirect to example.com/photos and update google as well at the same time. To find the page number, go to Dashboard>pages and click edit on the existing photos page. look at the URL: in there will be a page ID or
?page=123bit. pop that number in the code in place of —.Make sense?
Forum: Fixing WordPress
In reply to: Help! I altered PHP and now my domain won't load.Your mistake looks to be the > at the start of your code. should be
<?php echo wp_get_attachment_image( $id, $img_size, array('class' => 'slide', 'alt' => $alt ) ); ?>BTW, use the little ‘Code’ button to post code, as it works better for everyone 🙂
Forum: Fixing WordPress
In reply to: 2014 image size questiondashboard>woocommerce>settings>shipping
Forum: Fixing WordPress
In reply to: Cannot access my site or wp-loginMajik! May the force be with you…!
Forum: Fixing WordPress
In reply to: Cannot access my site or wp-loginI get a form asking about eating out. is that correct, or is there stuff missing?
Forum: Fixing WordPress
In reply to: 2014 image size questionso, set the full width template on your posts page, and all posts will be full width. Does this make sense? Your posts go on a particular page. set that page as full width.
Forum: Fixing WordPress
In reply to: Extra price fieldsOK, so how many different deposit amounts do you have? 30?
like, 50E for any product between 75 and 125E, 70E for products between 126E and 150E etc etc?This can be done with ‘shipping tax’ which is added after the sales tax.
Just need to set up lots of shipping classes, and set the products by class.
Forum: Fixing WordPress
In reply to: Changing URL of a categorya 301 redirect is what you need. go to WP Docs and search 301 redirect.
Forum: Fixing WordPress
In reply to: URL rewriting helpThey do it with URL masking at domain level. Doing it at code level will simply cause erratic behavior
Forum: Fixing WordPress
In reply to: Change position of header picture and sitetitle also change colors ?Go to appearance>background and set the background colour.
If you want a gradient background, you’ll need to create a tall narrow image of the gradient, and set it as background image and ‘Tile Horizontally’. Set it as fixed position, and that’s the background done.The layout stuff is, as @penina says, kinda buried in css and php files.
Forum: Fixing WordPress
In reply to: Picture not showing upum… which post are you having trouble with?
Forum: Fixing WordPress
In reply to: Simple buy and sellForum: Fixing WordPress
In reply to: Event orginiserConditional Tags. See the codex.
You need something like
<?php if(is_page()){
<!– do nothing –>
} else {
<!– get sidebar code–>
} ?>
in your page.php file. find the bit where it says<?php get_sidebar(); ?>and make it say<?php if(is_page(—)){
} else {
<?php get_sidebar(); ?>
} ?>
<?php endif; ?>where — is the page number of the relevant page