edog5948
Forum Replies Created
-
And just noticed also, on the Data Types and Fields, I get many, many lines of:
Notice: Trying to get property of non-object in /home/…/wp-content/plugins/upi-crm-universal-crm-solution/admin/settings.php on line 428Notice: Trying to get property of non-object in /home/…/wp-content/plugins/upi-crm-universal-crm-solution/admin/settings.php on line 432
Notice: Trying to get property of non-object in /home/…/wp-content/plugins/upi-crm-universal-crm-solution/admin/settings.php on line 432
I am also getting an Activation error of this type (generated XXX characters of unexpected output…)
Additionally, when I go to the UpiCRM plugin tab, I see a number of database errors:
WordPress database error: [Table ‘wrdp1.wp_upicrm_users’ doesn’t exist]
WordPress database error: [Table ‘wrdp1.wp_upicrm_users’ doesn’t exist]
WordPress database error: [Table ‘wrdp1.wp_upicrm_leads_integration’ doesn’t exist]
WordPress database error: [Table ‘wrdp1.wp_upicrm_leads_integration’ doesn’t exist]
WordPress database error: [Table ‘wrdp1.wp_upicrm_leads_integration’ doesn’t exist]
WordPress database error: [Table ‘wrdp1.wp_upicrm_leads_integration’ doesn’t exist]
WordPress database error: [Table ‘wrdp1.wp_upicrm_leads_integration’ doesn’t exist]I recently upgraded to WP 5.1.0
I have loaded, activated, deactivated, deleted numerous times with the same results.
Even when I deactivate every other plugin I have, the errors still exist.
Forum: Plugins
In reply to: [WP Photo Album Plus] POTD url to include in Contact Form 7 messageAnd then use this in the Contact Form 7 Mail:
[wppa type=”url” photo=”#potd”][/wppa]Forum: Plugins
In reply to: [WP Photo Album Plus] POTD url to include in Contact Form 7 messageFound a solution.
Added this as a custom plugin.
—————————–
<?php/*
Plugin Name: AAAAAAAA –
Description: Custom Functions developed specifically for this website
*/
/* from https://stackoverflow.com/questions/13179355/wordpress-contact-form-7-custom-shortcodes */
// Allow custom shortcodes in CF7 HTML form
add_filter( ‘wpcf7_form_elements’, ‘dacrosby_do_shortcodes_wpcf7_form’ );
function dacrosby_do_shortcodes_wpcf7_form( $form ) {
$form = do_shortcode( $form );
return $form;
}// Allow custom shortcodes in CF7 mailed message body
add_filter( ‘wpcf7_mail_components’, ‘dacrosby_do_shortcodes_wpcf7_mail_body’, 10, 2 );
function dacrosby_do_shortcodes_wpcf7_mail_body( $components, $number ) {
$components[‘body’] = do_shortcode( $components[‘body’] );
return $components;
};?>
Forum: Plugins
In reply to: [WP Photo Album Plus] POTD url to include in Contact Form 7 messageMaybe I found something here:
https://www.howtosnippets.net/wordpress/make-custom-shortcodes-work-in-contact-form-7-mail-form-templates/Forum: Plugins
In reply to: [WP Photo Album Plus] POTD url to include in Contact Form 7 messageThank you for the response. Here are some tests and observations I made:
First:
From the response you gave to the text, I received the following in email:
Notice the echo statements get reduced to nothing inside the single quotes.Jacob N. Breetvelt wrote:
See https://wppa.nl/shortcode-reference/#misceltype :
Returns the url of a specified photo id. Examples:
[wppa type=”url” photo=”4711″][/wppa]
and
[wppa type=”url” photo=”#potd”][/wppa]
Example use in template (php):
echo ”;
This is equivalent to
echo ”;
but you can use photo=”#potd” in the shortcode version.
Example use in page content:———–
You are receiving this email because you subscribed to a forum topic.
Login and visit the topic to unsubscribe from these emails.
Second:
I added the several methods you mentioned to the Contact Form 7 Form and Mail. The Form is what the users sees, produced by the WordPress system. The Mail is the email that is received by me. The code I used for both the Form and the Mail is the same code.Here is what is observed when on the website ( the Contact Form 7 – Form):
POTD:
————–
Using shortcode:
https://empresswoods.com/wp-content/uploads/wppa/435.jpgphp call:
‘; ?>without php, just the echo:
echo ”;just the img src html:
Third:
And this is what is received in from the contact form email:Today’s photo of the day:
———————————
Using shortcode:
[wppa type=”url” photo=”#potd”][/wppa]php call:
<?php echo ‘‘; ?>
without php, just the echo:
echo ‘‘;
just the img src html:
My Observations:
- The shortcode method works great within the wordpress system.
- The echo and php methods do not work within the Contact Form 7 Form or Mail.
- The email system used for this www.ads-software.com forum is also exhibiting the same behavior.
Any insight you have into how to capture the POTD within the resulting email would be great.
I’ll also try and contact Contact Form 7 to see what they offer also.
Regards.
Forum: Plugins
In reply to: [WP Photo Album Plus] Masonry – even # rows no right side borderPerfect. Thank you.
Love this extension!!!!
Forum: Plugins
In reply to: [WP Photo Album Plus] Masonry – even # rows no right side borderForum: Plugins
In reply to: [WP Photo Album Plus] How to put one photo in multiple albumsFigured out how by myself:
On Moderate Photos page,
for each photo, there is a “Target album for copy/move” dropdown box.
Select the second album you want to copy the photo to, and then click the “copy photo” button.Works like a charm!
Forum: Themes and Templates
In reply to: [Coldbox] Blog images go blurry on hoverWorked like a charm! Thank you.
Forum: Fixing WordPress
In reply to: Using same logon credentials, one user can logon, other user cannotFixed.
It was a problem with the nameservers.It looked like the correct nameservers at the registrar, but the settings on the reseller server are needed to be checked to see if correct.
Support at the hosting company said: I’ve now corrected the NS records that were set in the DNS zone for <mydomain>.com
What a bunch of time lost on this one… ??