baudesign
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: RSS not displaying full textI have exactly the same problem as brittanie on
https://magazine-audio.com/feed/I thought for a moment that this would have something to do with my template, showing the_excerpt instead of the_content, but no.
Any idea?
Forum: Fixing WordPress
In reply to: Template tag wp_list_authors not parsed!Pff! This sucks, I just upraded to the latest release and the bug is still there.
Forum: Fixing WordPress
In reply to: Template tag wp_list_authors not parsed!Il est navrant de constater que personne ne puisse — ou ne veuille — répondre à cette question. C’est pourtant un bogue qui pourrait intéresser toute la communauté WordPress.
Forum: Fixing WordPress
In reply to: Template tag wp_list_authors not parsed!Indeed uberdose, the if branch is reached, up to the “:”. Then, we should see the “List of authors”, but we don’t.
I put the code in my index.php file like you suggested, and it still does not work.
Forum: Fixing WordPress
In reply to: Template tag wp_list_authors not parsed!Is there anyone at WordPress development that can answer this question?
Forum: Fixing WordPress
In reply to: Template tag wp_list_authors not parsed!After a bit of discussion, it seems that the problem is on the WordPress side. Can anybody confirm?
Forum: Plugins
In reply to: managing page order?Just for the information here, if you use the widgets.php file, the ordering of the pages does not work until you change just a bit of code (that I found scanning the Internet with Google), that is:
Replace:
function widget_pages($args) {
extract($args);
$options = get_option('widget_pages');
$title = empty($options['title']) ? __('Pages') : $options['title'];
echo $before_widget . $before_title . $title . $after_title . "<ul>n";
wp_list_pages('title_li=');
echo "</ul>n" . $after_widget;
}
by…
function widget_pages($args) {
extract($args);
$options = get_option('widget_pages');
$title = empty($options['title']) ? __('Pages') : $options['title'];
echo $before_widget . $before_title . $title . $after_title . "<ul>n";
wp_list_pages('sort_column=menu_order&title_li=');
echo "</ul>n" . $after_widget;
}At least it worked of me. I use My Page Order plugin (https://www.geekyweekly.com/mypageorder) to ease the process.
Forum: Fixing WordPress
In reply to: Changing sidebar titles with widgetThank you very much for your answers bookchiq. This is exactly what i was looking for. Glad I did not ask myself.
I changed line 949 in the “widgets.php” file.
Forum: Fixing WordPress
In reply to: Feed and IE7: the feed icon does not lit up!Thanks you gentlemen. HandySolo, you code worked flawlessly. I had nothing in my header concerning RSS.
Again, thanks for your support.
Forum: Fixing WordPress
In reply to: Permalinks – only work in fileform (index.php…)Well, I have the same exact problem. I have read everything on the Codex, I have Googled, I have asked my host if mod_rewrite was on… Nothing seems to work for me.
I want to get rid of “index.php” in the permalinks. This just sucks, really. If someone can give us some hints, this would of course be really appreciated.
<- No more hair on my head ->
I do not know what to say. I have scanned the Internet, read FeedBurner’s forums, Order List’s forums, this one. It seems that everyone got this plugin working, but not me!
And I am not sure if it is a .htaccess issue here. Mine is writable, always empty. All i get is a:
Not Found
The requested URL /weblog/feedburner_333116/ was not found on this server.Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Apache/1.3.34 Server at https://www.baudesign.ca Port 80…error all the time.
Tried different permalink structures, deactivated then reactivated the plugin.
Nothing. Rien. Niet. Nada.
I quit! No FeedBurner redirection for me.
IIIV, you say:
“Can’t help you with why the re-write doesn’t work. It should work from the second the rule is activated.”
Can you be more specific? How do you actually activate this rule?
I have the same problem. But unlike ibeatty, when I try to access the .htaccess file by means of the WordPress internal file manager, I end up with a:
Forbidden
page.
You don't have permission to access /weblog/wp-admin/templates.php on this serverI will follow this thread closely. My original problem has still not been solved: https://www.ads-software.com/support/topic/64199
Thanks.
Forum: Fixing WordPress
In reply to: RSS Comments FeedTo answer your question:
“Does your web server support (and have enabled) .htaccess?”,
Yes it does. I don’t know what to say, or where to look at. Why is this file still and always empty?
Forum: Fixing WordPress
In reply to: RSS Comments FeedYes, HandySolo, I have an .htaccess file, and yes I CHMOD it to 666, just in case. It is sill empty, whatever I try: deactivate then reactivate the plugin, change the permalinks structure (at the moment, I have the “Date and name based” option checked.
The randomly generated link: https://baudesign.ca/weblog/feedburner_333116/
…leads nowhere.And my .htaccess file is still empty. ??
Forum: Fixing WordPress
In reply to: RSS Comments FeedWow! Thanks to Google, and thanks to https://htmlfixit.com/?p=905 and thanks to incursio (https://trac.www.ads-software.com/ticket/2379), I have found part of my problem.
This bug should be on the front page of the WordPress Website.
Now, if only I can get my feeds to work with FeedBurner. I will find out, oh! yea, I will. ??
Thanks