Forum Replies Created
-
AuthorPosts
-
Steven Zahm
Keymaster@ Monica
That spacing is likely being inherited from the theme. It can be adjusted using some CSS.
ul#cn-entry-actions { margin-bottom: 20px; } #cn-gridder .cn-entry-single h2 { margin: 0; padding: 0; }Add this to the theme’s custom CSS area.
Hope that helps!
Steven Zahm
Keymaster@ Greg
That’s the custom multiple category search that you had installed and configured back in Dec and you asked about this in Jan. Just mentioning this for background.
The latest version of the multiple category search does indeed of the ability to display the search messages. This update would have to be installed and configured.
Steven Zahm
Keymaster@ Caroline
This can be done with CSS.
ul.cn-list-actions { text-align: right; direction: rtl; }Add the above CSS to the theme’s custom CSS area.
Hope that helps!
Steven Zahm
Keymaster@ Jana
Sorry, no, there is no easy way to remove the field. What you could do since you have some coding knowledge is unregister the default address field set and register you own custom fieldset.
To unregister the core address fieldset use this:
function cn_remove_address_metabox() { cnMetaboxAPI::remove('address'); } add_action( 'cn_metabox', 'cn_remove_address_metabox', 9 );To register you custom address fieldset use:
function cn_custom_address_fieldset() { if ( is_admin() ) { $pageHooks = apply_filters( 'cn_admin_default_metabox_page_hooks', array( 'connections_page_connections_add', 'connections_page_connections_manage' ) ); // Define the core pages and use them by default if no page where defined. // Check if doing AJAX because the page hooks are not defined when doing an AJAX request which cause undefined property errors. $pages = defined('DOING_AJAX') && DOING_AJAX ? array() : $pageHooks; } else { $pages = array( 'public' ); } $field = array( 'id' => 'metabox-address', 'title' => __( 'Addresses', 'connections' ), 'pages' => $pages, 'context' => 'normal', 'priority' => 'core', 'callback' => '{REPLACE WITH YOUR CUSTOM FUNCTION NAME}', ); cnMetaboxAPI::add( $field ); } add_action( 'cn_metabox', 'cn_custom_address_fieldset', 9 );Notice the
{REPLACE WITH YOUR CUSTOM FUNCTION NAME}in the above code, you will have to replace that with you own function name for your custom address fieldset.You can copy the code from Connections and alter it as needed to remove the country field and move the district field. it is this code that you would place in your own custom functions:
- https://github.com/Connections-Business-Directory/Connections/blob/8.5.20/includes/class.metabox-entry.php#L966
- https://github.com/Connections-Business-Directory/Connections/blob/8.5.20/includes/class.metabox-entry.php#L1009
Hope that helps!
Steven Zahm
Keymaster@ Melinda
Which part? Me manually activating the site or a config change or something?
Steven Zahm
Keymaster@ Melinda
Checking the site access logs, the dev site is coming from:
http://smcwebdev/wordpressAnd the live site is coming from:
http://smcweb/wordpressSo, the live site seems to match, but not the dev site. So, perhaps there is something “up” with the dev site’s configuration where the fully qualified domain is not correct??? The license activation uses the core WP function
home_url()so it must be returninghttp://smcwebdev/wordpressinstead ofhttp://dev.smcweb/wordpress.I manually activated the support license key for
http://dev.smcweb/wordpressbut I suspect you will still not be able to update. Let me know either way.Steven Zahm
Keymaster@ Barbara
Here’s the link to the tutorial on how to change labels and other text in Connections.
Hope that helps!
Steven Zahm
Keymaster@ Lee Ann
You can add custom date dates, no need for custom fields. Here’s a link anthor support thread reply where another user asked the same question:
http://connections-pro.com/support/topic/types-as-data-fields-instead-of-hardcoded/#post-334238
I’ve linked directly to the answer. Hope that helps, let me know.
Steven Zahm
Keymaster@ Melinda
What are the actual fully qualified URLs for both site’s front/home page?
Steven Zahm
Keymaster@ Henny
Thanks, I added these to both Form and Link.
-
AuthorPosts
