HW
Forum Replies Created
-
Well I found my issue after troubleshooting all day! I went for one last check in my wp-config.php and this line had been leftover from my local environment.
define( ‘WP_ENVIRONMENT_TYPE’, ‘local’ );Also confirm same issue here. My other sites, identical setups are having no issues but this one site randomly flatlined same date.
Forum: Fixing WordPress
In reply to: WordPress Interactivity IssueI am having this issue on iPhone 13 pro max only on safari and chrome and i can see it affect the menu and other JS functions when the notice pops up on inspector when testing.
Forum: Plugins
In reply to: [Contact Form 7] Query Regarding CF7 Shortcode Display IssueHi there, I have the latest version of this plugin but the form displays the shortcode on the Single and Home templates only. Front-page template and page templates have no issues. This has been since the security updates on WP that stopped the shortcode generation. Is there a workaround for these templates? I insert as the CF7 block like normal.
Thanks!
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] PHP-warningsI am also getting this when trying to access the event categories archive templates. I see these two warnings instead.
It would be great if the registration form could eventually be in a filter so we could switch out for different cases e.g. redirect users to a custom registration form.
Thanks!
I actually solved this myself by changing the explode character from a comma to a straight line and used the straight line to separate out multiple categories assigned to a post since some of my categories have a comma in their name which was breaking the import. Adjusted in “wp-ultimate-csv-importer-pro/importExtensions/TermsandTaxonomiesImport.php” file starting line 280:
if (strpos($cat_value, '|') !== false) { $get_category_list = explode('|', $cat_value); } else { $get_category_list[] = $cat_value; }
- This reply was modified 3 years, 11 months ago by HW.
Hi,
Same issue here. Can you share the patch. I’m currently working with support on another issue.
Thanks!
For reference, this is what order-details.php is like now I adjusted it.
<?php if ( ! defined( 'ABSPATH' ) ) { exit; } class VI_WOO_ORDERS_TRACKING_FRONTEND_ORDER_DETAILS { protected $settings; public function __construct() { $this->settings = new VI_WOO_ORDERS_TRACKING_DATA(); add_action( 'woocommerce_order_item_meta_end', array( $this, 'woocommerce_order_item_meta_end' ), 10, 3 ); } /** * @param $item_id * @param $item * @param $order WC_Order * * @throws Exception */ public function woocommerce_order_item_meta_end( $item_id, $item, $order ) { if ( is_account_page() ) { VI_WOO_ORDERS_TRACKING_ADMIN_WOO_ORDER_EMAIL::include_tracking_info_after_order_item( $item_id, $item, $order ); } } }
Thanks
Thanks for getting back Cory. Appreciate it!
Forum: Plugins
In reply to: [Simple Login Log] Not seeing the loginSame issues for me. Did you ever manage to resolve this?
Thanks
Forum: Plugins
In reply to: [Simple Membership] Cache bug, logged in user cannot access contentI actually just fixed my issue from another thread. It was an ExpiresByType line in .htaccess that was set to 1 month for text/html. I changed it to the below and it is now fixed.
ExpiresByType text/html “access plus 0 seconds”
Forum: Plugins
In reply to: [Simple Membership] Cache bug, logged in user cannot access contentHi, I wanted to add to this because I am having the exact same issue as of about a week ago but I do not have simple membership plugin. I don’t have a caching plugin anymore and have completed cleared out everything and flushed permalinks etc. Stripped through all of my theme functions.
My scenario: If I am logged out and navigate to the bbpress page first and then go to the homepage and login then navigate back to the bbpress page it appears as if i am logged out until I refresh the page. This was reported to have began happening about a week or so ago.
I’ve deactivated every plugin and tested on a twenty-seventeen theme and still have the issue. I definitely think it is a caching issue and I came across a post where someone had mentioned a server-level caching issue. My hosting is with HostGator. I’m going to speak with them and see if they’ve adjusted anything recently.
Thanks
I am having the exact same issue. They work perfect with http and not at all for https. Appreciate the help. Thanks
Forum: Plugins
In reply to: [Search Everything] Not searching product sku'sHi,
This is also happening to me too and a few other people I’ve seen on here that have had no response. Is there any kind of fix for this other than the above provided links?
Thanks