jchambo
Forum Replies Created
-
Forum: Plugins
In reply to: [Timetable and Event Schedule by MotoPress] ReWrite Errors in Dashboard@eugenewhite – I deactivated everything on my website, all plugins, etc. and activated ONLY your plugin, while using the Divi Theme, and still see the ReWrite errors. When every other plugin is activated, other than Timetable and Event Schedule, there are no errors.
I even deleted my .htaccess file and created a new one with the default settings, same results. Maybe your plugin has a conflict with the Divi Theme in it’s latest releases?
@kellymetal – Thanks for the reply. It doesn’t sound like MailPoet is going to be a good fit then. I’m not really taking advantage of MailPoet’s subscriber functionality, I just wanted to use the First Purchase email functionality without having to deal with “subscribers” in your actual platform.
Can anyone from MailPoet please look into this, or at least confirm that your plugin doesn’t send emails out while WooCommerce is in “Test Mode” for New Orders?
Here is a link showing that these emails have been “Sent to 0 customers” even though purchases / orders / subscriptions have been tested in “Test Mode” successfully.
https://i.imgur.com/7aTQMhg.jpg
Like I’ve said, all emails via WooCommerce send perfectly fine, it’s just not these that send after an order is Completed for some reason. Thoughts? Is this just something that doesn’t send in “Test Mode” enabled in WooCommerce ???
This issue is still occurring with the Divi Theme / Theme Builder.
Is there any way to align items horizontally, not vertically? For example, if you create a new Radio Button, it puts the options in a vertical format, not horizontal.
Thanks!
Looks like deleting the seo-by-rank-math folder in /public_html/wp-content/plugins and re-installing via the plugins directory did the trick.
@wpmudevsupport14 Ya I mean how many years and requests does it take to actually get this integration moving here? I see requests from 4 years ago asking for MailerLite integration. What’s the hold up?
Isn’t MailerLite’s API open?
https://developers.mailerlite.com/docs/getting-started-with-mailerlite-api
- This reply was modified 4 years, 9 months ago by jchambo.
Update: Setting the “Display Style” to Radios resolves the issue, but you guys definitely have a bug on your hands when the display style is set to “Dropdown.”
Forum: Plugins
In reply to: [uCare - Support Ticket System & HelpDesk] Your Demo is downActually… it’s not. Malwarebytes is blocking your website with my Real Time Protection…
You may want to get this checked out… if it’s happening for me, it’s happening for anyone who has Malwarebytes installed using Real Time Protection.
EDIT: That was it. I resolved it by removing my theme’s Open Graph Tags code in my functions.php file.
Hope if someone else has this issue you check here first like I didn’t. lol, thanks anyway!
EDIT: Here is the code from my functions.php file on my theme.
Is is it safe to say this is the source of conflict? Can I simply just “delete” all of this code from the functions.php file since Yoast SEO is handling my Open Graph data? Will anything negative happen if I do so?
/* OPEN GRAPH TAGS START */ function scalia_open_graph() { global $post; $og_description_length = 300; $output = "\n"; if (is_singular(array('post', 'scalia_pf_item'))) { // title $og_title = esc_attr(strip_tags(stripslashes($post->post_title))); // description $og_description = trim($post->post_excerpt) != '' ? trim($post->post_excerpt) : trim($post->post_content); $og_description = esc_attr( strip_tags( strip_shortcodes( stripslashes( $og_description ) ) ) ); if ($og_description_length) $og_description = substr( $og_description, 0, $og_description_length ); if ($og_description == '') $og_description = $og_title; // site name $og_site_name = get_bloginfo('name'); // type $og_type = 'article'; // url $og_url = get_permalink(); // image $og_image = ''; $attachment_id = get_post_thumbnail_id($post->ID); if ($attachment_id) { $og_image = wp_get_attachment_url($attachment_id); } // Open Graph output $output .= '<meta property="og:title" content="'.trim(esc_attr($og_title)).'"/>'."\n"; $output .= '<meta property="og:description" content="'.trim(esc_attr($og_description)).'"/>'."\n"; $output .= '<meta property="og:site_name" content="'.trim(esc_attr($og_site_name)).'"/>'."\n"; $output .= '<meta property="og:type" content="'.trim(esc_attr($og_type)).'"/>'."\n"; $output .= '<meta property="og:url" content="'.trim(esc_attr($og_url)).'"/>'."\n"; if (trim($og_image) != '') $output .= '<meta property="og:image" content="'.trim(esc_attr($og_image)).'"/>'."\n"; // Google Plus output $output .= "\n"; $output .= '<meta itemprop="name" content="'.trim(esc_attr($og_title)).'"/>'."\n"; $output .= '<meta itemprop="description" content="'.trim(esc_attr($og_description)).'"/>'."\n"; if (trim($og_image) != '') $output .= '<meta itemprop="image" content="'.trim(esc_attr($og_image)).'"/>'."\n"; } echo $output; } add_action('wp_head', 'scalia_open_graph', 9999); function scalia_open_graph_namespace($output) { if (!stristr($output,'xmlns:og')) { $output = $output . ' xmlns:og="http://ogp.me/ns#"'; } if (!stristr($output,'xmlns:fb')) { $output=$output . ' xmlns:fb="http://ogp.me/ns/fb#"'; } return $output; } add_filter('language_attributes', 'scalia_open_graph_namespace',9999); /* OPEN GRAPH TAGS FINISH */Forum: Plugins
In reply to: [Contact Form 7] emails are submitted successfully but disappearSame issue for me.
Forms just appeared to flat out stop working. I’m on all recent versions of WP and CF7.
Help?
Forum: Plugins
In reply to: [Active Directory Integration] User Login Not Working suddenly?SOLUTION:
I resolved the issue. Change the BASE DN to the following:
Let’s say your Domain is: support.google.com, you would use the following:
DC=support,DC=google,DC=com
I didn’t need the OU in front of it at all.
Hope that helps others.