Candymac
Forum Replies Created
-
I end up solving this by going to SEO -> Search Appearance, then selecting the taxonomies tab and locating ‘Folder (nt_wmc_folder)’, I set this taxonomy to ‘exclude from search’ and the XML file was removed.
I am seeing this too, Yoast is generating a sitemap at /nt_wmc_folder-sitemap.xml
Forum: Plugins
In reply to: [Memphis Documents Library] Plugin Conflict preventing Document UploadsThanks for the quick response.
As it turns out the root cause was not with any of the plugins, rather an issue with the database, the auto increment values on all the tables apparently vanished in an upgrade causing much unpredictable behavior.
Forum: Plugins
In reply to: [ACF Tooltip] White-space where instructions would be@tmconnect the latest version I just grabbed has fixed this issue. Thank You!
Forum: Plugins
In reply to: [ACF Tooltip] White-space where instructions would beThanks for posting. I still seem to be getting this issue with the latest version unfortunately, maybe it’s specific to the scenario I had described above, here’s how it looks: https://www.dropbox.com/s/wotff22qdg9iugp/Screenshot%202018-12-02%2016.11.35.png?dl=0
For the moment I have corrected by enqueuing an admin CSS file and adding the following hack to overwrite the min-height on the fields:
.acf-fields > .acf-field[style] {
min-height: 0px !important;
}Forum: Plugins
In reply to: [ACF Tooltip] White-space where instructions would beI also had this issue. I had two adjacent text fields (width set to 50%) that were within a group field. When adding a label to one of the two fields, ACF added an inline style to both div.acf-fields that set a minimum-height on both. It appears the css was inserted to try to keep the two side by side fields equal height, but since the label had been moved into a tooltip it just resulted in white space.
Hope this helps.
Update: I did actually figure out a fairly simple workaround utilizing ACF. I set up an image field in ACF with the field name _thumbnail_id and imported the image to that field rather than with the other images in the post.
- This reply was modified 6 years, 2 months ago by Candymac.
Forum: Plugins
In reply to: [CMS Tree Page View] Impossible to organize tree properly with last update.For some reason downloading and installing version 1.2.22 then upgrading to 1.2.25 via the WP dashboard seemed to have corrected the issue for me.
Forum: Plugins
In reply to: [CMS Tree Page View] Impossible to organize tree properly with last update.I’m having a similar problem. I was actually trying this plugin out for first time today (with WP 3.9) and noticed I was unable to reorder the pages, despite the crosshair cursor… So it appears this may still be an issue.
Forum: Plugins
In reply to: [Attachments] Legacy Attachments UndetectedJonathan,
Thanks, that did do the trick… I appreciate you sticking with me and figuring this out… Not sure how that happened – wonder if I unintentionally unchecked the CPT.
Anyway thanks again… Love the plugin – they should build it right into WP.
Forum: Plugins
In reply to: [Attachments] Legacy Attachments UndetectedSure… It was init:
add_action( 'init', 'create_sf_projects_post_type' );
Forum: Plugins
In reply to: [Attachments] Legacy Attachments UndetectedJonathan, Thanks for looking at this, below is the info you requested, though appears the CPT was already pubic.
function create_sf_projects_post_type() { register_post_type( 'sf_projects', array( 'labels' => array( 'name' => _x('Projects', 'post type general name'), 'singular_name' => _x('Project', 'post type singular name'), 'add_new' => _x('Add New', 'project'), 'add_new_item' => __('Add New Project'), 'edit_item' => __('Edit Project'), 'new_item' => __('New Project'), 'view_item' => __('View Project'), 'search_items' => __('Search Projects'), 'not_found' => __('No projects found'), 'not_found_in_trash' => __('No projects found in Trash'), 'parent_item_colon' => '', 'menu_name' => 'Projects' ), 'menu_position' => 4, 'public' => true, 'rewrite' => array('slug'=>'projects'), 'hierarchical' => false, 'query_var' => true, 'supports' => array( 'title', 'thumbnail','editor','page-attributes','revisions'), ) ); }