jiggaman
Forum Replies Created
-
Forum: Plugins
In reply to: [CardPointe Payment Gateway for WooCommerce] captcha requiring 2x submissionI have isolated the issue seems to be isolated to the plugin google tag manager.
https://www.ads-software.com/plugins/duracelltomi-google-tag-manager/
I am not running that plugin for the client/not responsible for what tracking is set up, I just know that if i disable the plugin then your re-captcha set up works.
So please check the possibly compatibility scenarios with that plugin (ie the activation of the plugin itself, or what type of tracking code could effect your captcha for performing correctly)
Most of your clients won’t complain because most wont test with real money, so please test on your end.
Take care
hello?
Forum: Plugins
In reply to: [SocketLabs] multisite#bump
Forum: Reviews
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Pro Version is Trashworks for me…which schema isn’t working and whats it doing?
Forum: Plugins
In reply to: [WooCommerce] Disable Wizard for Multisite?Hey guys i’m seeing the same issue. SO is it possible to get one of your engineers to address this issue?
I have the following two filters in my functions files of the themes which in theory should stop the wizard but..dont.
Also note I the user has started the wizard but stopped at step 3. So the expected result should be for the wizard to no longer redirect after the filter is active.
add_filter( 'woocommerce_enable_setup_wizard', function( $true ) { return false; }, 999 ); add_filter( 'woocommerce_prevent_automatic_wizard_redirect', '__return_false', 999 );
Want to get this resolved, thanks guys.
Forum: Plugins
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Latest update failedcan you revert back to the older version by manually uploading it to your site?
Forum: Plugins
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] SEO Scorehttps://rankmath.com/kb/filters-hooks-api-developer/#seo-score
You can explore this area, i think there is something here for you.
i stopped filtering and just wrote my own shortcode so crisis averted.
/** * Get the title of the post to use as a replacement. * * @return string|null */ public function get_title() { // Get post type name as Title. if ( is_post_type_archive() && ! Post::is_shop_page() ) { $post_type = $this->get_queried_post_type(); return get_post_type_object( $post_type )->labels->name; } return Str::is_non_empty( $this->args->post_title ) ? stripslashes( $this->args->post_title ) : null; }
Now having trouble with this function i think. I am attempting to filter rank_math_rich_snippet and I need the title, but for some reason even though i am specifying a page id the snippet is returning all the content except for the title.
works properly on my test site but not on my older network sites…ideas why? Is this a data integrity issue?
Whats up guys, so regarding get_schema_by_shortcode_id I rewrote the function so you can use it in your next release, it works, not sure its optimized but it seems to work:
public static function get_schema_by_shortcode_id( $post_id ) { $data = self::table() ->select( 'meta_id' ) ->select( 'meta_value' ) ->where( 'post_id', $post_id ) ->whereLike( 'meta_key', 'rank_math_schema', '' ) ->get(); $schemas = []; foreach ( $data as $schema ) { $id = 'schema-' . $schema->meta_id; $schemas[ $id ] = maybe_unserialize( $schema->meta_value ); } if ( ! empty( $schemas ) ) { return [ 'post_id' => $post_id, 'schema' => $schemas[$id], ]; } return false; }
I appreciate all the hard work you guys have done and hope this helps.
public static function get_schema_by_shortcode_id
is broken and needs to be fixed.
maybe_unserialize( $data->meta_value ) is unexpectedly returning the content of the post or an id number but is not returning proper data in the field:
'schema' => maybe_unserialize( $data->meta_value )
and for the shortcode with an ID this needs to return the proper data.
Hope that helps
I was able to get the shortcode working after reverting back, but the issue of the shortcode no longer recognizing the the “id” is a problem still in the newer versions after 1.47.1
I am also experiencing that when revert back to 1.47.1 the functionality of using
[rank_math_rich_snippet id=”3″]
No longer shows the data..so i’m guessing you changed the structure of something…?
Anyways please review this as I had enjoyed using it in my templates and would like to use the functionality again asap.
[rank_math_rich_snippet id="3"]
Why did this stop working?
rich_snippet shortcode is creating a summary…but that summary is not properly filtering out content inside the tags: <style> or <script> ..needs to be fixed.