Forum Replies Created
-
AuthorPosts
-
Yeah the thing is, by default table columns stack when seeing in mobile, so the description column gets hidden, tables are definitely something with room for improvement. If you have any idea please post a request about it here.
Best regards,
JosueHi!
Yes, if you are using a child theme you have to re-enter your username and API Key in the theme options.
Cheers!
JosueSeptember 12, 2015 at 12:01 pm in reply to: Stop contact form from disappearing after submission #502078Hi!
After the form disappears a success message should popup there, but as the contact form is not working seems no message is returned.
Regards,
JosueSeptember 12, 2015 at 11:58 am in reply to: Adsense Not Responsive w/ Widget in Avia Layout Builder #502077Hi!
Can you please expand on this:
The only way that I can get a responsive Adsense ad to display when using the Avia Layout Builder is if I put it into a widget within the page builder. This makes the responsive ad show up, but the only problem is that it isn’t responsive when used within a widget in the page builder.
Not sure under which circumstances does the issue occurs. Screenshots of the issue would help.
Regards,
JosueHi!
This seems like a bug caused by the similarity of the labels:
Ich/Wir bin/sind damit einverstanden, dass mein/unser Kind morgens alleine zu den Ferienspielen kommt und nach 16.00 Uhr wieder alleine nach Hause geht. * Ich/Wir bin/sind damit einverstanden, dass ggf. Foto- oder Filmaufnahmen von meinem/unserem Kind seitens der örtlichen Presse zwecks Berichterstattung über die Ferienspiele gemacht werden. *Changing some words -at the start of the sentences- should the fix. Please note that this is not intended, i’ve reported it to Kriesi so hopefully it will be fixed in future versions of the theme.
Best regards,
JosueHey!
Try adding this at the very end of your theme / child theme functions.php file:
add_action('admin_print_scripts', 'avia_gravity_forms_admin'); function avia_gravity_forms_admin() { if ( !current_user_can('manage_options') ) { echo "<style type='text/css'>"; echo "#toplevel_page_avia { display: none; }"; echo "</style>"; } }Cheers!
JosueHi,
Can you please check if the issue persists with the default WordPress theme activated?
Regards,
JosueHey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 767px) { .responsive .pricing-table.avia-desc-col { display: block !important; } }Cheers!
JosueHey!
Try linking each slide to its image, that should activate the lightbox script.
Best regards,
JosueHi!
Please note that this is not exactly a theme issue but the FB link seems to be pulling the full URL:
http://www.facebook.com/sharer.php?u=http://www.rsno.org.uk/live/concert-listing/concert-information/?c_id=341&action=Read+More&t=Oundjian%20and%20BenedettiRegards,
JosueHey!
On even rows, have two duplicate images (one after before the text and one after it), then place a class in each one, on the first image: “only-mobile” and the second one: “only-desktop”.
Finally add this to Quick CSS:
@media only screen and (min-width: 767px) { .only-mobile{ display: none } .only-desktop{ display: block; } } .only-mobile{ display: block; } .only-desktop{ display: none; }Best regards,
JosueHi!
Try setting a bigger image, please refer to this – http://screencast.com/t/EpaKQtkA4H
Best regards,
JosueSeptember 12, 2015 at 10:34 am in reply to: Color Section Background Video Not Showing on Some Mac Computers #502048Well, that discards the problem being caused by the theme. Do they see an error message or something?
September 11, 2015 at 10:37 am in reply to: Color Section Background Video Not Showing on Some Mac Computers #501515Hi!
Ask them if they can access and play the video directly.
planttogether.com/wp-content/uploads/2015/09/iStock_000012075134_HDVideo_BigWeb.mp4Regards,
JosueHi!
Open js/avia.js and look for the following block of code:
imageLoadComplete: function() { var self = this; setTimeout(function() { self.wrap.addClass('mfp-image-loaded'); }, 16); },Replace it by this:
imageLoadComplete: function() { var self = this; setTimeout(function() { self.wrap.addClass('mfp-image-loaded'); $('.mfp-img').on('click', function(){ $.magnificPopup.close(); }); }, 16); },Regarding the zoom in / zoom out, MagnificPopUp was not built with that functionality in mind, perhaps this could suit your needs:
http://photoswipe.com/Cheers!
JosueSeptember 10, 2015 at 1:42 am in reply to: Add Custom Font 'SansaSoftSmConPro-Light.eot' from FontShop.com #500786Check it.
Regards,
JosueSeptember 10, 2015 at 1:17 am in reply to: Updated to WordPress Version 4.3 – Site Messed Up #500785Hi!
The latest version of Enfold uses the
__constructmethod to register the Widgets (as WP recommends), maybe that notice is coming from a plugin or a custom code, in any case, notices are not something to worry about, also WP_DEBUG in wp-config.php should be disabled by default and only turned on when needed.If you are really worried about this, hand me a temporary admin account and i’ll do a quick look to your site.
Cheers!
JosueUnfortunately that was expected, currently, the code block doesn’t support
textareaelements, i’d suggest you using a shortcode approach instead, something like this (place this code in your theme / child theme functions.php):function custom_shortcode_func() { ob_start(); ?> PUT YOUR CODE HERE <?php $output = ob_get_clean(); return $output; } add_shortcode('my_shortcode', 'custom_shortcode_func');Then to use it in your Pages:
[my_shortcode]Regards,
JosueSeptember 10, 2015 at 1:08 am in reply to: I upload 1 image in 1 size: I get 17 EXTRA different sizes from the same image #500783Try with this instead:
add_filter('avf_modify_thumb_size', function($sizes) { $sizes = array(); return $sizes; });Hey Bettina!
The solution posted there won’t work because it was for an older version of the theme which used a different lightbox script. Can you detail what’s your current set-up? do you want to apply this mod to all lightboxed images? a link to your site would be helpful too.
Regards,
JosueYou are welcome John, glad to help :)
Regards,
JosueHey!
Refer to:
http://kriesi.at/documentation/enfold/register-additional-google-fonts-for-theme-options/Best regards,
JosueTry with this:
function my_myme_types($mime_types){ $mime_types['prf'] = 'image/prf'; //Adding prf extension return $mime_types; } add_filter('upload_mimes', 'my_myme_types', 1, 1);Copy the code from the forum reply, not from the mail notification.
Hi!
Try with this:
.avia-animated-number:after { content: ""; border: 1px solid red; width: 100%; height: 200%; display: block; top: -50%; position: absolute; border-radius: 100px; }You’ll need to increase the vertical spacing though.
Cheers!
JosueAlternatively, you could use this handy plugin:
https://wordpress.org/plugins/wp-extra-file-types/Can you paste the code you’re trying to use? are you using a child theme?
September 9, 2015 at 1:14 am in reply to: I upload 1 image in 1 size: I get 17 EXTRA different sizes from the same image #500157Hey!
Try adding this at the very end of your theme / child theme functions.php file:
add_filter('avf_modify_thumb_size', function($sizes) { return array(); });Cheers!
JosueHi!
Depends, can you provide some additional context on which element are you referring to?
Regards,
Josue -
AuthorPosts
