hausjell
Forum Replies Created
-
Forum: Your WordPress
In reply to: Reviews welcome – picture, video and girls blog/site– Created a new content-search.php to rework the search result layout
– Redesigned View full post link/button
– Further work to meta-entry and two more added
– Created floating feedback buttonForum: Your WordPress
In reply to: My Newest WordPress Site+1 to the above suggestion. Apart from that nice colour choices.
Although just checking, the background image you are using has a colour of #F3EEE0 and the page has a colour of #F1EBD9.
Oops, sorry for the double post!
Forum: Your WordPress
In reply to: My Newest WordPress Site+1 to the above suggestion. Apart from that nice colour choices.
Forum: Your WordPress
In reply to: Please review my site www.freshiceandwater.comIt’s obviously aimed at an American market and does have a very American “feel” to it, however it’s straight to the point and clear.
It works nicely however I would change some of the text on the other pages to have a white bg and smaller font. A catching front page is fine but with all the other pages styled in a similar fashion it comes across as one of the quick sales websites.
Nice job though.
Forum: Your WordPress
In reply to: Reviews welcome – picture, video and girls blog/siteI’ve made a few changes.
– Redesigned the front page post headers
– Added EU Cookie plugin
– Created new meta areas for the date on the main page
– Created new meta areas for the images posted and date on posts
– Added custom php function to count images from gallery and add the total to the end of the post title (this was done manually before).
– Removed the smiley face down and replaced both faces with a single thumbs up.
– Installed a plugin to auto load images as the user scrolls and customised to exclude areas.
– Moved the sumbit content button.Ah found it sorry, was in content-single.php.
For anyone else with a similar set up wishing to do the same thing,
<?php the_content($stripteaser, 1); ?>
<?php /** * The Template for displaying all single posts. * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ get_header(); ?> <div id="primary"> <div id="content" role="main"> <?php while ( have_posts() ) : the_post(); ?> <nav id="nav-single"> <h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3> <span class="nav-previous"><?php previous_post_link( '%link', __( '<div id="nav_left"></div>', 'twentyeleven' ) ); ?></span> <span class="nav-next"><?php next_post_link( '%link', __( '<div id="nav_right"></div>', 'twentyeleven' ) ); ?></span> </nav><!-- #nav-single --> <?php get_template_part( 'content', 'single' ); ?> <?php comments_template( '', true ); ?> <?php endwhile; // end of the loop. ?> </div><!-- #content --> </div><!-- #primary --> <?php get_sidebar(); ?> <?php get_footer(); ?>
I can’t seem to find where to put it on there, any ideas? Thank you for your reply btw.
Forum: Your WordPress
In reply to: Reviews welcome – picture, video and girls blog/siteThank you for the feedback Xarran, I’ve removed the “Share” button and and replaced it with a “Like” button.
As for the text, it’s a picture site mostly – there is some text in the posts but it’s mean’t to be plain and easy to navigate.
Forum: Your WordPress
In reply to: Reviews welcome – picture, video and girls blog/siteOh, oops!
Forum: Plugins
In reply to: [Sharebar] Here's how to adjust the vertical marginOh, here is the example – https://www.epicy.com, click on a post and you will see it working.
Forum: Fixing WordPress
In reply to: Gallery -> Full Size and No link as default?Nevermind, found the solution in media.php
For anyone else wanting to do the same:
Find:
extract(shortcode_atts(array(
Underneath you will see
'size' => '',
Replace with:
'size' => 'full',
Find:
$link = isset($attr['link']) && 'file' == $attr['link'] ? wp_get_attachment_link($id, $size, false, false) : wp_get_attachment_link($id, $size, true, false);
Replace with:
$link = wp_get_attachment_image($id, $size);
The result: You can upload multiple images, add to gallery and that’s it – it will automatically create a 1 column gallery with full size images which are non linkable.
Obviously not for everyone but it’s what my site needed.
Forum: Plugins
In reply to: [iSlidex] [Plugin: iSlidex] Custom Slide LinkManaged to get around this using a plugin.