nareshvachhani-1
Forum Replies Created
-
Here is the quick fix.
Search for below line code in file ( plugins\post-type-switcher\post-type-switcher.php )
add_action( 'manage_posts_columns', array( $this, 'add_column' ) ); add_action( 'manage_posts_custom_column', array( $this, 'manage_column' ), 10, 2 );
Replace with this code
$post_type_names = get_post_types( array(), 'names' ); foreach ( $post_type_names as $name ) { add_filter( "manage_{$name}_posts_columns", array( $this, "add_column" ) ); add_action( "manage_{$name}_posts_custom_column", array( $this, "manage_column" ), 10, 2 ); }
Hi,
There is JS code which append drop down to all class named “.inline-edit-col-right .inline-edit-col”. As class are not unique there are many plugins in WordPress which also uses “inline-edit-col-right” class to show their settings in quick edit section
If we restrict it to 1 then this problem will not occur.
Search for below line code in file ( plugins\post-type-switcher\assets\js\quickedit.js )
$( '.inline-edit-row' ).not( '#bulk-edit' ) .find( '.inline-edit-col-right .inline-edit-col' ) .append( $( '.inline-edit-row #pts_quick_edit' ) );
Replace with this code
$( '.inline-edit-row .inline-edit-col-right:first .inline-edit-col' ) .append( $( '.inline-edit-row #pts_quick_edit' ) );
Hi tpack,
Yes, you are right. Icegram shortcodes should be removed after deactivating Icegram plugin. We will surely work on this and the fix for the same will be available in the next version of Icegram.
Thanks for reporting.
Currently, it isn’t possible in Icegram. However in the next release we will surely consider this functionality.
Thanks for your suggestion.
Thank you for your kind words for plugins.
You can add class ‘fr’ to your image tag for proper alignment.
ORSimply replace below line in message body(editor) of your message,
<img class="alignright size-medium wp-image-2072" src="https://www.billiardeclipse.com/wp-content/uploads/P010813_12.50-300x225.jpg" alt="NYX" width="300" height="225">
With this code,
<img class="alignright size-medium wp-image-2072 fr" src="https://www.billiardeclipse.com/wp-content/uploads/P010813_12.50-300x225.jpg" alt="NYX" width="300" height="225" style=" ">
Try this out and let us know whether same is working fine or not.
Please give us your review for Icegram at Icegram-Review.Thank you.
I couldn’t able to see any light box related issue on any page of your WordPress site.
Is issue is still present? Please write back to us if you have any feedback or have any suggestions for Icegram. Thank you.