Satinder Singh
Forum Replies Created
-
you have customized a lot we can’t provide support for too customized template because we don’t know exactly how you added customization code.
Please try below custom css, it may help you to fix footer hidden issue.
.epta-sidebar-area { margin-bottom: 600px; }
Forum: Reviews
In reply to: [Cool Timeline (Horizontal & Vertical Timeline)] Good but…Thanks for suggestion, we will sure make our demos and settings documents more clear. If you are still facing any issue in setting up a timeline design that you want, then you can connect with our support at [email protected]
Forum: Reviews
In reply to: [Cool Timeline (Horizontal & Vertical Timeline)] Good but…Hi Brian, Thanks for your feedback, if you have some suggestions we will sure try to implement, actually our great users(like you) always provide us many ideas to build this plugin more perfect!
Sorry currently drag stories up/down and add story in between are not available inside instant builder because we just released instant timeline builder inside our timeline plugin a few days ago, so we implemented only basic features inside its first release and we are working on other features currently. We will sure improve it more in upcoming days.
Actually we are showing small icon images inside icon placeholder but here you have customized the css to make icon-wrapper size large while images are still small, need to customize image size also for that, as you are using pro version so please contact pro support team at [email protected] for that, hope they can provide you code.
- This reply was modified 5 years, 8 months ago by Satinder Singh.
Forum: Reviews
In reply to: [Events Shortcodes For The Events Calendar] ParametersWe have already released this feature “all” in our pro version, and soon we will also provide this in free version (update is coming next week).
It is a small code adjustment if you need quick support for that then you can directly contact our support team at [email protected]
Currently best way to represent past+future events:- put 2 shortcodes on a page:-
Upcoming Events:-
[events-calendar-templates category="all" template="default" style="style-1" date_format="default" limit="20" order="ASC" hide-venue="no" time="future"]
Past Events:-
[events-calendar-templates category="all" template="default" style="style-1" date_format="default" limit="20" order="DESC" hide-venue="no" time="past"]
- This reply was modified 5 years, 8 months ago by Satinder Singh.
It should work there may some conflict, can you please follow up inside our pro support email thread, I’ll help you to resolve it quickly from there.
Forum: Plugins
In reply to: [Cool Timeline (Horizontal & Vertical Timeline)] Compatibility with WPML CMSRight Click on your browser and select INSPECT or in chrome press CTRL+SHIFT+I
if you will see some errors there then share that screenshot, we don’t have purchased version of WPML to check it at our side, otherwise we will check it ourself.
Forum: Plugins
In reply to: [Cool Timeline (Horizontal & Vertical Timeline)] Compatibility with WPML CMSWPML is a paid plugin, so we are unable to check compatibility, can you please share more details, like your browser console screenshot at [email protected]
We will sure provide a solution if something wrong or conflict from our side.
Forum: Plugins
In reply to: [Cool Flipbox - Shortcode & Gutenberg Block] Flipboxes wrap to new lineuse this custom css:-
.cfb_wrapper * { box-sizing: border-box; }
*Also never share any login details on public support forums.
Forum: Plugins
In reply to: [Cool Timeline (Horizontal & Vertical Timeline)] Compatibility with Yoast SEO@lhommedecosse i checked there is no such issue at our side, i have checked it with multiple themes so if this issue is coming at your side then there may be some conflict with some other plugin or your theme. you can test via disabling some plugins and changing your theme.
Forum: Plugins
In reply to: [Cool Timeline (Horizontal & Vertical Timeline)] Compatibility with Yoast SEOcan you please explain a little more where it disappears on hover? we will sure add some quick fix if necessary.
Use this custom css, it will help you for a better view:-
#ect-grid-wrapper .style-3 .ect-grid-event-area, .ect-grid-title, .ect-grid-venue, .ect-grid-cost, .ect-grid-readmore, #ect-grid-wrapper .ect-grid-readmore a{ box-sizing: border-box; } .ect-grid-cost, .ect-grid-readmore { width: 100% !IMPORTANT; padding-top: 10px; }
Rest, show number of tickets is a feature of premium version of the events calendar plugin, please contact with our premium support team at https://eventscalendartemplates.com/contact-us/
- This reply was modified 6 years ago by Satinder Singh.
Forum: Plugins
In reply to: [Swift Performance Lite] Cache CSS, JS & Images OnlyOK
I added below lines in custom htaccess section and it is working fine.
<IfModule mod_expires.c> ExpiresActive On ExpiresDefault A2592000 <FilesMatch "\.(txt|xml|js)$"> ExpiresDefault A2592000 </FilesMatch> <FilesMatch "\.(css)$"> ExpiresDefault A2592000 </FilesMatch> <FilesMatch "\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav|mp4|m4v|ogg|webm|aac)$"> ExpiresDefault A2592000 </FilesMatch> <FilesMatch "\.(jpg|jpeg|png|gif|swf|webp)$"> ExpiresDefault A2592000 </FilesMatch> </IfModule> <IfModule mod_headers.c> <FilesMatch "\.(txt|xml|js)$"> Header set Cache-Control "max-age=2592000" </FilesMatch> <FilesMatch "\.(css)$"> Header set Cache-Control "max-age=2592000" </FilesMatch> <FilesMatch "\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav|mp4|m4v|ogg|webm|aac)$"> Header set Cache-Control "max-age=2592000" </FilesMatch> <FilesMatch "\.(jpg|jpeg|png|gif|swf|webp)$"> Header set Cache-Control "max-age=2592000" </FilesMatch> </IfModule>
Forum: Plugins
In reply to: [Cool Timeline (Horizontal & Vertical Timeline)] Squished Images on timelinePlease use this custom css, it will make the make view perfect.
.cool-timeline .timeline-post .timeline-content img { height: auto; }