Forum Replies Created
-
AuthorPosts
-
Hey!
Try adding this code to the Quick CSS:
p .av_font_icon.av-icon-style- { padding-bottom: 5px; }Cheers!
JosueHey Peter!
If you are using Forms, you’d need to set the custom class to the form element (.SidepanelForm) and target the button as its child (input[type=”submit”]):
(function($){ $(window).load(function() { $('.SidepanelForm input[type="submit"]').on('click', function() { ga('send’, 'event', 'Contact', 'Support Request', 'Contact form'); }); $('.ContactForm input[type="submit"]').on('click', function() { ga('send’, 'event', 'Contact', 'Support Request', 'Contact form'); }); $('.FooterForm input[type="submit"]').on('click', function() { ga('send’, 'event', 'Contact', 'Support Request', 'Contact form'); }); }); })(jQuery);Best regards,
JosueHi!
Font inclusion is working, the problem resides in the font declaration, for example:
The font it’s declared like this in @font-face:font-family:"ITCFranklinGothicW01-Dm_812677";But It’s like this down below:
font-family:"ITCFranklinGothicW01-Dm 812677";Make sure it is exactly the same in all iterations.
Best regards,
JosueHi,
Can you post the link to your website please? FTP and Dashboard access may be needed too.
Regards,
JosueYou are welcome Bruno, glad to help :)
Regards,
JosueHi!
Re-do the button on a simple HTML page (/test.html) to discard.
Cheers!
JosueHello,
We’re close, editing page loads, now add this line to your wp-config.php file:
define( 'CONCATENATE_SCRIPTS', false );Regards,
JosueHi!
That’s not possible, refer to Ismael response:
https://kriesi.at/support/topic/class-in-a-specific-element-in-a-icon-list/#post-336544Cheers!
JosueHi Ali!
We managed to do something like that for this user, it may do the trick:
https://kriesi.at/support/topic/new-blog-layout-cant-make-featured-image-full-width/Cheers!
JosueHi!
No custom class is set there:
[av_iconlist position='left' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='' custom_class='CLASS'] [av_iconlist_item title='E-mail' link='manually,#atendimento' linktarget='' linkelement='both' icon='ue805' font='entypo-fontello' custom_class='open-popup-link-button'] Esclareça sua dúvida por e-mail [/av_iconlist_item] [/av_iconlist]Cheers!
JosueHi Alexander!
Try checking it on another browser (refresh the Cache), here’s how i see it on my Android tablet btw – http://i.imgur.com/JmjOeoN.png
Regards,
JosueHey!
That would require some CSS adjustments, build the structure (title, text, image, button, etc) in a Text Widget then post a link to your website so we can help you with that.
Best regards,
JosueHey!
Try adding this code to the Quick CSS:
@media only screen and (min-width: 767px) { .av-masonry-container.isotope { width: 790px; } } @media only screen and (min-width: 989px) { .av-masonry-container.isotope { width: 1020px; } }Cheers!
JosueHi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHi Alexander!
Did you manage to fix it? the icons seems to be working as expected in your site – http://screencast.com/t/lsMMnAUBF
Regards,
JosueHi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueNovember 11, 2014 at 1:14 am in reply to: CONTACT FORMS STOPPED WORKING. PLEASE NEED HELP URGENTLY #349153Hope it gets sorted out, let us know :)
Regards,
JosueHi!
The location has changed, you can find it here now – http://screencast.com/t/ecu5N40p
Best regards,
JosueNovember 10, 2014 at 11:33 pm in reply to: Google Maps element javascript conflict with Maps Marker Pro Plugin #349100Hey George!
Unfortunately we don’t have a copy of that plugin to do proper testing, can you please create us a WordPress administrator account? we don’t mind taking a look.
Cheers!
JosueHi Jon,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHope it does the trick :)
Hey!
That error it’s caused by some server-related misconfiguration, the fix is very simple though:
https://wordpress.org/support/topic/fatal-error-cannot-call-overloaded-function-for-non-object-1/page/2?replies=35#post-6035835You may need to contact your server provider support to do that for you.
Best regards,
JosueHey Peter!
Yes, it would be better to load the script on all pages, to do that simply remove the if conditional:
function add_custom_script(){ ?> <script> ..... </script> <?php } add_action('wp_footer', 'add_custom_script');To differentiate two forms in the same page you can set a custom class to each one of them, then the JavaScript code would be:
(function($){ $(window).load(function() { $('.contact_form_1 input[type="submit"]').on('click', function() { if (!$('.contact_form_1 p').hasClass('error')) { ga('send’, 'event', 'Contact', 'Support Request', 'Contact form'); } }); $('.contact_form_2 input[type="submit"]').on('click', function() { if (!$('.contact_form_2 p').hasClass('error')) { ga('send’, 'event', 'Contact', 'Support Request', 'Contact form'); } }); }); })(jQuery);Best regards,
Josue-
This reply was modified 11 years, 1 month ago by
Josue.
November 10, 2014 at 9:39 pm in reply to: CONTACT FORMS STOPPED WORKING. PLEASE NEED HELP URGENTLY #349047Hey Carsten!
No, that plugin is not to set-up a new form but to configure a SMTP (Simple Mail Transfer Protocol), so any outgoing mails pass through that.
Best regards,
JosueHey!
Try adding this at the very end of your theme / child theme functions.php file:
add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1); function avia_replace_standard_icon($icons) { $icons['standard'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue915'); return $icons; }Change ue915 by the icon you want to use, to check the codes for the available icons simply create a new Icon element and hover the icon of your preference – http://i.imgur.com/oSBFalI.png
To import custom icons fonts, follow this guide – https://vimeo.com/75743285
Cheers!
JosueHey Peter!
It would be:
ga(‘send’, ‘event’, ‘ Contact’, ‘Support Request’, ‘Contact form′);It can also be like this:
ga('send', { 'hitType': 'event', 'eventCategory': 'Contact', 'eventAction': 'Support Request', 'eventLabel': 'Contact form' });Reference:
https://developers.google.com/analytics/devguides/collection/analyticsjs/eventsCheers!
JosueNovember 10, 2014 at 7:35 pm in reply to: Testimonial, fullwidth slider, icon lists and pictures not loading #348974Hi Ronald!
I think that’s expected, it happens when you load a new page for the first time.
Regards,
JosueNovember 10, 2014 at 1:17 pm in reply to: Testimonial, fullwidth slider, icon lists and pictures not loading #348729Hi Ronald!
I can’t reproduce that on my end, on which browser/version/screen size are you seeing that?
Regards,
JosueHi!
Can you specify what exactly you want to change? a screenshot would help.
Regards,
Josue -
This reply was modified 11 years, 1 month ago by
-
AuthorPosts
