josefdunne
Forum Replies Created
-
Could you explain where you informed users of your plugin, that you stopped support for
get_post_meta
? I now have to re-write all my code again. I read your changelog, but nowhere did I see you say “The plugin does not supportget_post_meta
” I use a lot of if and else statements against a value forget_post_meta
now this code has to be re-written.So something like this?
do_shortcode('[xydac_field]{id}[/xydac_field]')
this goes in a function.. making your plugin only use shortcode makes is much more restrictive. My code was set up well, also, it was not 100% clear that you had removed the use ofget_post_meta
.I may have to move to GD instead. Or revert back to 1.5.
One more thing, I have not touched my template code, but this is what I am using to call the custom field value.
get_post_meta($post->ID, 'name', true)
I upgraded to 1.6.5 and deactivated and reactivated the plugin, but the same happens. It applies to all fields, the fields are type “text”. You can see the page here, where ever the word Array is there should used to be a value with version 1.5 https://bit.ly/iyBvam
Forum: Fixing WordPress
In reply to: Admin bar not showing in them after upgrade to 3.1That was it! ?? Damn.. I must remember to always make sure that the wp_footer call is there! Thanks!
Forum: Plugins
In reply to: 404 Error when clicking “Write New” in MailPressI have resolved my own problem, I have disabled mod_security on my server and now the “Write New” page works, this doesn’t give me much faith in the security of the plugin, no other wordpress plugin requires me to disable mod_security however MailPress now works, I hope the owner of the plugin will look in to this issues because it is an issue.
Forum: Plugins
In reply to: [ Plugin: MailPress ] Write new mail not working…I have resolved my own problem, I have disabled mod_security on my server and now the “Write New” page works, this doesn’t give me much faith in the security of the plugin, no other wordpress plugin requires me to disable mod_security however MailPress now works, I hope the owner of the plugin will look in to this issues because it is an issue.
Forum: Plugins
In reply to: [ Plugin: MailPress ] Write new mail not working…Hi,
I am also having the same problem. I am using WordPress 2.6.2 I installed MailPress with no other plugins
only MailPress when I click on “Write” I get a 404 Error Nothing Found
are you aware of this bug? And do you have a solution? Because I would
love to use this excellent plugin!Are there any solutions to this problem, is the plugin author aware of this bug?
Forum: Fixing WordPress
In reply to: Troubles with PhotoxhibitHi I have tried removing $imgs = $this->encodeToUtf8(stripslashes($post[‘images’])); as suggested to no avail, has there been any progress with this bug? I am still seeing “Please wait” when i try to either edit or build a gallery it just sits there like that, I am using the latest version of wordpress 2.6.1
Many thanks
Forum: Fixing WordPress
In reply to: Display the Top Parent (Root) category of a post as a title?I tried this, however the array is sent back in alphabetical order, I require the top/root parent so choosing [0] gives back “Bags” (I know I used “Shoes” in my example above but I will have a 3rd level category called “Bags”) What you suggest works to some extent but is not robust enough to use, since numbers of categories will be added (by the content admins of the site) and I don’t know what they will be, so I need a solution that gives me back the top/root parent category for a given post no matter what they are named etc.
For example, here is my actual category listing at the moment (it may expand):
- Fashion
- Men
- Accessories
- Shoes
- Women
- Accessories
- Bags
- Kids & Baby
- Lingerie
- Shoes
- Gifts
- Interiors
- Tech
- Travel
I would need the solution to work outside “The Loop”.
Forum: Fixing WordPress
In reply to: Display the Top Parent (Root) category of a post as a title?Some more information:
I am looking for something like this: “get_category_parents” which would only display the top/root category not list them all. Maybe “get_category_parent” notice no S! Which would also work on a post page, as this is the problem I am having because I can use the single_cat_title for category or index pages.
Thanks
Josef
Forum: Fixing WordPress
In reply to: Top-most Parent Category NameThis is something I am looking for also! Does anyone have any ideas?
Thanks
Josef