Stoyan Kostadinov
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Image Gallery] Removing default content filter?Hello, @cyberwolfer.
You can use the remove_filter() function. For our content filter you can use the following code:
remove_filter( 'the_content', 'easy_image_gallery_append_to_content' );
Thanks for using our plugin.
Greetings,
Stoyan.Forum: Plugins
In reply to: [Easy Image Gallery] Checking for images in the image gallery?Hello, @cyberwolfer.
Yes, you can use the following function:
easy_image_gallery_count_images( GALLERY ID );
Thanks for using our plugin.
Greetings,
Stoyan.Forum: Plugins
In reply to: [Easy Image Gallery] Dont do QUICK EDIT on your pages/postsWe fixed the problem and will release after the tests.
Thanks for the reports.
Greetings.
Forum: Plugins
In reply to: [Easy Image Gallery] Dont do QUICK EDIT on your pages/postsThanks, for the report. We will check.
Forum: Plugins
In reply to: [DX Delete Attached Media] Is this plugin still maintained?Yes, the plugin is working on 5+. We will update the readme, soon. Thanks ??
Greetings.
Forum: Plugins
In reply to: [Easy Image Gallery] Gallery ID’sHello @tt2014.
You can get the shortcode for every gallery from the selected place on the screenshot.Greetings,
Stoyan from DevriX.- This reply was modified 5 years, 11 months ago by Stoyan Kostadinov.
Forum: Plugins
In reply to: [Easy Image Gallery] Thumbnail sizeHello,
this option is comming from WordPress and it’s changing the image size, not the image box size. If you open the image in new tab you can see the right size!If you want to change the size of the images in the grid, you can make it with CSS.
Greetings,
Stoyan from DevriX.Forum: Plugins
In reply to: [Easy Image Gallery] image gallery deleted on quick edit saveHello, we patched the problem, and it’s fixed in our next version.
You can temporarily solve the problem by removing, rows 374, 373 or replace the easy_image_gallery_save_post function with the updated one.
The file is: easy-image-gallery/includes/metabox.php
/** * Save function * * @since 1.0 */ function easy_image_gallery_save_post( $post_id ) { if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return; $post_types = easy_image_gallery_allowed_post_types(); // check user permissions if ( isset( $_POST[ 'post_type' ] ) && !array_key_exists( $_POST[ 'post_type' ], $post_types ) ) { if ( !current_user_can( 'edit_page', $post_id ) ) return; } else { if ( !current_user_can( 'edit_post', $post_id ) ) return; } if ( isset($_POST['image_gallery']) && !empty($_POST['image_gallery']) ){ $galleries = array(); foreach ($_POST['image_gallery'] as $gallery){ if ($gallery['DATA'] != null){ $convert_to_arr = explode(',', $gallery['DATA']); }else{ $convert_to_arr = null; } if( !isset( $gallery['OPEN_IMAGES'] ) ){ $gallery['OPEN_IMAGES'] = 'off'; } $gallery['DATA'] = $convert_to_arr; $galleries[] = $gallery; } update_post_meta( $post_id, '_easy_image_gallery_v2', $galleries ); delete_post_meta( $post_id, '_easy_image_gallery' ); } // link to larger images if ( isset( $_POST[ 'easy_image_gallery_link_images' ] ) ) update_post_meta( $post_id, '_easy_image_gallery_link_images', $_POST[ 'easy_image_gallery_link_images' ] ); else update_post_meta( $post_id, '_easy_image_gallery_link_images', 'off' ); do_action( 'easy_image_gallery_save_post', $post_id ); }
If you have any other problems or questions, we are ready to answer. Thanks for using our plugins.
Stoyan from DevriX.
- This reply was modified 6 years, 4 months ago by Stoyan Kostadinov.
Forum: Plugins
In reply to: [Easy Image Gallery] image gallery deleted on quick edit saveYes, we reproduced the problem and will try to fix very quickly. We will update you here when we are ready.
Thanks for the report.
Greetings,
Stoyan from DevriX.Forum: Plugins
In reply to: [Easy Image Gallery] SHORTCODE in order errorAre you using the Shortcode? If you are not, you not be able to see the gallery in the FE part.
I think you see this message only in the old galleries?
Greetings,
Stoyan from DevriX.Forum: Plugins
In reply to: [Easy Image Gallery] Link Images to larger sizesIt’s good idea too. It’s going in our TODO list. Thanks for the suggestions, we will try to implement this as quickly as possible.
Thanks again,
Stoyan.Forum: Plugins
In reply to: [Easy Image Gallery] Gallery stops at 28 imagesI think we reproduced the problem. It’s not number of images limit. The gallery stop, if the image doesn’t have thumbnail. It’s fixed in the next version.
Thanks,
Stoyan.Hello.
We tried few times to reproduce your problem with your theme, the mentioned plugin but without success.
In my case, I created few posts with galleries from our plugin. After this, one page with the posts widget -> (https://www.ads-software.com/plugins/wp-responsive-recent-post-slider/). Activated the mentioned theme, and 3 others and everywhere, everything is okay.
I have one suggestion: Can you please create new page in your installation if you not, and try again.
Regards,
Stoyan.Forum: Plugins
In reply to: [Easy Image Gallery] Link Images to larger sizesWe will try to add _blank in our next versions. Thanks
Forum: Plugins
In reply to: [DX Delete Attached Media] Image used on Multiple Posts? Still deletes?Hello. While a post uses the photo, it will not be deleted. If you delete all posts that use it then it will not exist anymore.
Greetings,
Stoyan!