depiction
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Power Builder wont work when Yoast is activeThe issue is with Power Builder and I submitted a pull request to fix the issue. See https://github.com/templatemonster/power-builder-upd/pull/15 if you want to manually apply the fix to your site.
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Plugin not syncing with Mailchimp@ryanhungate I use a WordPress specific host (WPX Hosting), so I don’t have shell access to run Action Scheduler in CLI mode.
I installed the WP Crontrol plugin, thinking that it might help. After enabling it, the cron schedules page showed the following:
“There was a problem spawning a call to the WP-Cron system on your site. This means WP-Cron events on your site may not work. The problem was:
Unexpected HTTP response code: 404”The wp-cron.php file existed in the root directory, so I was confused why it’d think it didn’t exist. My host couldn’t figure it out either.
I ended up adding the following to wp-config.php to enable the alternate cron feature.
define('ALTERNATE_WP_CRON', true);
Orders now sync with Mailchimp.
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Plugin not syncing with Mailchimp@ryanhungate When I go to WooCommerce > Status > Scheduled Actions, then click “Run” next to a pending action, the action successfully completes.
As mentioned earlier, I don’t see any errors in any of the WooCommerce logs under WooCommerce Status. All of the messages in the logs include “NOTICE”, not “ERROR” or “FATAL”.
I tried disabling all plugins except WooCommerce and Mailchimp for WooCommerce. I then went to WooCommerce > Mailchimp to let the sync run again. After a few minutes I checked the “stats” responses in the Network tab. The stats always includes the same response with success equalling true, indicating that no progress is being made and that there were no errors.
{"success":true,"promo_rules_in_store":6,"promo_rules_in_mailchimp":4,"products_in_store":26,"products_in_mailchimp":20,"orders_in_store":1563,"orders_in_mailchimp":0,"date":"Mon, Sep 21, 2020 9:58 PM","has_started":true,"has_finished":false}
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Plugin not syncing with MailchimpThe WooCommerce status page says “Your server does not have the SoapClient class enabled”. Could that be the problem?
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Plugin not syncing with Mailchimp@ryanhungate When I go to WooCommerce > Status, the System Status tab has a check mark by WP Cron. The action scheduler package is running version 3.1.6.
The Scheduled Actions tab lists 102 pending actions.
The logs tab doesn’t have any errors, only notices. For example:
– NOTICE sync_store :: posting data
– NOTICE mailchimp-woocommerce-sync.started :: Starting Sync
– NOTICE action_scheduler.queue_job :: MailChimp_WooCommerce_Process_Coupons queued
– NOTICE action_scheduler.queue_job :: MailChimp_WooCommerce_Single_Order starts
– NOTICE debug :: Order ID XXXXX was pending and is now processing- This reply was modified 4 years, 6 months ago by depiction.
@magazine3 What additional info do you need? There are no visible error messages or console errors.
Forum: Plugins
In reply to: [User Profile Picture] Profile images not displaying@ronalfy Thanks for providing the template function. It works, but it doesn’t display the gravatar image if a user has a gravatar image. I ended up using the following code. If the user has a gravatar image, it displays it. If not, the local avatar image uploaded via this plugin will display. It feels a bit hacky, but it works.
<?php $authorID = get_the_author_meta('ID'); if (get_avatar_data($authorID)['found_avatar'] == 1) { echo get_avatar( $authorID ); } else if ( function_exists ( 'mt_profile_img' ) ) { mt_profile_img( $authorID, array( 'size' => 'thumbnail', 'attr' => array( 'alt' => get_the_author_meta( 'display_name' ) ), 'echo' => true, ) ); } ?>
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Can’t Add Checkbox OptionsThere is only one list in the account. I went to the “MC4WP” section and clicked “Renew Mailchimp Lists” button. I also verified the API key with Mailchimp. I still can’t add more than one option.
Forum: Plugins
In reply to: [Temporary Login Without Password] How to work with custom URL@malayladu I confirmed that the fix works.
@talextech I’m not sure what you are asking to copy/paste. The error message that I provided is from Chrome dev tools. Yoast SEO analyzes all content in the database. Yoast SEO responded with the following once I told them about this issue.
“We tried to reproduce this problem by installing the conflicting plugins on our testing site but to no avail. In our tests, the content analysis ran as expected while the plugins WP External Links and Yoast SEO Premium were active. This may indicate that the problem is only reproducible when the plugins are configured in a specific way.”
It’s not a big deal because the content analysis tool doesn’t need run often.
- This reply was modified 5 years, 3 months ago by depiction.
Forum: Plugins
In reply to: [Temporary Login Without Password] How to work with custom URL@malayladu As mentioned in a previous post, the redirect slug/url is “/wplogin”.
Forum: Plugins
In reply to: [Temporary Login Without Password] How to work with custom URL@malayladu In my post above from four days ago, I said that I’m using the latest version of the plugin (1.5.21).
Forum: Plugins
In reply to: [Temporary Login Without Password] How to work with custom URLThere are two problems:
1. The iThemes Security plugin’s hide backend feature defaults to “/wplogin” for the login url instead of “/wp-admin”. (It can be different than “/wplogin”, but I’m using the default.) The Temporary Login Without Password plugin doesn’t recognize that, so the login urls provided by it are wrong.
2. When I manually replace “/wp-admin” with “/wplogin” in the urls provided by this plugin and navigate to them, I’m directed to the main login screen with the username pre-populated and an empty password field. There are no errors on the page or in the dev tools console.
Forum: Plugins
In reply to: [Temporary Login Without Password] How to work with custom URL@malayladu I have the latest version of this plugin and iThemes Security. This plugin doesn’t work with iTheme Security’s hide backend/login feature.