Forum Replies Created
-
AuthorPosts
-
November 1, 2014 at 5:38 am in reply to: Product Description and Product Image light box STILL missing in all VIEWS #344474
The first one, “Catalog Images”, increase the second value (height).
Best regards,
JosueNovember 1, 2014 at 4:41 am in reply to: Product Description and Product Image light box STILL missing in all VIEWS #344467Hey!
WooCommerce > Settings > Products > Product Image Sizes > Catalog Images, here – http://screencast.com/t/jaVFA2uS.
Best regards,
JosueHi Darryl!
Sorry for that, i’m not sure if it’s possible to recover them, the default Enfold widgets appear when the widget areas are empty, but maybe you can track the previous one via DB – http://wordpress.stackexchange.com/questions/58116/where-is-the-content-of-widgets-stored-in-mysql-table
Regards,
JosueHi James,
Can you post the link to your website please? a temporary WordPress administrator account may be needed too.
Regards,
JosueHello!
It is possible but it would require a heavy customization to the theme, unfortunately that’s beyond the scope of the support we can offer. If you really need it you would have to contact a developer from Envato Studio or Codeable.
Cheers!
JosueNovember 1, 2014 at 12:14 am in reply to: masonry gallery – larger images are being made half size #344373Hey!
Try adding this code to the Quick CSS:
.av-masonry-image-container { background-size: contain; background-repeat: no-repeat; }Cheers!
JosueHi!
Actually i’m not sure if that would work because i don’t know how are you setting the meta data for these terms (ACF?). I think the answer resides in /config-templatebuilder/avia-shortcodes/masonry_entries.php:771 instead:
$custom_url = get_post_meta( $id, 'av-custom-link', true );Cheers!
JosueOctober 31, 2014 at 10:40 pm in reply to: Formular shortcode : "subject" not taken in account #344333Try using HTML codes instead of those characters:
http://webdesign.about.com/od/localization/l/blhtmlcodes-fr.htmBest regards,
JosueOctober 31, 2014 at 8:34 pm in reply to: Formular shortcode : "subject" not taken in account #344306Hey Marie!
The link you posted returns a 404 page. Just to discard, try changing the subject parameter to something simpler like this:
[av_contact (Email address hidden if logged out) ' title='' button='ENVOYER' on_send='' sent='Merci, votre message a bien été envoyé !' link='manually,http://' subject='Test Subject' autorespond='' captcha='' color='' custom_class='']
[av_contact_field label='Nom' type='text' options='' check='is_empty' width=''][/av_contact_field]
[av_contact_field label='Prénom' type='text' options='' check='is_empty' width=''][/av_contact_field]
[av_contact_field label='Adresse mail' type='text' options='' check='is_email' width=''][/av_contact_field]
[/av_contact]Best regards,
JosueHi!
Refer to this video on how to update:
Cheers!
JosueOctober 31, 2014 at 4:49 pm in reply to: Automatic image caption für featured image of a post? #344133Hey Rolf!
Feel free to request it here. Also, if you use a child theme you can store functions like this in the child theme functions.php.
Best regards,
JosueIn that case you could create a “/fonts” folder in the root of the installation so you don’t have to alter the wp-content structure.
Regards,
JosueOctober 30, 2014 at 6:24 pm in reply to: Add code to a specific page (Google Adwords Conversion Tracking) #343520October 30, 2014 at 6:18 pm in reply to: Format Twitter-Output in the Share links at the bottom of blog post #343518Hi!
Because /includes/helper-main-menu.php is included in header.php:64 using
get_template_part.Child themes can override these templates the same as before — the child theme will just need to create the same directory structure to do it. (So, /page-templates/one-column.php needs to be overridden with /page-templates/one-column.php, not /one-column.php.) And yes, we’re only looking one level down.
http://nacin.com/2012/03/29/page-templates-in-subdirectories-new-in-wordpress-3-4/
Regards,
JosueOctober 30, 2014 at 5:58 pm in reply to: Remove link on featured image + enlarging image dont work #343504You are welcome, always free :)
Regards,
JosueOctober 30, 2014 at 6:57 am in reply to: Remove link on featured image + enlarging image dont work #343266Hey!
Replace that line with this instead:
if($slider) $slider = is_singular() ? $slider : '<a href="'.$link.'" title="'.$featured_img_desc.'">'.$slider.'</a>';Best regards,
JosueYou are welcome Stefan, thanks for the kind words, we appreciate it :)
Regards,
JosueOctober 30, 2014 at 6:52 am in reply to: Automatic image caption für featured image of a post? #343263Hi Rolf,
Try adding this at the very end of your theme / child theme functions.php file:
function add_custom_script(){ if(is_singular('post')){ ?> <script> (function($){ $(window).load(function() { var postImage = $('.single-big .wp-post-image'); var imgAlt = postImage.attr('alt'); postImage.after("<div class='img_caption'>"+imgAlt+"</div>"); }); })(jQuery); </script> <?php } } add_action('wp_footer', 'add_custom_script');Regards,
JosueHi Stefan!
Please check your website, i added this code to Quick CSS:
.news-thumb img, .news-thumb img{ width: auto; height: auto; }Regards,
JosueHey @p5uln!
Refer to this topic:
https://kriesi.at/support/topic/use-different-social-icons/Best regards,
JosueHey!
I’m not sure if that’s possible to do to be honest. One thing you can do is re-create those submenus as top level menus for mobile devices, you can assign custom classes to menu item while editing them, for example “only_desktop” and “only_mobile”, Quick CSS to add would be:
.only_desktop{ display: none; } @media only screen and (min-width: 767px) { .only_desktop { display: inline-block; } .only_mobile { display: none; } }Regards,
JosueHey!
1. Header doesn’t shrink because of this code you have in Quick CSS:
#header_main .container, .main_menu ul:first-child > li a{ height:90px !important; line-height: 80px !important; }2. You can set a transparent header when editing the Page in question, (Layout options).
3. If you are referring to this, yes that’s a Text Widget (Title + (paragraph + image) + Enfold button shortcode).
Cheers!
JosueHi!
It’s that Chrome or Android stock browser? please note that this modification it’s something a little hackish so support for it may be limited.
Cheers!
JosueI’ve also searched how to make the top level navigation property of that Fullwidth Sub Menu non clickable on mobile.
I understood that’s the behavior you wanted.
Regards,
JosueOctober 30, 2014 at 1:32 am in reply to: Latest Blogs – Function.php Code Displaying the FIX #343143You are welcome, glad to help :)
Regards,
JosueHey!
The code has been copied wrong, make sure it is exactly like this:
@media only screen and (max-width: 767px) { .av-submenu-container .menu-item-has-children { pointer-events: none; } }Cheers!
JosueOctober 30, 2014 at 12:14 am in reply to: Blog Single Author Small – Doesn't Look Like Your Demo Page – Why? #343096Hey Dori!
To be honest i’m out of ideas at this point, please note that this ‘media redirect’ is not being created by Enfold, it may be a server-side configuration (.htaccess redirect) or a plugin. I’ll tag the rest of the team, perhaps they can contribute with something.
Regards,
Josue -
AuthorPosts
