Forum Replies Created
-
AuthorPosts
-
08/18/2016 at 4:58 pm in reply to: WordPress says Automatic update is unavailable for this plugin but… #387009
Steven Zahm
Keymaster@ Debra
I getting the incorrect user/pass error when attempting to login. Could you please confirm the login details?
08/18/2016 at 4:21 pm in reply to: WordPress says Automatic update is unavailable for this plugin but… #387004Steven Zahm
Keymaster@ Debra
Everything appears to be setup correctly as far as activation goes. I will need a temp admin account so I can log in and take a look. The login details can be posted here as a private reply.
08/18/2016 at 2:48 pm in reply to: Hide Categories in the card in line with categories hidden in sidebar? #386979Steven Zahm
Keymaster@ Carolin
Yes, but not perfectly…
You can hook into the
cn_entry_output_category_itemfilter and check for a “permitted” category ID and if one is not found return an empty string. Something like this:add_filter( 'cn_entry_output_category_item', 'cn_remove_entry_output_category_item', 10, 6 ); function cn_remove_entry_output_category_item( $html, $category, $count, $i, $atts, $entry ) { if ( in_array( $category->term_id, array( x, y ) ) ) { return $html; } return ''; }Change
xandyin the code snippet to the two category ID/s that you want to be displayed. Al other will be tossed.Now, I said this is not perfect… You’ll end up with “extra” commas where the categories should have been displayed — I think. If you do, the next update, I added extra logic, jujst now to make sure that will not happen.
Hope this helps!
08/18/2016 at 2:22 pm in reply to: Hide Categories in the card in line with categories hidden in sidebar? #386976Steven Zahm
Keymaster@ Carolin
Hmmm… good question actually. Let me look in the code real quick…
Steven Zahm
Keymaster@ raielene
Oops, I pasted the wrong shortcode link for show_alphahead shortcode option. This is the correct link.
All the core shortcode options can be found on this doc page.
Hope that helps!
Steven Zahm
Keymaster@ Steffani
I do have an advanced search solution available. You can see an example if it here on this site:
It is the “Find A Therapist” section of the page. I you are interested I can provide a quote which includes installation and configuration. Please contact me using the contact link at the very bottom of the page.
Thanks!
Steven Zahm
Keymaster@ Robert
The issue is that one or more images were uploaded which are too large for WP to process to create thumbnails.
Using FTP, navigate to this folder:
../wp-content/uploads/connections-images/You will find a folder for each entry. Within that folder you will find the original image uploaded for the entry. Download that image, scale it down and then upload it again overwriting the image that was downloaded.
After you do that, the page will load fine.
Hope that helps, let me know.
Steven Zahm
Keymaster@ raielene
I think you are looking for the show_alphahead shortcode option. The setting are for the character index. Hope that helps!
-
This reply was modified 10 years, 1 month ago by
Steven Zahm.
-
This reply was modified 10 years ago by
Steven Zahm. Reason: Correct link
Steven Zahm
Keymaster@ Michael
Honestly, I still do not entirely understand… I thin you want to change the strings coming from
$corePhoneTypes = $instance->options->getDefaultPhoneNumberValues();. If that is the case, you can either hook into the filters and change the values or edit them directly. The function is found in theclass.options.phpfile in this folder:
../includes/settings/class.options.phpDoes that help?
Steven Zahm
KeymasterThis reply has been marked as private. -
This reply was modified 10 years, 1 month ago by
-
AuthorPosts
