Satinder Singh
Forum Replies Created
-
Thanks for info, I will sure pass these instructions to my development team.
Can you please tell us what language you are trying to translate so that we can check if it is possible to find some solution via Yendex API?
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] AMP-Carousel – Upgrade to 0.2It will also best if you can provide some hook so that i can use latest version of any AMP JS component instead of the JS component version provided by the plugin.
Forum: Reviews
In reply to: [Automatic Translate Addon For Loco Translate] Неплохо для чернового переводаThanks for your valuable feedback, yes it provides machine translations, we must check all for accurate results.
If you have any suggestion, please share with us.
After adding the stories you need to add timeline shortcode on a page where you want to show your timeline.
1. Create a new page inside your website, something like /our-story
2. If you are using default visual editor of WordPress then you can add timeline shortcode on that page by clicking on shortcode builder icon, or put below shortcode on that page to display a timeline:-
[cool-timeline layout="default" animation="fade-up" date-format="F j Y" icons="YES" show-posts="20" skin="default" order="ASC" story-content="full"]
Hope it will help you.
Forum: Reviews
In reply to: [Automatic Translate Addon For Loco Translate] Very accurateThanks for your valuable review, please let me know if you have any suggestion to improve it more.
Forum: Reviews
In reply to: [Cryptocurrency Widgets - Price Ticker & Coins List] GoodPlease let us know what advance things you can suggest, we will try to improve it if possible.
Just resolve your js errors and everything will be fixed, check this screenshot:- https://cardse.net/image/error.cxG
Your theme is not minifying js files correctly so issue is inside your files compression i think.
There are some js errors inside your browser console due to some other plugins or js compression, please resolve them, I think these errors are conflicting with timeline preview.
Also try disabling animation inside timeline shortcode.
Forum: Plugins
In reply to: [Cool Flipbox - Shortcode & Gutenberg Block] Transparent PNG as image frontUse this custom css:-
.flip .face.back { opacity: 0; } .flip:hover .face.back { opacity: 1; }
Forum: Plugins
In reply to: [Events Shortcodes For The Events Calendar] Color change overwrittenWhen you will save settings please clear cache if you are using any cache plugin and check your page inside incognito/private window because settings save option creates a static css file according to new options and sometimes browsers and cache plugins serves old css file from cache.
Let me know if changes work after clearing cache or checking inside private window of browser.
try using this custom css:-
.cfb-face.back .cfb-data { transform: translate3d(0,0,0); }
Forum: Plugins
In reply to: [Cryptocurrency Widgets - Price Ticker & Coins List] ETH – XRP ProblemOnly advanced table view widget shows coins via ranking, inside rest you can select your own order.
Forum: Plugins
In reply to: [Cryptocurrency Widgets - Price Ticker & Coins List] ETH – XRP ProblemCan you please share a link so that we can check where is that issue, because if you check our demo site, you will find that XRP & ETH ranking is perfect according to market.
Check demo here:- https://cryptowidget.coolplugins.net
To add map inside sidebar please follow these steps:-
Please go inside plugin folder >> epta-template >> epta-template-1.php
around line 69 you will find this code:-
<div class="epta-map-area"> <?php tribe_get_template_part( 'modules/meta/map' ); ?> </div>
cut this code from here and paste inside a “epta-sidebar-box” div where you want to place.
for example, you can put after this line:-
<?php tribe_get_template_part( 'modules/meta/venue' ); ?>
Like this way:-
<div class="epta-sidebar-box"> <?php tribe_get_template_part( 'modules/meta/venue' ); ?> <div class="epta-map-area"> <?php tribe_get_template_part( 'modules/meta/map' ); ?> </div> </div>