carrieoke13
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Navigation will not work on blog pageThis is the ugly permalink for the blog page:
Forum: Fixing WordPress
In reply to: Navigation will not work on blog pageThank you – I tried this, but it is still doing the same thing, just with the default permalinks now.
Forum: Plugins
In reply to: [Zotpress] multiple accounts synced erased all imported itemsHi, Katie,
I filled out the contact form. Thanks!Forum: Plugins
In reply to: [Zotpress] multiple accounts synced erased all imported itemsHi Katie,
Yes, we did use the userid attribute. Thanks!Forum: Networking WordPress
In reply to: lost my password link gives invalid key every timeI’ve updated our install to 4.0 and this issue has been resolved.
Forum: Themes and Templates
In reply to: [Twenty Twelve] Show comments links even if comments are closed?I figured this out. In content.php, I commented out
<?php if (comments_open() ) :?>
and the corresponding end tag, so the comments number shows regardless.Forum: Themes and Templates
In reply to: Comments template won't go away!As it happens pretty much every time I post in here, I solved the problem right after I posted my question. I copied the template file and renamed it something completely different, and deleted the old template, and that did the trick.
Forum: Plugins
In reply to: [Dropdown Menu Widget] Plugin won't work after upgrading to 3.5I had a caching plugin that was minifying my CSS, it seems to have resolved the problem to turn that off.
Forum: Fixing WordPress
In reply to: Widgets not working after upgrade to 3.5Aaaaand as I soon as I posted, they started working again. This usually happens to me. Ha!
Forum: Themes and Templates
In reply to: toommorel lite theme apostrophe glitchI don’t know if you ever found a solution, but if you download version 1.3.3 the glitch is fixed.
Here’s a forum post about it:
https://www.inkthemes.com/supportforum/topic/major-issues-list-love-the-theme-butand here’s the download link for 1.3.3
https://www.inkthemes.com/wp-content/versionupdate/toommorel-lite.1.3.3.zip
Forum: Themes and Templates
In reply to: Category Archive page is breakingTypical – as soon as I posted this, I saw the problem in the code. there was an extra </div> in there. Sorry ??
Forum: Themes and Templates
In reply to: Display all subpages instead of just fiveokay – I finally got this working. I had to add ‘numberposts’ => 30, to the code and it’s showing all seven subpages now. hooray! thanks so much for your help.
Forum: Themes and Templates
In reply to: Display all subpages instead of just fiveokay. I tried switching to Twenty Ten, and created a custom page template by just adding this code: ` <?php
$args = array(
‘orderby’ => ‘menu_order’, // Allows users to set order of subpages
‘order’ => ‘ASC’,
‘post_parent’ => $post->ID,
‘post_type’ => ‘page’,
‘post_per_page’ => 25,
‘post_status’ => ‘publish’); $postslist = get_posts($args);
foreach ($postslist as $post) : setup_postdata($post); ?><div class=”picture left”>
<a href=”<?php the_permalink(); ?>” title=”<?php the_title(); ?>”>
<?php the_post_thumbnail(‘design-thumb’); ?>
</a><br /><?php the_title(); ?></div>`to the regular page.php template. it’s still only showing five of the thumbnails: https://www.amyherzogdesigns.com/designs/sweaters/
and you can see in the dropdown menu, that there are 7 subpages of sweaters.
Forum: Themes and Templates
In reply to: Display all subpages instead of just fiveTried deactivating all plugins and there was no change.
Forum: Themes and Templates
In reply to: Display all subpages instead of just fivehere’s the code for the entire page: https://pastebin.com/yr1xt7Tz
thanks for looking ??