vinnyred
Forum Replies Created
-
sounds good, i’ll give this a whirl – got a customer product dbase coming up… Thanks iblastoff
Not sure if this would work but through another thread, someone is trying to search only custom post types. A simple solution is to add a hidden field to the form.
If this could be added to the form (inside the plugin) maybe it would work:
Forum: Plugins
In reply to: Event Calendar Month name not changing when clicking on prev or nextI think this is an Internet Explorer thing as the same thing happended to me. works fine in all browsers apart from IE. {Event Calendar 3}
Forum: Plugins
In reply to: Event Calendar -listing events by date of the eventHi Larry:
The only way I can get the event listing in the order you specify and not the post date is to filter the loop using query posts:
global $query_string; query_posts( $query_string . "&order=ASC" );
1. set up a custom field called date (I used the plugin more fields) using the format yyyy/mm/dd
2. Order by this in query posts i.e.
global $query_string; query_posts( $query_string . "&meta_key=event_date&orderby=meta_value&order=ASC" );
The only way I can get the event listing in the order you specify abnd not the post date is to filter the loop using query posts:
global $query_string; query_posts( $query_string . "&order=ASC" );
1. set up a custom field called date (I used the plugin more fields) using the format yyyy/mm/dd
2. Order by this in query posts i.e.
global $query_string; query_posts( $query_string . "&meta_key=event_date&orderby=meta_value&order=ASC" );
Forum: Fixing WordPress
In reply to: Cannot see any pictures on my blog or when upload to media filesHi not sure if this helps. I just had a similar problem upon launching a new site. I was able to upload files but couldn’t see them in the pages or posts. File permissions on the directorys were not set to 755 or at least they were not set to ‘public read’ therefore images couldn’t be seen.
check with your hosting and change file permissions on folders and files if required.
Forum: Fixing WordPress
In reply to: Include custom field values in searchThanks David, i’ll have a look. Is that code in effect grabbing your search terms (multiple meta fields) and building a query to search across all the terms?
Forum: Fixing WordPress
In reply to: Logged into all blogs simultaneously@thelaw – sorry for contacting through this post – a year ago you had probs with removing the category base, just wondering if you ever resolved this.
It seems that at one level cat slugs are fine but as soon as you enter a subcat you get the category base inserted.
apologies again for hijacking this feed!
Forum: Plugins
In reply to: The plugin does not have a valid header.If anyone else comes across this. I had the same erro when trying to activate a plugin. However, this was only using the activate plugin through the FTP installer within the admin area. If you ignore this link then go back to your plugins list and activate from withn that link, it worked for me.
jsut something else to try.
Forum: Fixing WordPress
In reply to: Change the login url from the lostpassword e-mail?Hi Morten
You can specify the page:
<?php $redirect = get_option('home'); echo wp_lostpassword_url( $redirect ); ?>
would take someone to home page after the lost password box is complete.
Forum: Fixing WordPress
In reply to: Include custom field values in search@keesiemeijer Hi – having looked around for ages I came across your solution which was great and worked although I couldn’t get it quite right.
I’m using a category as a staff list for a company. I have an A-Z display of thumbnails etc which are all custom fields including their first and last name {2 separate custom fields}. So by using your idea
<?php query_posts('meta_value='.$s); ?>
works great if people enter say a first or last name, but if someone types in both {to the search box}, no results are displayed as it’s now looking for a first and lastname.Any advice or help would be much appreciated.
Forum: Plugins
In reply to: [CaPa Protect] [Plugin: CaPa Protect] Login logout warning messageUpdate: I didn’t get this message when I uploaded to a live server. It only seemed to be there on a local WAMP server – if that helps.
Forum: Plugins
In reply to: [CaPa Protect] [Plugin: CaPa Protect] Login logout warning messageI am getting the exact same message. Did you manage to resolve this? When I deactivate the plugin the error message is gone.
Forum: Plugins
In reply to: [Plugin: Event Calendar 3] 2.9.1 Fix@rightintwo – thanks for this fix. I’m using php v5.3.0 and as soon as I activated thge plugin and went to my posts page – I received the error. Although I only removed the ampersand from the lines where I was getting the errors. When viewing the posts page it highlighted the portions of the php file that were having problems. Don’t know if this helps with anyone else.
thanks.
Forum: Plugins
In reply to: [More Fields] [Plugin: More Fields] [BUG!] Non-escaped apostrophes!Thanks Kalstrom – Great Plugin. Top Work!