Deb Nath Utpol
Forum Replies Created
-
Hello @ricaneaga ,
Thanks for your query. This plugin has a dependency on jQuery. Most of the plugins in the WordPress ecosystem have this – even WordPress itself is dependent on jQuery. I think there is nothing additional in the plugin you have to load especially, we just call the jQuery instance from the WordPress core. Unfortunately, it is not possible to remove by now.
Thanks.
Hi @firestash ,
Sorry for the delay.
We had a lot of workload in the last few weeks.
Thanks for sharing your concern. We are trying to improve our plugin user experience. We will consider this in the future update.Thanks
Hi @firestash
I am not sure what do you mean. Would you please share some detailed information?
Thanks
Hi @ionfordldn,
You are welcome.
Hi @ionfordldn
This feature is not available in our plugin current version. This feature is already in our roadmap, We will add this feature (pro) in our upcoming version.
Thanks
Hi @azharidk
Thanks for using our WP Social Ninja Plugin.
You can disable schema snippet from the reviews template editor Schema Snippet settings, please follow this Screenshot
Thanks
Hi guerre64,
Thanks for reporting this issue.
We already fixed this issue in our dev version and you will get this fix in the next version. Now you can add this CSS code to your additional CSS.
.wpsr-ig-post .wpsr-ig-post-info .wpsr-ig-post-caption p{
word-break: break-word;
}Thanks
Hi @ansibansi ,
Please accept my apology for the late reply.
Would you please open a support ticket here [https://gutendev.com/submit-ticket/]
Our support team will help you to solve this issue.
Regards,
GutenDevHi @godshand ,
Please accept my apology for the late reply.
We fix this issue in our plugin latest version. Please update our plugin.
Let me know it’s working or not.
Regards,
GutenDevHi @jarekjanuszewski ,
Please accept my apology for the late reply.
This feature/hook is not available now on our plugin. We already mentioned our development team on this feature. I hope they will add this feature ASAP.
Have a nice day.
Regards,
GutenDevHi @armadillojam ,
Our support team already help you to solve this issue so that closing this ticket marking as the problem resolved.
Have a nice day
Thanks for using our plugin.
The problem you said is generated by WordPress Gutenberg because some parameters for custom post type are not compatible yet;
However, you can fix that by the following way:
In your function.php file (of your theme), add the following code to make the custom post type appear :
/**
* Add REST API support to an already registered post type.
*/
add_filter( ‘register_post_type_args’, ‘gpl_partners_args’, 10, 2 );
function gpl_partners_args( $args, $post_type ) {
if ( ‘Partners’ === $post_type ) {
$args[‘show_in_rest’] = true;
// Optionally customize the rest_base or rest_controller_class
$args[‘rest_base’] = ‘Partners’;
$args[‘rest_controller_class’] = ‘WP_REST_Posts_Controller’;
}
return $args;
}
/**
* Add REST API support to an already registered taxonomy.
*/
add_filter( ‘register_taxonomy_args’, ‘gpl_recipes_taxonomy_args’, 10, 2 );
function gpl_recipes_taxonomy_args( $args, $taxonomy_name ) {
if ( ‘genre’ === $taxonomy_name ) {
$args[‘show_in_rest’] = true;
// Optionally customize the rest_base or rest_controller_class
$args[‘rest_base’] = ‘genres’;
$args[‘rest_controller_class’] = ‘WP_REST_Terms_Controller’;
}
return $args;
}
Also, follow the screenshot [https://prnt.sc/pulg0f];
Change the post type name, show_in_rest = true, and rest-base (for the same taxonomy)
Let me know if that works;
If you still face this issue, please open a support ticket here, our support team will contact you ASAP [ https://gutendev.com/submit-ticket/ ]
-GutenDev
Forum: Plugins
In reply to: [Guten Post Layout - An Advanced Post Grid Collection] No Alt or Title tags?Hi @aurous ,
Please accept my apology for the late reply.
We added the image alt tag on our plugin latest version. Please update our plugin and grab this feature.
Regards,
GutenDevForum: Plugins
In reply to: [Guten Post Layout - An Advanced Post Grid Collection] Only run on Home PageHi @emelillo ,
Please accept my apology for the late reply.
We added this feature on our plugin latest version, now our plugin assets will load only on where you use our guten post layout block. Please update our plugin and grab this feature.
Regards,
GutenDev