snails07
Forum Replies Created
-
Thanks Kevin, the custom fields all seem to be working now.
The custom taxonomies aren’t working properly though. I have checkboxes set up for my custom taxonomies and if I check one it saves okay, and then I edit the post again and check another taxonomy and this saves. But when I uncheck a taxonomy and update the post, it still stays checked.
So it works fine to add a taxonomy but not to remove one.
Thanks
Using the latest version of both. WordPress version 3.3.2 and the Update Post plugin version 0.5.2
I’m having the same issue with the multi-select and taxonomies.
Also using version 3.0.1
Any idea when this will be updated?Thanks
Doing the same thing for me.
The most recent entry does not show up until you make another entry, and then that one doesn’t show, until you make another entry and so onJust found the answer. Need to add radius=false to the shortcode
Okay, I can give them that access but how would I display these roles on the front end.
For example, I can display the total number of users online, but how could I display the number of users per role?So on the front end it would say something like:
23 total users online
13 ‘role 1’ users online
10 ‘role 2’ users onlineThanks
Forum: Fixing WordPress
In reply to: Changing post_meta based on other posts post_metaI should also mention that I am using the Front End edit plugin to edit the meta data on the front of the site, not in the admin area.
Would this be making a difference to the function?
Here is what the function looks like with the above code pasted in – https://pastebin.com/mGAg6eVE and it displays nothing on the site.
(Note that I have now changed the names of the meta_keys since my original post)Forum: Fixing WordPress
In reply to: Changing post_meta based on other posts post_metaThanks for the responses.
Fire Truck, that code isn’t working. It doesn’t change any of the other meta values in the database.
I’ve tried to work out where it is going wrong but that code is a bit over my head.
Any other ideas??I’d also be interested in doing something similar to this.
Or instead of adding a new custom field after a field is changed, would it be possible to change a custom field on the rest of the posts within the same loop.
For example there are 5 posts being displayed, each of the posts has a custom field called ‘selected’ that the admin (or whoever) can change on any one of the posts. So they would select this field on the post that they chose and change this selected field to ‘Yes’, which would then change this field on the rest of the posts to ‘No’.
Would something like this be possible?So is there a solution to this?
I am getting the same error and only in one place as well.
The plugin works great in a bunch of my template files except for one of them.
Any solutions?Forum: Fixing WordPress
In reply to: Can't display all posts on a pageThank you esmi, that was the problem.
I’d changed the memory limit for some reason when I was messing around with something else. You’re a lifesaver!I’m looking for the same thing as Dominor.
Is there a way to add something to the author.php page to show if that particular user is currently online?
It must be possible? Anyone have the smarts to be able to do this?Forum: Plugins
In reply to: Integrate this script into wordpressSorry, here is the link to the code
Thanks again to anybody who can help on this!
Forum: Fixing WordPress
In reply to: How to get list custom taxonomy terms for specific taxonomyBeen looking for the same and just found this. Seemed to be the perfect solution for me and uses wp_list_categories .
//list terms in a given taxonomy using wp_list_categories (also useful as a widget if using a PHP Code plugin) $taxonomy = 'eventcategory'; $orderby = 'name'; $show_count = 0; // 1 for yes, 0 for no $pad_counts = 0; // 1 for yes, 0 for no $hierarchical = 1; // 1 for yes, 0 for no $title = ''; $empty = 0; $args = array( 'taxonomy' => $taxonomy, 'orderby' => $orderby, 'show_count' => $show_count, 'pad_counts' => $pad_counts, 'hierarchical' => $hierarchical, 'title_li' => $title, 'hide_empty' => $empty ); <ul> <?php wp_list_categories( $args ); ?> </ul>
Forum: Networking WordPress
In reply to: Hostmonster network setup helpYou’re an absolute gun Andrea! Changing to subfolders worked perfectly.
Here’s a link with instructions for anybody else needing this.
https://codex.www.ads-software.com/Create_A_Network#Switching_between_subdomains_and_subfolders