Anshul
Forum Replies Created
-
Closing this thread
Thank you Kathryn. This works
Forum: Plugins
In reply to: [Category Grid View Gallery] CVE-2013-4117Hello Kremental,
I am the original author of this plugin. Unfortunately I did not have time to work on the further development of the plugin. Let me know how you want to collaborate.
Forum: Plugins
In reply to: [Category Grid View Gallery] possible to insert two galleries on same page?thats a limitation of pagination. You cannot use 2 paginated galleries on one page. You can still use multiple shortcodes without pagination though.
Forum: Plugins
In reply to: [Category Grid View Gallery] Autograb 2nd image instead of 1stCan you post the link of the page where you have used the plugin?
You are correct about the line numbers. My bad. But this change works for me. Is it cache problem? Unlikely, but clear your cache and see if there is any difference
Forum: Plugins
In reply to: [Category Grid View Gallery] Image Quality Adjustment Doesn't Work With 2.3Released a minor update with the fix.
Forum: Plugins
In reply to: [Category Grid View Gallery] Autograb 2nd image instead of 1stgo to PLUGIN_DIR/category-grid-view-gallery/includes/CatGridView.php
Make the following changes :
Line 45 : Change$cg_img = $matches [1] [0];
to
$cg_img = $matches [1] [1] ? $matches [1] [1]: $matches [1] [0];
and
Line 80 : Change
$cg_img = $matches [1] [0];
to
$cg_img = $matches [1] [1] ? $matches [1] [1]: $matches [1] [0];
This will first look for the 2nd image. If its not available, it will look for the first image.
In case of the featured image option checked, the order for search of image would be featured image -> 2nd Image -> 1st Image
Forum: Plugins
In reply to: [Category Grid View Gallery] Autograb 2nd image instead of 1stI would say yes. there is. it works on a preg_match php function. Modifying the logic in php should do the trick. Unfortunately, i do not have much time these days to work on customizations
Forum: Plugins
In reply to: [Category Grid View Gallery] Image Quality Adjustment Doesn't Work With 2.3I look into it tonight
Forum: Plugins
In reply to: [Category Grid View Gallery] Thumbnails STILL wont show! :(Which image are you trying to pull. On your test page the plugin seems to be working as it is pulling the default image (the one that says “No Image Available”). This is happening because there are no images present in your posts.
If you are trying to pull the featured image, Go to the plugin settings and select the source of thumbnails as “featured image”.You can even change the default image to something of your own from the plugin settings page. For more information, go to :
https://www.evilgenius.anshulsharma.in/cgview/usage-options/Please send me the link to the page where you are facing the error. Additionally, please follow this thread if your problem is the same :
Yes, use [cgview lightbox=0] in the arguments
for more options see :
https://www.evilgenius.anshulsharma.in/cgview/usage-options/I have used easypaginate for the pagination. You can easily configure it to you needs. Then you can modify the css file to bring in the numbers.
See https://cssglobe.com/easy-paginate-jquery-plugin-for-pagination/
for the list of options.
Go to PLUGIN_DIR/js/cgview.jsYou will have to modify this part
/* Pagination */ $(document).ready(function(){ if(paginateVal){ $('ul#cg-ul').easyPaginate({ step:paginateVal, nextprev:false, controls:'cg-page-controls' }); } }); });
and then go to the PLUGIN_DIR/css/style.css
and modify the/*Pagination Controls style */
sectionplease contact your web hosting service provider first. May be they can help you with both the issues.
Its a commnon issue with the Timthumb script.
Please follow the instructions on the following links.
https://themeforest.net/forums/thread/tim-thumb-problem/32860
https://wptuts.info/tricks/timthumb-500-internal-server-error/