emeraldryan
Forum Replies Created
-
I also started getting the error message below (from the FeedWordPress plugin) in the last few days:
The data could not be converted to UTF-8. You MUST have either the iconv or mbstring extension installed.
My web host increased the PHP memory limit from 32MB to 96MB and that seems to have fixed the problem.
Forum: Plugins
In reply to: [FeedWordPress] Has FeedWordPress been discontinued??I also started getting the error message below in the last few days:
The data could not be converted to UTF-8. You MUST have either the iconv or mbstring extension installed.
My web host increased the PHP memory limit from 32MB to 96MB and that seems to have fixed the problem.
Forum: Plugins
In reply to: [GD Star Rating] [Plugin: GD Star Rating] multi rating in commentsI have managed to add a GD rating shortcode into the comment form using the comment_form($comments_args).
'comment_notes_after' => do_shortcode('[starrater tpl=44]'),However I have not managed to get the rating to display next to the user’s comment.
This article (http://www.placementedge.com/blog/gd-star-rating-comment-integration-with-wordpress-3-0/) helped me.
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] Fatal Error on activationI had this exact same issue.
After reading this thread I disabled Query Multiple Taxonomies (another excellent plugin by scribu) and I was then able to activate Posts 2 Posts without any error.
I then reactivated Query Multiple Taxonomies and everything works.
Thanks for the reply. I think I understand what you’re saying so using my example (above) I would create the following:
[book] The Lord of the Flies |-- [book_format] The Lord of the Flies (Paperback) |-- [book_format] The Lord of the Flies (Hardback) |-- [book_format] The Lord of the Flies (ebook)I presume the [book] posts would be private and I would only display the [book_format] posts publicly on the website.
Have I understood this correctly?
I have been working through the examples in the wiki over the last few days and I’m not sure if what I’m trying to achieve is possible.
I am currently making connections (books to books, reviews to books) as seen in the basic structure below.
Hardback and ebook TO Paperback edition:
[Book] The Lord of the Flies (Paperback) |-- [Book: The Lord of the Flies (Hardback) |-- [Book: The Lord of the Flies (ebook)Review TO Paperback edition:
[Book] The Lord of the Flies (Paperback) |-- [Review] Awesome book |-- [Review] Timeless classic |-- [Review] My all-time favouriteMy idea is that the hardback and ebook editions check for a connected book (in paperback) and show the reviews from there. In other words they just check for connected reviews from the book that they are connected to.
Is this type of query possible?
Many Thanks
Thanks for the prompt response.
The issue with a format taxonomy is that I want to use a different featured image and [gallery] shortcode for the different formats.
This is important because the website will also have games (another custom post type) in different formats (XBOX 360, PS3, etc) and when the user is filtering (with your Query Multiple Taxonomies plugin) by game format they need to see the correct box cover (featured image) and screenshots ([gallery] shortcode) for their format.
I want to avoid duplication of data for the different formats and ideally share common fields and the related reviews.
I also have the same issue. My client wants to show all product categories and if there are no results then show an enquiry form for the customer.
Hiding taxonomies that are no used on published posts gives the impression that the website/company doesn’t ever have that product/page.
Forum: Plugins
In reply to: Broken page on query-multiple-taxonomies no variable searchThis solution is not ideal but if the dropdown form’s action is not the same as the base url set in functions.php you could do the following:
- Copy the templates to your theme folder as described at https://github.com/scribu/wp-query-multiple-taxonomies/wiki/Changing-templates
- Change line 1 on /wp-content/themes/your-theme/qmt-templates/dropdowns.html
Hope this helps.
I also need ALL existing taxonomy terms to appear (regardless of whether they are used in any published posts) in the lists/dropdowns. My client wants all options to appear and if no results appear then a standard message to be displayed.
I don’t think it can be done via the functions.php file as hide_empty applies to the querying of taxonomies/terms which is done by the plugin.
From an earlier thread (http://wordpress.org/support/topic/plugin-query-multiple-taxonomies-how-to-disable-blank-taxonomies-trill-down) I think that this used to be the default behaviour of the plugin but was changed in version 1.2.
If anyone knows of a solution I would be most grateful.
Forum: Plugins
In reply to: [GD Star Rating] [Plugin: GD Star Rating] Stars not showingI was getting the exact same issue.
When looking at the source code of my pages I found that the gdsr.css.php file generated in the <head> section wasn’t loading due to a 500 error.
Upon looking through my error logs I found the following:
[Tue Feb 22 10:59:19 2011] [error] [client 86.160.81.113] SoftException in Application.cpp:601: Directory "/home/uknowotimea$ [Tue Feb 22 10:59:19 2011] [error] [client 86.160.81.113] Premature end of script headers: gdsr.css.php, referer: http://www$After a bit of research I found that this could be due to the PHP5 handler used in my CPanel/Centos configuration. Changing the PHP5 handler from suphp to dso has resolved the issue and now the stars appear.
Hope the info above helps someone out.