lsatdown
Forum Replies Created
-
Forum: Plugins
In reply to: [Import and export users and customers] Assigning role/sresolved.
Forum: Plugins
In reply to: [WooCommerce] Product Add-On button not working since updateI too get this error with woocommerce + latest version of product-addons (2.6.10).
Any fixes?Errors out at:
Query( ‘select.chosen_select’ ).chosen();Forum: Fixing WordPress
In reply to: Categories per custom post typeFor anyone running into this situation, this blog post fixes it all
http://someweblog.com/wordpress-custom-taxonomy-with-same-slug-as-custom-post-type/Forum: Fixing WordPress
In reply to: Categories per custom post typeIts important to note that i want the taxonomy slug to be the same as the post type it supports. So:
Post type: post-type-1
taxonomy: post-type-1/categoryForum: Fixing WordPress
In reply to: Categories per custom post typeeven though i’ve set the taxonomy as ‘category-1’ to make sure it’s specific? I want the slug to be ‘category’ though for each one.
Forum: Fixing WordPress
In reply to: Add new wp_editor to attachment windowAh thanks Jeff, thats helped.
So I now have passed wp_editor() to a variable via ob_start(), and passed unique ID’s to each editor. When the page now loads, it shows each editor but without any buttons – gets stuck at (firebug output)
“q is not a constructor”
Any clues?
Forum: Fixing WordPress
In reply to: Multiple tiny_mce instances, hyperlink issuesI;ve noticed that if you change the main editor to ‘HTML’ from ‘Visual’, and refresh the page, the links work fine?!
So it seems the main editor javascript is affecting the multiple tinymce instances somehow?
Forum: Fixing WordPress
In reply to: Paged query, new post added whilst viewing causes duplicate postsgreat thanks for your help! This sounds like a WP bug that needs fixing don’t you think?
If a website (like the one I am building) is being updated every 5 minutes, the above bug will occur.
Forum: Fixing WordPress
In reply to: Paged query, new post added whilst viewing causes duplicate postscorrect! So because of the new post, the new post becomes post 1 and shift all the other up one. So I see post 4 twice.
Any thing I can do about this?
Forum: Fixing WordPress
In reply to: Paged query, new post added whilst viewing causes duplicate postspostsperpage => 4, so on page 2 it should start with post 5.
But when a user publishes a new post whilst I am on page 1, it will load in post 5, which is effectively post 4 because of the new post. Make sense?!
Forum: Fixing WordPress
In reply to: Paged query, new post added whilst viewing causes duplicate postsAjax File query is:
$page = $_GET['page']; $query = new WP_Query(array('post_type' => 'post','paged'=>$page));$page is increased +1 every time ajax file is called. Works fine, but when a new post is published whilst querying ajax, the paged count gets mixed up and loads in a duplicate
Forum: Plugins
In reply to: [W3 Total Cache] Page Cache – Status = not cached?Hmm thats anoying! Guess I shall have to use super cache.
Thanks for the adviceForum: Fixing WordPress
In reply to: Custom Taxonomy Permalink Sturucture breaks Page URLsHi,
This post helped loads! I have a magazine ‘issue’ style setup and require the following:
taxonomy-issue
taxonomy-subcategory
posttype-fashionMy idea permalink structure would be:
/%issue%/%posttype%/%subcategory%/%postname%/Using your tips above I have this setup working, and because I have the posttype in the structure, the template ‘single-fashion.php’ is loaded.
The problem I have is pages are returning 404, and if I type anything into the %issue% or %subcategory% path in the URL, no 404 is returned and it just loads single-fashion.php
Any help would be much appreciated!
Forum: Fixing WordPress
In reply to: WP 3.1 – Problem Insert/edit link ButtonI had the same issue, and it was to do with WP SEO plugin.
Forum: Fixing WordPress
In reply to: c.wpdialog is not a functionHi Guys,
Any updates on this? I de-activated the plugin and it fixes the issue, so definately a problem with the plugin.
I’ve updated the plugin to 0.4.2 and it hasn’t fixed the problem?