tinuviel
Forum Replies Created
-
Forum: Plugins
In reply to: Podpress File Size limitIf not PodPress, is there another podcasting plugin that will allow higher file sizes? I really need some help, please… none of the plugins listed show what the file size limits are.
Forum: Plugins
In reply to: Need help finding multiple feed reader for sidebarOkay, so I’ve found RSS Mixer https://www.ads-software.com/extend/plugins/rss-mixer
However, it only has one line for an RSS feed. How do I get my client to enter multiple RSS feeds?
Forum: Fixing WordPress
In reply to: Reverting from 2.8 to 2.7.1Okay no, it’s fine – anyone else who needs to revert, just upload 2.7.1 back, then re-upload the backups of the files the installation above tells you not to delete, go to your wp-admin side and do the db upgrade, and you’re back to a functioning 2.7.1. (At least, that worked for me).
Forum: Fixing WordPress
In reply to: Reverting from 2.8 to 2.7.1Specifically, does anyone know if this will, for certain, break the site? Or has anyone not tried it yet?
Forum: Fixing WordPress
In reply to: Reverting from 2.8 to 2.7.1Is it okay if I didn’t make a backup of my 2.7.1 files before upgrading?
I’d really love to find the solution to Karl19’s originaly problem as well. Unfortunately, the Simple Sidebar Navigation doesn’t work for me, as I need two menus to be generated.
Forum: Fixing WordPress
In reply to: Different templates for static pagesnm, figured it out.
Forum: Fixing WordPress
In reply to: Cross-month archive navigationHi Byron,
Thanks for the advice – I tried it out. I inserted the first code bit before:
<h1 id="post-<?php the_ID(); ?>">
and pasted the second bit after the endwhile, as instructed.
This is on my archive.php page, as it’s for the archive postings that I want this functionality.
However, this results in an emptied sidebar, with the following error in it:
Fatal error: Call to a member function on a non-object in /wp-includes/query.php on line 10Please note the sidebar code is not in archive.php at all, so I’m not sure what’s happening here. Any help is appreciated.
Forum: Fixing WordPress
In reply to: Cross-month archive navigationTo be honest, I’m kind of surprised. Wouldn’t this type of functionality be desirable/default?
Does anyone know of a plug-in that can do this?
Forum: Fixing WordPress
In reply to: How to set up page name file names?All right, so now I have this:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . / [L] </IfModule>
but the URL is still the same: https://myurl.com/index.php/about/… I’m not sure what’s going on.
Forum: Fixing WordPress
In reply to: How to set up page name file names?Still trying to work this out. Are there any good tutorials for this? The help file on the WP page is totally unclear and I don’t understand its instructions.
Thanks.
Forum: Fixing WordPress
In reply to: How to set up page name file names?Right, I’ve set up my .htaccess file to read:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase /index.php/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . / [L] </IfModule>
but my perma URL For pages is still showing up as:
https://myurl.com/index.php/about/instead of
https://myurl.com/about/Why is that happening?
Forum: Plugins
In reply to: Add To Facebook PluginOkay, it came back when I put
add_filter('the_content', 'add_to_facebook');
, but it’s showing up on every page. I’m not using categories, so I’ve removed that from my template. I only want this to show up on blog pages, not on actual pages with static content on them. How would I go about doing that?Forum: Fixing WordPress
In reply to: Limit front page only to one postNo suggestions?
Forum: Plugins
In reply to: Add To Facebook PluginI have a website where I removed the categories and instead only have tags at the end of the post. I put in the code:
add_filter('the_tags', 'add_to_facebook');
to replaceadd_filter('the_categories', 'add_to_facebook');
, and it worked – temporarily. Now, however, it isn’t – but I haven’t changed anything with regards to these two pieces of the template – the tags filter is still present in the template, and the plugin still says the_tags instead of the_categories. I don’t even know what to ask because it’s too baffling.