BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 3,911 through 3,920 (of 15,332 total)
  • Author
    Posts
  • in reply to: ERROR: Entry could not be added. #413805
    Steven Zahm
    Keymaster

    @ H.Dupont

    This primarily occurs when the database structure is not correct. I can review this. Please navigate to the Connections : Tools admin page and click the System Info tab. Scroll to the bottom and generate a private Remote Viewing URL. Reply back with that secret URL. Make sure to make the reply private before submitting.

    I’ll review it when I receive the link.

    Steven Zahm
    Keymaster

    @ PatriciaB

    It pretty much exactly how you registered the custom field to show in the list and the example in the tutorial you followed.

    add_filter( 'cncsv_map_import_fields', 'cncsv_remove_header_name' );
    
    function cncsv_remove_header_name( $fields ) {
    
        unset( $fields['honorific_prefix'] ); // Removes name prefix from drop down
        unset( $fields['middle_name'] ); // Removes middle name from drop down
        unset( $fields['honorific_suffix'] ); // Removes name suffix from drop down
    
        // var_dump( $fields );
    
        return $fields;
    }
    

    You can uncomment the var_dump command and if you visit the mapping page it spew out a list of the field ids on every row. You can use that to tweak the filter to remove the items you do not want.

    Hope this helps!

    in reply to: Not showing up properly #413620
    Steven Zahm
    Keymaster

    @ Pina

    • Navigate to the Connections : Settings admin page.
    • Click the Advanced tab.
    • Scroll to the bottom.
    • Enable the “Templates” option in the “Compatibility” section. It is a checkbox with this as the label “Themes can break plugin shortcodes that output content on the page causing the content not to render correctly. If the templates do not display as expected try enabling this option.
    • Click the Save Changes button.

    Let me know it that helps.

    in reply to: tile-plus overlapping boxes #413619
    Steven Zahm
    Keymaster

    @ Melinda

    I just viewed the page in IE 11, looks good. Try force refreshing the page in IE.

    in reply to: Link shortcode configuration #413617
    Steven Zahm
    Keymaster

    @ AG

    Have you first installed and configured the Link extension for Connections?

    Steven Zahm
    Keymaster

    @ PatriciaB

    You can hook into the cncsv_map_import_fields and remove the fields that you do not wish to have show in the dropdown.

    Hope that helps!

    in reply to: tile-plus overlapping boxes #413607
    Steven Zahm
    Keymaster

    @ Melinda

    Did you mean to type something in your reply?

    in reply to: Not showing up properly #413606
    Steven Zahm
    Keymaster

    @ Pina

    Hmmm… did you try the suggestions outline in the FAQ? Seems like the fix outlined in the yellow box in the FAQ should fix it. Did you try enabling that option?

    in reply to: tile-plus overlapping boxes #413590
    Steven Zahm
    Keymaster

    @ Melinda

    The theme is setting a conflicting style overriding the template. Try adding the following to the theme’s custom CSS area:

    #cn-tile-plus .vcard {
        width: auto !important;
    }
    

    Hope this helps, let me know.

    in reply to: Archive listing template #413585
    Steven Zahm
    Keymaster

    @ Helen

    Well this explains it, you’re testing something I could not see… Now that I have a direct link, that helps.

    The “Business Directory” is the page title. It is not generated by Connections, it is the title you gave the page.

    The Connections Category Widget links to the “Business Directory” page (filtered by the category clicked in the widget), not your custom pages that you made for the separate categories. Check the page URL/s in the address bar of the browser.

    So, there is no archive page since it is the same page displayed with the list filtered by category. You can test this, change the title of this page to something different.

    Connections, unless you break it apart manually like you did with your category pages, is designed to use a single page for display. There are no separate pages.

    To remove the title, you need to edit the theme’s template files or better create a custom theme page template which does not include the title. Or if the theme has the option, which some do, to turn the title of on the directory page.

    So how does Connections add the category name or entry name to the title, you might ask. Connections filters the page title based on how the list is being filtered.

    The code that does this is here:

    https://github.com/Connections-Business-Directory/Connections/blob/8.5.32/includes/class.seo.php#L497

    It hooks into the WP the_title filter here:

    https://github.com/Connections-Business-Directory/Connections/blob/8.5.32/includes/class.seo.php#L76

    Does that help?

Viewing 10 posts - 3,911 through 3,920 (of 15,332 total)