BoUk
Forum Replies Created
-
Forum: Plugins
In reply to: My own PHP page and WordPressHi,
I am not following. Did you read my answer above? Did you create the page as suggested? Did you create the file as suggested?
Thanks
Forum: Plugins
In reply to: My own PHP page and WordPressHi,
Did you also created the WordPress page called Questions & Answers with the slug questions-answers? Did you name the php file page-question-answers.php?
If so, anything you code/write into that php file will appear on the Questions & Answers page.
Cheers
Forum: Themes and Templates
In reply to: Comments not working in custom themeRob,
I think I got it working. You are using lot of custom queries. Haven’t investigated it into detail, where the problem is, but using wp_reset_query() before loading the comments did the trick.
Cheers
Forum: Themes and Templates
In reply to: Comments not working in custom themeJust sent you an email.
Thanks
Forum: Themes and Templates
In reply to: Comments not working in custom themeWell, there really isn’t any other settings. The only other general settings is located at Settings -> Discussion but guess it’s enabled there. If it’s not too much trouble for you, could you let me have the theme you are developing? [mod: don’t solicitate ont-to-one support; please keep the support in the forum] I would take a quick look.
Cheers
Forum: Fixing WordPress
In reply to: Clicking on page 2 redirects to the home pageDamir,
Having the code of the theme files mentioned above would help. One thing, that could be causing is that slider on the homepage. Is there any option in theme to disable this slider? If so, let’s try that out. It would help us to isolate the problem.
Cheers
Forum: Fixing WordPress
In reply to: Trouble finding code to edit.Hi,
Could you please post the link to your site + let me know, where would you like the secondary menu to appear? Are you managing your menus through Appearance -> Menu ?
Thanks
Forum: Themes and Templates
In reply to: Comments not working in custom themeNo problem :-). The theme file itself is absolutely fine. Well in that case, I don’t really understand, why the site comments would behave differently with default theme. Just to double check, if you go to edit post/page you want the comment form and comments to appear at, can you make sure to comments are allowed for that post/page?
Thanks
Forum: Themes and Templates
In reply to: Comments not working in custom themeHi,
Is there a template file called comments.php in your custom theme directory? If so, could you post the content of this file here?
Cheers
Forum: Plugins
In reply to: My own PHP page and WordPressHi,
This would be probably best to implement as an own plugin. If you are familiar with PHP, it shouldn’t take you a long time to familiarize yourself with the WP API and code the functionality yourself, with own code, but bonding it with WordPress in correct way.
Little bit more ugly way of doing it, would be to create a WP page called for example ‘Questions & Answers’ with slug question-answers and create in your theme directory file called page-question-answers.php This is one of the possible ways, how to attach specific template to specific page. Then you can do whatever you want in page-questions-answers.php file to achieve functionality you are up to.
Let me know if this helps.
Cheers
Forum: Fixing WordPress
In reply to: Clicking on page 2 redirects to the home pageHi Damir,
No problem :-). I thought you might be missing my posts.
Well in that case, I would guess, it’s somehow related to code of the homepage itself, as the pagination itself works fine, not just tags, but have tried on search page and work OK there as well.
Difficult to investigate now without seeing the code of the theme, but how is the theme itself set? I mean how is the section Settings -> Reading being set? Latest post or specific page? Would you be able to post here the code of index.php, front-page.php (if exists) and home.php (if exists)?
Cheers
Forum: Fixing WordPress
In reply to: BannerHi,
If you have a look into the stylesheet of your theme (style.css), there are these lines:
.blog-post, #bannerspace_wrap, .all-product { background: -moz-linear-gradient(center top , #FDFDFD 0%, #EEEEEE 100%) repeat scroll 0 0 transparent; border: 1px solid #FFFFFF; border-radius: 5px 5px 5px 5px; box-shadow: 0 1px 3px #6F6F6F; margin-bottom: 20px; padding: 15px; }If you play with the border definitions, it should do the job for you.
Cheers
Forum: Fixing WordPress
In reply to: Clicking on page 2 redirects to the home pageDamir,
Did you try to update the permalinks as I advised? Might be also worth to try with default WP permalinks structure.
Cheers
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