ramzesimus
Forum Replies Created
-
Hi Roch,
Thanks for your fast reply.
Is there any chance to get some tips from you guys in order to purchase a PRO version?
Best Regards!
RamzesimusForum: Plugins
In reply to: [SO Page Builder Animate] How do you disable animation for mobile devices?Also you can find alternative solutions here https://github.com/daneden/animate.css/issues/349
Forum: Plugins
In reply to: [SO Page Builder Animate] How do you disable animation for mobile devices?You can do this with media queries and custom CSS. You need to add something like this
@media only screen and (max-width : 767px) { .animated { /*CSS transitions*/ -o-transition-property: none !important; -moz-transition-property: none !important; -ms-transition-property: none !important; -webkit-transition-property: none !important; transition-property: none !important; /*CSS transforms*/ -o-transform: none !important; -moz-transform: none !important; -ms-transform: none !important; -webkit-transform: none !important; transform: none !important; /*CSS animations*/ -webkit-animation: none !important; -moz-animation: none !important; -o-animation: none !important; -ms-animation: none !important; animation: none !important; } }
Best Regards!
RamzesForum: Plugins
In reply to: [Clean Login] Notice in the Register Form after 1.7.8 updateSuper!
Forum: Plugins
In reply to: [Clean Login] User Roles are not translated on the frontendHi Alberto,
It works now!
Thanks for fast fix ??
Best Regards!
RomanForum: Plugins
In reply to: [WP Job Manager] Can I change the Role names "Employer" and "Candiate"Hi Susan,
Just use ‘User Role Editor’ plugin to change your user roles names. It’s not a silver bullet if you have multi-language site, but it works great with single-language sites.
Best Regards!
RomanForum: Plugins
In reply to: [WordPress Importer] Issue with Menu import@anhskohbo It’s not PHP version related for sure. Tried on WP4.5.4 and menu imported, it’s not work on WP4.6.1 – menu not imported.
Forum: Plugins
In reply to: [Clean Login] wp_enqueue_style unique handle name and dependencyThanks!
Forum: Plugins
In reply to: [WP Job Manager] How to add additional class to Jobs List?Hi Dan,
It’s not about sorting option but it’s about styling. Custom class will add ability to easily style your listings output without touching any line of PHP code.
Hope it can be easily achieved.
Best Regards!
RomanForum: Plugins
In reply to: [Visual Composer Maced Google Maps] Style css and ZoomLooks like the code I provided is striped a little bit.
Anyway I guess it would be great to have predefined styles instead of pasting javascript array the from https://snazzymaps.comRegards!
Forum: Plugins
In reply to: [Visual Composer Maced Google Maps] Style css and ZoomHi mengeco,
I just found a quick fix. Open wp-content/visual-composer-maced-google-maps/visual-composer-maced-google-maps.php and on line 212 change this
$output .= 'styles : ' . $styles . ',';
to this
$output .= 'styles : ' . str_replace(array('
', '
{', '
}'), array('"', '[', ']'), $styles) . ',';
Hope author of the plugin will fix it soon.
Regards!
Forum: Plugins
In reply to: [Max Mega Menu] Predefined themeHi Tom,
Looks comfortable enough for me ?? Will try and let you know.
Thanks!
RamzesimusForum: Plugins
In reply to: [Clean Login] WP Job Manager Clean LoginClosing ??
Forum: Plugins
In reply to: [Clean Login] WP Job Manager Clean LoginHi Alberto,
Thanks for your great support!
Everything works great with 1.2.7 update.Regards!
Forum: Plugins
In reply to: [Clean Login] WP Job Manager Clean LoginHi Alberto,
Thanks for your reply.
I noticed this not only on MAMP but on live site also.
Hope you can solve this.Thanks!