cerysjones
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Adirondack] Wrong theme shows on homepageThat’s odd, I don’t even have that theme installed! Thank you, I will look into it.
Forum: Fixing WordPress
In reply to: Get the term (custom taxonomy) name outside of the loop?This is brilliant, thank you. I had most of it, I was just missing one thing ??
Out of curiosity, does anyone know how you would get this to output only the slug for the current page’s taxonomy?
Hi Dave,
Wanted to let you know that the update is having the same effect for me as it is for mstng67. The jquery paths are correct now but it’s not actually loading results.
Main site: https://brightonbookfestival.com/
Wordpress install: https://brightonbookfestival.com/bu15cu17Hope this helps you figure it out! xx
Forum: Hacks
In reply to: how to get an admin theme to only load for 'author'?Thanks, but the problem is with an admin theme – it’s a theme for the backend, the dashboard, not the public site!
Forum: Themes and Templates
In reply to: Posts cutting off abruptly on main page viewIn case anyone else has this problem, I’ll quickly show how I fixed it:
HandySolo is right that what you want to change is “the_excerpt()” to “the_content()”, HOWEVER if you search for that term nothing will come up because of some interesting coding on the designers part.
<?php $hemingway->excerpt() ?>
This is what you want to edit. In order to make it show the whole post, you have to remove that string, and write a new one:<?php the_content(); ?>
Aaaand, that’s it. You’re done. I know there was at least one other person asking about this particular problem whose question was never answered (and yet one after he asked was answered. Right now I am not very impressed with this designer, even while I appreciate the work he pu into his themes.) so I hope he finds this useful!
Forum: Themes and Templates
In reply to: Posts cutting off abruptly on main page viewThanks for the reply.
I couldn’t find the code “the_excerpt()” anywhere- closest I came was “<?php $hemingway->excerpt() ?>”I tried replacing “excerpt” with “content()” and “the_content()” but that just makes the page cut off after the title…
Here’s the block of code that comes before that, if it’s any help:
<?php if (have_posts()) : ?> <?php $first = true; ?> <?php while (have_posts()) : the_post(); ?> <div class="story<?php if($first == true) echo " first" ?>"> <h3><?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></h3> <?php $hemingway->excerpt() ?>