joannemojo
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Online Store] Error when trying to delete categoriesIf I went to the individual items and deleted them it worked, but not if the categories have items in them.
Thanks for the quick reply and looking into the issue. 🙂 If I can get it sorted on the site I’m currently working on I have plans to use it on other sites as I have always liked OSCommerce and it’s great having it as a WP plugin.
Forum: Fixing WordPress
In reply to: Can't view pages since updateUpdate:
I looked on http://codex.ww.wp.xz.cn/Pagination#Troubleshooting_Broken_Pagination and tried to deactivate all plugins but it made no difference – even with all deactivated the issue remained.
I then change the permalinks to ‘default’ which seemed to work. That’s no use for me though as I need to have the URL show the section (albums, singles etc) and then the page (so it’s …album/name etc)
Forum: Themes and Templates
In reply to: [Xin Magazine] Images not showing in sliderI’ve done that. All posts have a featured image set as standard when I post them.
Forum: Themes and Templates
In reply to: [Xin Magazine] Images not showing in sliderI’m having the same problem @ http://www.mmmboptastic.com but on my other site @ http://www.marcusfosterfans.com it’s working ok (as far as I can see).
Forum: Themes and Templates
In reply to: [Custom Community] "Theme Settings" missing optionsJust found I have the same problem this morning.
http://www.marcusfosterfans.comForum: Themes and Templates
In reply to: [Custom Community] No title for site when using CCThanks for your reply. I added the Yoast SEO plugin and it’s fixed the problem.
Forum: Themes and Templates
In reply to: [Graphene] Category links not working?After the most recent update it appears to have been fixed. Now just the gallery doesn’t work… it’s one thing after another. haha.
Forum: Themes and Templates
In reply to: [Graphene] Images GalleryHere’s an example of the problem: http://www.mmmboptastic.com/site/2013/07/20/photos-hanson-holds-press-conference-in-rio-de-janiero/
That page was done with ‘insert gallery’ for the images. It’s not a gallery plugin, it’s just the standard one with the media files on wordpress.
Forum: Themes and Templates
In reply to: [Graphene] Images GalleryI’m having the same problem and it started after the latest update.
Forum: Themes and Templates
In reply to: [Graphene] Category links not working?So presume I’m missing a loop-category.php file? I downloaded the theme from the depository on here so there must be more than just me affected?
Forum: Themes and Templates
In reply to: [Graphene] Category links not working?I’m just seeing all files through ‘editor’ in the admin panel.
Forum: Themes and Templates
In reply to: [Graphene] Category links not working?The only files I have with ‘loop’ in them are:
loop-author.php
loop-children.php
loop-not-found.php
loop-page.php
loop-post-formats.php
loop-single.php
loop.phpForum: Themes and Templates
In reply to: [Graphene] Category links not working?Yes, I have a category.php file.
<?php /** * The category archive template file * * @package Graphene * @since Graphene 1.1.5 */ get_header(); ?> <h1 class="page-title archive-title"> <?php printf(__('Category Archive: <span>%s</span>', 'graphene'), single_cat_title('', false)); ?> </h1> <?php graphene_tax_description(); ?> <?php /** * Run the loop for the category page to output the posts. * If you want to overload this in a child theme then include a file * called loop-category.php and that will be used instead. */ while ( have_posts() ) { the_post(); get_template_part( 'loop', 'category' ); } /* Posts navigation. */ graphene_posts_nav(); ?> <?php get_footer(); ?>Forum: Themes and Templates
In reply to: [Graphene] Category links not working?Also, if you click on the category on each post it doesn’t take you to the actual category and just lists all posts.
So if you click on ‘Jill Elaine Hughes’ category on the top post on the site it doesn’t just show posts within her category.
Forum: Themes and Templates
In reply to: [Graphene] Removing Featured ImageI solved it by adding this custom css
.entry-content .excerpt-thumb { display: none; }