notobella
Forum Replies Created
-
I also received a fatal error and was unable to reach the developer website so I had to rollback to the previous free version. I have pro – but it’s broken as well.
Forum: Plugins
In reply to: [W3 Total Cache] W3 TOTAL CACHE changed my fonts@caseyfriday – after completely disabling, deactivating, and deleting the plugin and all of the other little things it installs on the server for you to run properly, I also turned off all of the other plugins and reactivated them one by one. It seems as though there was an additional plugin that was keeping some CSS minified where I didn’t want it to be and I had to delete it too. With both of those gone, by site’s font issues are fixed. I also re-uploaded the theme files AND wordpress files, just in case.
Forum: Plugins
In reply to: [W3 Total Cache] W3 TOTAL CACHE changed my fontsI am having the same problem. Even after disabling and removing all elements of w3tc – my fonts are still messed up.
BUMP.
Need solution!
The last version which allowed author to be changed was 2.0.33
How do I request this feature be added back, it’s important for how I use the plugin and the website for my client.
The last version which allowed author to be changed was 2.0.33
How do I request this feature be added back, it’s important for how I use the plugin and the website for my client.
This is not resolved. Until I updated to the most recent version of NextGen I was able to update the author for galleries, and I cannot do it now. Bumping this topic for solution!
Thanks.DougJoseph – I’m still having this issue and my PNGs are saved as PNG-24 🙁
Thanks! 🙂
Brilliant!
Forum: Plugins
In reply to: nextgen-gallery image upload not workingapparently my upgrade wasn’t complete. all fixed now.
Forum: Themes and Templates
In reply to: Kubrick: Need a page navigation barOh lord, this saved me sooo much time. thank you so much alchymyth.
You wouldn’t happen to have the extended code to include parent and child pages for drop down menu, would you?
Forum: Fixing WordPress
In reply to: Blog page missing post titlesFIXED!
I had no idea (being relatively new to custom wordpress themes) that a home.php file would override the index.php file.
All of my theme page files remove the title – i just had to rename my home.php and voila… site perfecto!
Thanks!
Forum: Fixing WordPress
In reply to: Blog page missing post titlesThat’s what I’ve learned.. all of my code is correct, but the blog posts page isn’t displaying correctly.
The site is set up to have a static home page – in doing this, you have to tell wordpress where you want the blog posts to go – which i’ve done – however, the post(s) aren’t displaying the title and the small text.
If you were to be able to click on the title of the post (as on a regular blog) you’d go to a single post page – this is showing perfectly. I’m not sure what’s happening between the blog posts page and the single post page.
static home page: http://pamfa.com/pamfa-wp/
static blog posts page: http://pamfa.com/pamfa-wp/?page_id=13
single posts page(s): http://pamfa.com/pamfa-wp/?page_id=1
http://pamfa.com/pamfa-wp/?p=71
http://pamfa.com/pamfa-wp/?p=72You’ll notice that the “title” for the first blog post (Welcome to PAMFA CLOTHING!), second blog post (test1) and third blog post (test2) are not showing up… but if you were to go to any of those single post pages – it’s displaying properly.
This is what I can’t figure out. 🙁
Forum: Fixing WordPress
In reply to: Blog page missing post titleshi plz – thank you for your time. The blog page (id=13) is the first blog actually – it’s the first post I made… you can’t tell, because there isn’t a header or small text 🙁
here is the code from my index.php:
<?php /** * @package WordPress * @subpackage Default_Theme */ get_header(); ?> <div id="content" class="narrowcolumn" role="main"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small> <div class="entry"> <?php the_content('Read the rest of this entry »'); ?> </div> <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p> </div> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> </div> <?php else : ?> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isn't here.</p> <?php get_search_form(); ?> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>here is the code from my page.php
<?php /** * @package WordPress * @subpackage Default_Theme */ get_header(); ?> <div id="content" class="narrowcolumn" role="main"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><?php the_title(); ?></h2> <div class="entry"> <?php the_content('<p class="serif">Read the rest of this page »</p>'); ?> <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> </div> </div> <?php endwhile; endif; ?> <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Blog page missing post titlesI want the small text and the title of each post on the blog posts page. It is already on the single-post page which is fine – but the blog posts page isn’t showing either the small text or the title, and it needs to. (http://pamfa.com/pamfa-wp/?page_id=13) This is the blog posts page – you’ll see there is no title and no small text, even though i did not remove this function from the page.