hanlonwebdevs
Forum Replies Created
-
Forum: Plugins
In reply to: [wpForo Forum] Move to New DomainOK I will follow up after further testing, thank you.
Forum: Plugins
In reply to: [Discussion Board - WordPress Forum Plugin] Board Page Pagination Not workingIf anyone else has the same question. The solution was to set the Number of topics per page number in Discussion Board > Settings to the same number as the Blog pges to show at most setting in Settings > Reading
@hallsofmontezuma as @wjkarns mentioned we are both working together on the same issue and @wjkarns has taken the lead. I will now follow. If you require a new thread just let @wjkarns know and I will follow on the new thread.
Thanks that was fast ??
Forum: Plugins
In reply to: [Account Engagement] Cannot AuthenticateWe also had to create a Pardot only user and then in the plugin place in the new email, password, and key.
We had not updated the key. After updating the key we were able to successfully authenticate!
- This reply was modified 6 years, 11 months ago by hanlonwebdevs.
Forum: Plugins
In reply to: [Account Engagement] Cannot AuthenticateWe are facing the same issue as @rmaner and after contacting Pardot Support we have confirmed server settings and website settings are as they should be. The support is not mentioning that it must be a server issue but we have tried on 2 different servers on 3 different websites… Was @rmaner able to solve her issue? Was it an account setting issue? Please assist and thank you.
Forum: Plugins
In reply to: [SSL Insecure Content Fixer] Multisite Issue with URLAny updates here? Thanks!
Forum: Plugins
In reply to: [Gravity Forms Salesforce Add-on] TLS >1.0 UpdateWhen you say API mode, does that mean the plugin in general will work with TLS 1.2? We are currently using the Salesforce Web to Lead settings. Wish we could get some clarity here, very disappointing.
Forum: Plugins
In reply to: [Gravity Forms Salesforce Add-on] TLS >1.0 UpdateI have signed up for the update newsletter 4 months ago, still no details? Very important that word of the TLS update is provided.
Forum: Plugins
In reply to: [Gravity Forms Salesforce Add-on] TLS >1.0 UpdateSame question here, please an update would be helpful and needed. Thanks.
Great glad to help!
Forum: Plugins
In reply to: [Gravity Forms Salesforce Add-on] Converting from Web-to-Lead to APII am interested in this as well. Any information would be great.
Forum: Plugins
In reply to: [Gravity Forms Salesforce Add-on] Updating Web-to-Lead EndpointAgreed, I see that there is a support message about upcoming updates. Until notes on those updates are available can we please have confirmation on the message from jlilienstein regarding:
Thanks for much!
Not allowing me to update my old comment but below is a leaner version:
/**
* Rename specified Titles/Labels to Courses
* Translate Text using gettext filter/hook
* As for where to paste this : https://wp-events-plugin.com/tutorials/how-to-safely-add-php-code-to-wordpress/
*/
function change_where_metabox( $translated_text, $text, $domain ) {
switch ( $translated_text ) {case ‘Events’ :
$translated_text = __( ‘Courses’, ‘events-manager’ );
break;case ‘Add Event’ :
$translated_text = __( ‘Add Course’, ‘events-manager’ );
break;case ‘Add New Event’ :
$translated_text = __( ‘Add New Course’, ‘events-manager’ );
break;case ‘Event Tags’ :
$translated_text = __( ‘Course Tags’, ‘events-manager’ );
break;case ‘Separate event tags with commas’ :
$translated_text = __( ‘Separate course tags with commas’, ‘events-manager’ );
break;case ‘Event Tag’ :
$translated_text = __( ‘Course Tag’, ‘events-manager’ );
break;case ‘Edit Event Tag’ :
$translated_text = __( ‘Edit Course Tag’, ‘events-manager’ );
break;case ‘Add New Event Tag’ :
$translated_text = __( ‘Add New Course Tag’, ‘events-manager’ );
break;case ‘Popular Event Tags’ :
$translated_text = __( ‘Popular Course Tags’, ‘events-manager’ );
break;case ‘View Event’ :
$translated_text = __( ‘View Course’, ‘events-manager’ );
break;case ‘Edit Event’ :
$translated_text = __( ‘Edit Course’, ‘events-manager’ );
break;
}return $translated_text;
}
add_filter( ‘gettext’, ‘change_where_metabox’, 20, 3 );My apologies this is a more thorough change of ‘Events’ labels/text:
/** * Rename specified Titles/Labels to Courses * Translate Text using gettext filter/hook * As for where to paste this : https://wp-events-plugin.com/tutorials/how-to-safely-add-php-code-to-wordpress/ */ function change_where_metabox( $translated_text, $text, $domain ) { switch ( $translated_text ) { case 'Events' : $translated_text = __( 'Courses', 'events-manager' ); break; } switch ( $translated_text ) { case 'Add Event' : $translated_text = __( 'Add Course', 'events-manager' ); break; } switch ( $translated_text ) { case 'Add New Event' : $translated_text = __( 'Add New Course', 'events-manager' ); break; } switch ( $translated_text ) { case 'Event Tags' : $translated_text = __( 'Course Tags', 'events-manager' ); break; } switch ( $translated_text ) { case 'Separate event tags with commas' : $translated_text = __( 'Separate course tags with commas', 'events-manager' ); break; } switch ( $translated_text ) { case 'Event Tag' : $translated_text = __( 'Course Tag', 'events-manager' ); break; } switch ( $translated_text ) { case 'Edit Event Tag' : $translated_text = __( 'Edit Course Tag', 'events-manager' ); break; } switch ( $translated_text ) { case 'Add New Event Tag' : $translated_text = __( 'Add New Course Tag', 'events-manager' ); break; } switch ( $translated_text ) { case 'Popular Event Tags' : $translated_text = __( 'Popular Course Tags', 'events-manager' ); break; } switch ( $translated_text ) { case 'View Event' : $translated_text = __( 'View Course', 'events-manager' ); break; } switch ( $translated_text ) { case 'Edit Event' : $translated_text = __( 'Edit Course', 'events-manager' ); break; } switch ( $translated_text ) { case 'Event Settings' : $translated_text = __( 'Course Settings', 'events-manager' ); break; } return $translated_text; } add_filter( 'gettext', 'change_where_metabox', 20, 3 );