BoUk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: php function needed – "De-randomize"?Hi,
You can try something like this:
<?php if (have_posts()) : ?> <?php $i = 1; ?> <?php while (have_posts()) : the_post(); ?> <a href="<?php the_permalink(); ?>" class="box col<?php echo $i; ?>"> <span class="title"><?php the_title(); ?></span> <img src="<?php echo get_post_meta($post->ID, 'PostThumb', true); ?>" alt="" /> <span class="ex"><?php the_excerpt(); ?></span> </a> <?php $i++; if ( $i%5 == 0 ) $i = 1; ?> <?php endwhile; ?> <?php endif; ?>
Forum: Themes and Templates
In reply to: error in uploding the themeHi,
I would suggest to login via FTP and delete the Tiga theme first. I believe that your WP installation will be working after this.
Cheers
Forum: Fixing WordPress
In reply to: Would this htaccess redirect work?Hi,
I don’t think it’s a good idea as you would probably ended up with infinite loop.
I would suggest to investigate, what exactly is happening on ‘Extra’ page. Could you paste the URL of the site?
Cheers
Forum: Plugins
In reply to: [WP-Paginate] Range of pagesHi,
I am not familiar with WP Paginate plugin, but might be easier to just use WP Pagenavi plugin instead, which does exactly what you need.
Cheers
Forum: Fixing WordPress
In reply to: Clicking on page 2 redirects to the home pageHi,
Actually when I click the ‘Page 2’ myself, I get 404 error. That makes a difference. First I would suggest to update permalink structure.
Please go to Settings -> Permalinks and click update.Cheers
Forum: Fixing WordPress
In reply to: WordPress site flickers on Firefox when theme is modifiedHi,
Would you mind posting the site URL?
Thanks
Forum: Plugins
In reply to: My own PHP page and WordPressHi,
What exactly do you mean by using your ‘own PHP page’? What is that page going to be used for?
Cheers
Forum: Themes and Templates
In reply to: Main Menu ProblemGlad it worked for you. If you have any further questions, just let me know.
Cheers
Forum: Themes and Templates
In reply to: Main Menu ProblemHi Graham,
it’s very likely caused by the logo being too big and absolutely positioned above the navigation. Can you try to temporary delete the logo and then we can investigate further?
Cheers
Forum: Fixing WordPress
In reply to: Media limits?Hi Andy,
WordPress running in multisite allows to set quote for each site. Isn’t this a case? Aren’t you running a WP in multisite environment?
Cheers
Forum: Fixing WordPress
In reply to: Need to turn off email notifications for new postsHi,
functions.php is theme file. You don’t find it anywhere in admin.
However there’s a possibility to view the content of theme files straight from admin. Please head to ‘Appearance’ -> ‘Editor’ On the right hand side, you should be seeing the list of theme files. One of them is likely going to be called functions.php Please try to click that file and view the content. Even if you don’t understand the PHP, you should be able to see lines of code which are responsible for mailing once the new post is published.
Forum: Fixing WordPress
In reply to: Need to turn off email notifications for new postsHi,
Did you try to follow my initial advice and looked into functions.php?
Cheers
Hi,
You have to decide, what are your preferences. If you want to have posts nicely aligned next to each other, I am afraid it won’t be really possible.
I can see folowing solutions here:
- You leave it as it this and you will limit the content of posts on this page to be always plus/minus same size. Can help with that, if you wish?
- We can get rid off aligning posts, that will remove the gap , but posts won’t be nicely aligned from my point of view. I am pretty sure you wouldn’t like it too.
If it’s not much trouble for you, please make the site live somewhere and I can give you exact pointers, what to do to achieve required look and feel.
Cheers
Hi,
No probs. I can see there’s still a gap below the share buttons which I am pretty sure can be reduced. This can be definitely done by CSS tweak. Is there any chance to see the theme live in action, so I can tell what needs to be adjusted?
Cheers
Forum: Fixing WordPress
In reply to: Need to turn off email notifications for new postsAdmastar1, I think this will disable just the notifications related to new comments, not to new posts.