Flick
Forum Replies Created
-
Forum: Plugins
In reply to: [Media Library Assistant] Att. Categories in Media ManagerThank you so much David! Appreciate your help. It was number 2!!
I don’t remember doing that on the staging site so I’m so sorry about that! That has solved my issue.
Forum: Plugins
In reply to: [Media Library Assistant] Att. Categories in Media ManagerHey David,
I have a really weird problem with this update… It’s working perfectly for me in our staging version of the website.
But I’ve updated it on the live site, and I’m still getting the Textbox instead of the new “Toggle here” where you can toggle the categories in their checkboxes…
Can you think of the top of your head why that would be the case?
I’ve tried deactivating and activating the plugin but that doesn’t work. I even copied the plugin from the staging site and transferred it over to the live site… Still the textbox… Seems a bit weird!
Any help would be appreciated!! Thanks!
Forum: Plugins
In reply to: [cbnet Multi Author Comment Notification] Notifications not being sentThanks Chip! Hope your wife is okay and recovering well!
Forum: Plugins
In reply to: [Media Library Assistant] Att. Categories in Media ManagerGreat David! Thanks so much! I just updated the plugin and it’s looking good to me!! I imagine it would have taken a while to implement so thanks for doing it!
Forum: Plugins
In reply to: [cbnet Multi Author Comment Notification] Notifications not being sentHey Guys,
I’ve had the same issue with the plugin and did a slight bit of investigating… The plugin was returning an error where it looks to add the email for the Site Admin to the notifications…
I fixed it on line 114 of cbnet-multi-author-comment-notification.php which looks like this:
$email_addresses = array_merge( $email_addresses, $site_admin_email );
if you change this line to:
$email_addresses = array_merge( $email_addresses, array($site_admin_email) );
This should fix it. Hopefully the plugin author can take a look and fix it for us if that’s the right thing anyway ?? Seems to be working better for me now…
Forum: Plugins
In reply to: [WP Favorite Posts] Custom post typeHi triggeru571,
I put this code into a Template file directly… I created a template file in my Theme for the favourties page. You could put the code in your functions file by putting the relevant code inside a few hooks though.
I have just downloaded this version and there’s no Save button on the settings page for me either… Are there any fixes available? This is a new install. I can help debug if possible…
Cheers!
Forum: Plugins
In reply to: [WP Favorite Posts] Custom post typeI just wrote my own page template which seems to work well, so through I’d share… You can use the function to get the favourite ids out and write your own loop query…
if ( function_exists('wpfp_get_users_favorites') ) $fp_ids = wpfp_get_users_favorites();
to get the IDs and writing your own query…Here’s an example:
if ( function_exists('wpfp_get_users_favorites') ) $fp_ids = wpfp_get_users_favorites(); query_posts(array('post_type' => 'your-post-type', 'post__in' => $fp_ids, 'orderby' => 'post__in')); if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div class="post-item"><a href="<?php the_permalink(); ?>"> <?php the_post_thumbnail(); ?><?php the_title(); ?></a> <?php wpfp_remove_favorite_link( get_the_ID() ); ?> </div> <?php endwhile; // end of the loop.
This way you can display the list of favourites anyway you like…
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] Menu not displayingAh… love it when people ask the same question over and over. I’m downloading the latest package and will install manually.
Cheers!
I’m having this problem also… Unmapped or unrecognised form fields aren’t being added anywhere in Highrise…
The admin panel says
“Anything not recognized by the list will be added to Staff Comments”.Do we need to create a custom field called “Staff Comments” for this to work?
Cheers.
Forum: Plugins
In reply to: [Plugin: Custom Field Template] Conflict with Faster Imager Insert PluginThanks for that! The Faster Image Insert plugin was breaking when you try and get it to put the multiple images into the main Editor. After a bit of research I worked out that the potential conflict was the ‘media_send_to_editor’ filter.
I simply commented out line 95 in custom-field-template.php and it fixed the conflict. Faster Image Insert plugin works and I can’t see any problems with CFT either.
Line 95 is:
//add_filter( ‘media_send_to_editor’, array(&$this, ‘media_send_to_custom_field’), 15 );I use the Media Picker and Insert Image items in Custom Field Template… what was this filter for? Is it needed?
Thanks for looking into it!
Has anyone found a solution to this problem? I’m experiencing the same issue…