jazbek
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 1 Query for both category and tagswouldn’t that only give me posts that are tagged with both audio and podcast? i need either tag..
yeah, just tried it out and it gives me no results.
Forum: Fixing WordPress
In reply to: Posts Only on SubdomainI would like to do the same thing and am wondering if this can be done with the .htaccess file somehow?
Forum: Fixing WordPress
In reply to: No RSS – XML parsing errorI had no problem viewing my RSS feed when I was developing locally, but once I copied all the files to my webserver I was getting this error. When I viewed source of my /feed/ URL, I could see there was a line break before the XML declaration at the top of the file.
Since the exact same files were working on my localhost installation, I knew it wasn’t due to any plugins or trailing whitespace at the end of any of my files because that would have caused an issue on my local copy as well.
Somehow I was able to fix the problem by opening wp-includes/feed-rss2.php, making a change in the file, saving it, uploading it, undoing the change (so it was exactly the same as before), and then uploading again. No clue why that fixed it, but it did.. there’s no longer a blank line being output at the beginning of the XML file.
HTH someone..
Forum: Plugins
In reply to: [Plugin: Quick Shop] Paths are screwed up in v2.0can you post a link to your quickshop site?
Forum: Fixing WordPress
In reply to: Edit Posts – Sort Pluginjust chiming in as a 3rd person who would really like this functionality.
Forum: Plugins
In reply to: WordPress 2.8 RC breaks post types in More Fields plugini am not having any problems with the quick edit feature. are you sure its not another plugin causing the problem? i am also wondering about the 2.8.1 update, someone fill us in!
Forum: Plugins
In reply to: WordPress 2.8 RC breaks post types in More Fields pluginkingjeffrey, i think you have to drag the boxes back over to the right sidebar, if i’m not mistaken. it’s an annoying thing about wp 2.8 as far as i understand.
Forum: Plugins
In reply to: Displaying user profile’s website field?<a href="<?php echo get_usermeta($post->post_author,'user_url'); ?>">HERE</a>
Forum: Plugins
In reply to: [Plugin: Quick Shop] Shipping calculation inconsistencyWell, I decided to make it charge shipping on each item, so the checkout page reflects what the cart widget says. In order to fix it, change line 328 in quickshop.class.php from
$totalShipping += $item['shipping'];
to
$totalShipping += $item['shipping'] * $item['quantity'];
jessica
Forum: Plugins
In reply to: [Plugin: Quick Shop] Paths are screwed up in v2.0Er, can a moderator move this thread to the Plugins and Hacks section? Not sure why it went into Installation.
Forum: Plugins
In reply to: WordPress 2.8 RC breaks post types in More Fields pluginglad i could help! i am a lady, btw.. haha ??
Forum: Plugins
In reply to: WordPress 2.8 RC breaks post types in More Fields pluginThis thread is kind of forked here and at https://labs.dagensskiva.com/forum/topic.php?id=152 (sorry) but just thought I’d post my fix files:
https://exobi.com/jessica/more-fields-object.txt
https://exobi.com/jessica/more-fields-write-js.txtjessica
Forum: Plugins
In reply to: WordPress 2.8 RC breaks post types in More Fields pluginYeah, I think that is related to the problem that I mentioned above, of the admin boxes all moving to the main column when you choose 1 column layout, and then not being able to move them back to the sidebar if you switch back to 2 columns. The strange thing is, when I deactivated the More Fields plugin, this problem remained for me. I am using the same browsers as you, mongushu
As for not being able to expand/collapse some boxes, I tried all the boxes on the edit post page, and had no trouble with any of them except 1 that was added by another plugin. Which boxes are you having trouble with?
Forum: Plugins
In reply to: WordPress 2.8 RC breaks post types in More Fields pluginCross posted at https://labs.dagensskiva.com/forum/topic.php?id=152#post-481:
Ok, I’ve almost completely fixed this problem. Thanks to this blog post:
https://www.code-styling.de/english/how-to-use-wordpress-metaboxes-at-own-pluginsI added some code to the more-fields-object.php file that enables the right sidebar again, and it also saves your open/close toggle states on the boxes:
more-fields-object.php, function init(), at the bottom of the function (before the } ):
add_filter(‘screen_layout_columns’, array(&$this, ‘screen_layout_columns’), 10, 2);then, immediately *after* the final closing brace ( } ) of the init() function:
function screen_layout_columns($columns, $screen) {
$columns[$screen] = 2;
?>
<script type=”text/javascript”>
//<![CDATA[
jQuery(document).ready( function($) {
// close postboxes that should be closed
$(‘.if-js-closed’).removeClass(‘if-js-closed’).addClass(‘closed’);
// postboxes setup
postboxes.add_postbox_toggles(‘<?php echo $screen; ?>’);
});
//]]>
</script>
<?php
return $columns;
}This will enable the “Screen Layout – Number of Columns: 1 2 ” options under the “Screen Options” pulldown. Probably not the cleanest way, but it’s a quick fix.
NOTE: The one thing that does NOT work is if you choose 1 column layout, it moves all the sidebar items over to the main column, then if you switch back to 2 columns, the sidebar items remain in the main column, and you can’t drag them back. I’m not sure if this is a bug in 2.8 or what, because it still happens on the normal Edit Post page if I deactivate the More Fields plugin. I haven’t tried deactivating all my other plugins.
Forum: Plugins
In reply to: WP shopping cart no Paypal direct..possible?Any update on this? I’m also now charged with the same task.