luckiecks
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Pipes] A couple questionsThanks!
Forum: Fixing WordPress
In reply to: wp_dropdown_categories() Top Option as SubjectSolved this sort of. Only works with the javascript version I think though. I like it better anyway.
<li id="categories"> <?php wp_dropdown_categories('show_option_none=S U B J E C T&title_li=&hide_empty=0&exclude=1&orderby=name'); ?> <script type="text/javascript"><!-- var dropdown = document.getElementById("cat"); function onCatChange() { if ( dropdown.options[dropdown.selectedIndex].value > 0 ) { location.href = "<?php echo get_option('home'); ?>/?cat="+dropdown.options[dropdown.selectedIndex].value; } } dropdown.onchange = onCatChange; --></script> </li>Forum: Fixing WordPress
In reply to: Category in page titleIt’s in the header which is a separate .php file. When I replace the code the title becomes <a href=” blah blah
Forum: Fixing WordPress
In reply to: Where are categories in MySQL\MySQL Server 5.1\data\wordpress157?Thanks for the link.
Nvm it doesn’t matter. The time it takes to refresh the feed to post page is really slow with a lot of categories. Back to autoblogged I guess.
Forum: Plugins
In reply to: [WP RSS Multi Importer] Is it possible to have more than 50 entries per feed?I’m not sure if plugin authors can post in resolved threads so I’ll make a new one.
Forum: Fixing WordPress
In reply to: Make wp_list_categories skip "The" in alphabetizationSo I could do child_of for genres, but my options for ordering them within the subcategories are
id name slug count term_groupID seems pretty difficult to do, because if I add new categories I’d have to delete all of the old ones and then use new ids. I think. Name is what I’m using now. Slug is a possibility but would look unprofessional. Count may work if I could somehow hide the extra posts needed. That is if I’m understanding what count does correctly. And I don’t think term_group is helpful in this area. Which one seems the most manageable?
[ Stop bumping. ]
Forum: Plugins
In reply to: [WP RSS Multi Importer] Is it possible to have more than 50 entries per feed?Okay, I tried both of these
<OPTION VALUE="Download" <?php if($options['sourcename']=='Download'){echo 'selected';} ?></OPTION> <OPTION VALUE="Download" <?php _e("Download", 'wp-rss-multi-importer')?></OPTION>and they didn’t work. It’s probably worth noting that I don’t know php.
Forum: Plugins
In reply to: [WP RSS Multi Importer] Is it possible to have more than 50 entries per feed?No worries. As an aside, is it possible to force the source link to just be a single word? I’d like it to just say “Download” on every post instead of “via x” or “download x”.
Forum: Plugins
In reply to: [WP RSS Multi Importer] Is it possible to have more than 50 entries per feed?Thank you. If I do <OPTION VALUE=”9999″ <?php if($post_options[‘maxfeed’]==9999){echo ‘selected’;} ?>>9999</OPTION> will it break? The feeds are of podcasts. I’m using wordpress to make a locally hosted version of feedly for myself.
Forum: Plugins
In reply to: [WP RSS Multi Importer] Is it possible to have more than 50 entries per feed?They have hundreds, there’s no way to do unlimited? I’m switching from autoblogged which has this feature.
Forum: Plugins
In reply to: [Thumbs Rating] How to get rid of the " " and "-"?Ah didn’t think about updating. If an update is applied with mismatched code is the previous stuff just overwritten or is there a major error?
Forum: Plugins
In reply to: [Thumbs Rating] How to get rid of the " " and "-"?You just need to edit it out of wp-content/plugins/thumbs-rating/thumbs-rating.php, lines 115 and 116 for me. Search for data-text. Removing all of line 116 will remove the negative vote button.
Forum: Fixing WordPress
In reply to: Make wp_list_categories skip "The" in alphabetizationIs there a guide on how to code my own category listing somewhere? I couldn’t find one
Forum: Fixing WordPress
In reply to: How do I change the arrow to another symbol in my title?Thank you.