cclass
Forum Replies Created
-
Having the same issue, which started suddenly (no updates to the currency plugin have been made) a few weeks ago. No other currency related changes were made and sometimes another user can generate the invoice without any problems (one user might try to generate and end up with the wrong currency but another can generate an invoice for the same order with the correct currency). The order in WooCommerce shows the correct currency but the invoice isn’t pulling them through.
Forum: Plugins
In reply to: [The Events Calendar] Cannot read property 'innerHTML' of nullThanks, George. I will do that now.
Just to add to this, I don’t think the function tribe_tmpl is working and/or being called as, for example, the script with id ‘tribe_tmpl_month_mobile_day_header’ is not being injected onto the page.
Thanks again
Chris
Forum: Fixing WordPress
In reply to: 404's going to page.phpNot sure if this is related, or just the default that I need to change, but when I view posts by month or year they show up using page.php as well.
For example, if I went to http://site.com/2013/01 I would see all the posts for January but they would use page.php. I can fix this by using
is_archive()but would prefer they go to another template.Forum: Fixing WordPress
In reply to: 404's going to page.phpI use this code anytime I start the loop:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> stuff <?php endwhile; endif; ?>More specifically this is used on index.php (the file where my posts are. I have a static home page), page.php, single.php and any custom page template.
Forum: Fixing WordPress
In reply to: 404's going to page.phpSo I tried deleting all content from page.php and 404’s still go to this page (indicated by a blank page…)
How would issues with the loop affect 404’s?
Forum: Fixing WordPress
In reply to: 404's going to page.phpYes, it is a custom theme.
Forum: Fixing WordPress
In reply to: 404's going to page.phpHmm..I’m new to theme development so forgive my ignorance but I don’t believe this is a child theme. The theme I’m developing is the only theme in that directory and (I don’t think, at least not intentionally) does my theme inherit anything from another theme.
Forum: Fixing WordPress
In reply to: 404's going to page.phpBy custom template directory, I meant the directory where my custom theme is located (e.g. wp-content/themes/themename/404.php)