Azarea
Forum Replies Created
-
Forum: Plugins
In reply to: [Related Posts by Sovrn] Don't show Zemanta on pagesOk, thank you Mateja. I’ll just hide it via CSS then.
Forum: Plugins
In reply to: [Constant Contact for WordPress] No Option for Form Design!I see no option or settings page for Form Design.
Any advice?
Thanks a lot,
CiprianForum: Plugins
In reply to: [Redirection] What happened to the plugin? *Missing from Repo*Was the plugin discontinued? I can’t find it anywhere.
Thank you!
Forum: Plugins
In reply to: Conflict between mailpress widget and nextgen gallerySimilar problem over here: Mailpress breaks Slidedeck 2! 🙁
This happens to me also, and the link to the “variation product” isn’t working.
It should redirect the visitor to the main / parent product, but instead i get a 404 not found error.Thanks,
CirpianForum: Themes and Templates
In reply to: 404 on taxonomy archive pagesOk, i found why was causing the last error too.
When registering the custom post type for that taxonomy, i set the:
'public' => true, 'publicly_queryable' => true, 'exclude_from_search' => true, 'query_var' => trueBut it seems that the exclude_from_search must be set to false.
Note: If you want to show the posts’s list that are associated to taxonomy’s terms, you must set exclude_from_search to false (ie : for call site_domaine/?taxonomy_slug=term_slug or site_domaine/taxonomy_slug/term_slug). If you set to true, on the taxonomy page (ex: taxonomy.php) worpress will not find your posts and/or pagination will make 404 error…
Thanks for bearing with me, talking here alone 🙂 After all, maybe my monologue will prove useful to other guys trying desperately to find why they get a 404 or their posts are not showing up.
So, to summarize:
1. check your with_front (not yet pretty sure what it does)
2. add flush_rewrite_rules(); to your code (this one is a gem)
3. check yourexclude_from_search
4. check your taxonomy-NAME.php file
5. PRAYBest wishes,
CiprianForum: Alpha/Beta/RC
In reply to: Custom Taxonomies Show No PostsDominic, what was the plugin causing the issue? That is if you can still remember after 8 months.
Forum: Themes and Templates
In reply to: 404 on taxonomy archive pagesI added flush_rewrite_rules() to the custom post and taxonomy registration and removed the ‘with_front’ => false and the 404 error is gone now, thank god!
What does this “with_front” means exactly? I don’t get it from the codex explanation…
'with_front' - allowing permalinks to be prepended with front base - defaults to true=> what does it mean?Also, with the 404 error gone I’m the happiest man on Earth, but now another problem came out: no posts found for all taxonomies, even if they have posts. Any idea?
Forum: Themes and Templates
In reply to: 404 on taxonomy archive pagesI disabled all plugins – the problem persists on all the taxonomies, except for the regular wordpress “category”.
I have the exact same issue as Nathan but i couldn’t fix it yet. I tried to flush the permalinks but it doesn’t work.
I don’t have a duplicate, since all my new taxonomies have very unique names (site initials, underscores, etc.).
Any idea why i keep receiving 404 not-found errors?
Thanks,
CiprianSame issue here. Any news?!
Forum: Plugins
In reply to: [Adminimize] [Plugin: Adminimize] Hide page and subpages (edit.php)Hello everyone!
I want to disable some backend menus for the administrator (and leave them available only for a super-admin role).
Ok, so i checked the Users (users.php) and Add New User (user-new.php) and now i wanted to uncheck them and make them available again for the administrator. This doesn’t work anymore! I can’t uncheck them at all. I tried with all the other menus and everything works except for these two items – very strange! So i tried to check (disable) them for the “Editors” and then when i tried to uncheck the boxes again – surprise – it won’t work. So once checked, those boxes keep their status forever and ever.
Any suggestions? Any trick to uncheck them directly from the database?
Thanks!
Forum: Fixing WordPress
In reply to: Extra content at the end of the document=rss errorSame error here too:
This page contains the following errors: error on line 225 at column 25: Extra content at the end of the document Below is a rendering of the page up to the first error.Hi Justin,
wpsc_display_featured_products_page()doesn’t work for me neither.
Can you please paste here the snippet of code you’re using?I’m trying to show the most recent featured product on the homepage. I tried to do it the usual way, retrieving the custom post types marked as sticky but i don’t know how to display all the wp-e-commerce custom fields like variation boxes, buy buttons, fancy notifications etc. I can, of course, list the featured product on the homepage and redirect the visitors to the product page to make the purchase but this 2-step process makes the things difficult for the average internet user.
$sticky = get_option( 'sticky_posts' ); $args = array( 'post_type' => 'wpsc-product', 'posts_per_page' => 1, 'post__in' => $sticky, 'orderby' => 'date', 'order' => 'DESC', ); $featured_query = new WP_Query( $args );Above is the query that will retrieve the most recent featured product.
Thank you a lot,
Ciprian