wallacelin
Forum Replies Created
-
Forum: Plugins
In reply to: [hCaptcha for WP] hCAPTCHA for Loading Dynamic Form?Hello, thank you for your response! For the code below, should I also add it to the page itself as well?
$result = hcaptcha_verify_post(); if ( null !== $result ) { echo esc_html( $result ); // Block processing of the form. }
Hello thank you for getting back to me so soon Louis. I turned off the plugin and swapped it out for another, but I have turned Smash Balloon feed back on that page.
Hello @slickremix thank you for getting back to me so quickly! I have checked and indeed after updating the plugin it now has a 55-day expiry! I’m not sure why it was not renewing on the older version, but I will be sure to check on the date of expiry to see if it will renew automatically as expected.
With that said I believe this is now resolved. Thank you for the clarification!
Forum: Plugins
In reply to: [eRoom - Zoom Meetings & Webinars] Show Webinar Details in Countdown?Hello, I have reactivated a demo of the Zoom Webinars and can confirm the agenda and countdown works fine with a valid plan! Thank you for your support, we’ll make an inquiry to purchase eRoom Pro.
Forum: Plugins
In reply to: [eRoom - Zoom Meetings & Webinars] Show Webinar Details in Countdown?We were using a demo of the Webinar to test the plugin that has expired. I’ll make a request to re-instate the demo so we can test this. However, I am pretty sure the issue was occurring while we have the demo active as well. Is this a known issue when testing eRoom with a demo? I shall let you know what I find.
Forum: Plugins
In reply to: [eRoom - Zoom Meetings & Webinars] Show Webinar Details in Countdown?Hello, I cannot find any errors in the console when I take a look at a webinar in the future.
We are looking to purchase eRoom pro since our client would be interested in selling webinars as well, however, we would love to be able to resolve this issue first. Any chance this can be fixed? Thank you!
- This reply was modified 3 years, 9 months ago by wallacelin. Reason: added more info
Forum: Plugins
In reply to: [WP LinkedIn Auto Publish] LinkedIn Connection Not WorkingHi, now I need to re-connect the plugin to a different account, it does not work like the first time I tried it. It keeps failing to make any changes every time I tried to connect to LinkedIn, even after resetting the plugin settings.
It seems to me the step where a LinkedIn app is made via the website does not always succeed. Sometimes I get error 502. I have not been able to connect to the new account after several repeated attempts.
Edit: Most likely guess I have is MailOptin is having conflict with the app, but I can’t verify that right now.
- This reply was modified 3 years, 10 months ago by wallacelin.
Forum: Plugins
In reply to: [eRoom - Zoom Meetings & Webinars] Show Webinar Details in Countdown?Hello, I have further test my website for themes and plugins conflict by disabling everything. I still do not see the webinar agenda under the countdown for some reason. I believe there might be an issue from either the plugin or Zoom Webinar platform.
Can we confirm this is an issue and can we have it fixed? Thank you!
Forum: Plugins
In reply to: [eRoom - Zoom Meetings & Webinars] Show Webinar Details in Countdown?Hello,
It does not seem to show the webinar agenda description on my website. In my post I described the scenario: If a webinar is set in the future and it is currently counting down, it will not show the agenda description. Inspecting the page does not reveal any agenda that is hidden.
Forum: Plugins
In reply to: [WP LinkedIn Auto Publish] LinkedIn Connection Not WorkingAlright so I don’t want to keep re-editing the same response so here’s another one.
Pretty much right after I re-edited my reply above, the plugin is working. At first it was not letting me select the default profile at all. After re-clicking my account under “Profile Selection” it finally shows it under “Sharing Options”.
The plugin options on a single post page also appears to be working now. Although for some reason posts do not seem to be shared to LinkedIn automatically by default, even though the additional setting “By default do not share posts to LinkedIn” is OFF.
Based on my experiences, it may take some repeated attempts to have the account connected and the default profile selected before sharing posts is good to go. Nevertheless I got it working now.
All of this is done while other plugins are disabled.
Forum: Plugins
In reply to: [WP LinkedIn Auto Publish] LinkedIn Connection Not WorkingMessage edited following updates:
Hello, I have disabled all plugins and attempt authentication. Now it can connect the account but I am still unable to share my posts to my LinkedIn profile. I understand you have to select the default profile again even if you only have one account connected?
Under the Sharing Options, I do not see or get to select the default profile at all. This section is just blank for me. Under the single post settings, I also do not see the default profile selection or a manual publish post to LinkedIn button. They seem to be hidden from the screen options.
This still occurs when I have disabled all other plugins. Cannot understand why. Can we resolve this so all available settings, options, and buttons for the plugin appear properly so we can actually share the posts?
- This reply was modified 3 years, 11 months ago by wallacelin. Reason: plugin is now working so status is updated
- This reply was modified 3 years, 11 months ago by wallacelin. Reason: Found more issues
Nevermind, I checked the website’s plugins and turns out it was Autoptimize caching. Issue is now resolved by turning it off.
Nevermind, turns out it was just Autoptimize. D’oh!
Hello @kokkieh,
Thank you, I have modified and added this filter to my child theme. While I can confirm this added support for my post types (posts and the portfolio), I still can’t get infinite scroll to work on the portfolio archives.
This is my filter:
/* Add inifinite scroll support for blog and portfolio */ function jetpack_infinite_scroll_support() { $supported = current_theme_supports( 'infinite-scroll' ) && ( is_home() || is_post_type_archive('post') || is_post_type_archive('x-portfolio') ); return $supported; } add_filter( 'infinite_scroll_archive_supported', 'jetpack_infinite_scroll_support' );
Getting desperate here, so I’m going to share the rest of my code:
/* Enable infinite scroll by Jetpack */ function jetpack_infinite_scroll_init() { add_theme_support( 'infinite-scroll', array( 'type' => 'click', 'container' => 'content', 'render' => 'jetpack_infinite_scroll_render', 'posts_per_page' => get_option('posts_per_page'), 'footer' => 'global-footer', 'footer_widgets' => true, 'footer_callback' => 'no_jetpack_footer', ) ); } add_action('after_setup_theme', 'jetpack_infinite_scroll_init');
and for my render function adapted for X Theme:
/* Render posts on infinite scroll */ function jetpack_infinite_scroll_render() { $is_filterable_index = is_home() && x_get_option( 'x_ethos_filterable_index_enable' ) == '1'; if (get_post_type() == 'post') { if ( $is_filterable_index ) : x_get_view( 'ethos', '_index' ); else : x_get_view( 'global', '_index' ); endif; } else if (get_post_type() == 'x-portfolio') { x_get_view( 'global', '_portfolio'); } }
By all means this should be able to render the portfolio posts, but nothing different occurs. Either my render code is wrong or I am missing some other settings?
Forum: Plugins
In reply to: [WooCommerce Square] Payment failing (Bad_request: intent_mismatch)Hello all, the same issue has occurred on my site (BAD REQUEST: INTENT_MISMATCH) and I was running 2.1.1 before I downgraded to 2.0.8. Seems like the issue only occurred to one customer but I cannot confirm much else.
I am also running WooCommerce 3.9.2 and WordPress 5.3.2. Perhaps need to update these?
Looking forward to a resolution, thank you!