Forum Replies Created
-
AuthorPosts
-
Hey!
Try adding this code to the Quick CSS:
.responsive body { overflow: visible; }Cheers!
Josue-
This reply was modified 11 years, 3 months ago by
Josue.
Hey Patrick!
The problem seems to be memory limit, try increasing it (512M or so):
http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHPIf that doesn’t work, enable debug mode in the same file (wp-config.php):
define('WP_DEBUG', true);Best regards,
JosueYou are welcome, glad we could help :)
Regards,
JosueHey!
Try adding this code to the Quick CSS:
#scroll-top-link { background: red; color: blue; border-color: yellow; }Adjust as needed.
Cheers!
JosueDecember 21, 2014 at 5:26 am in reply to: Fallback Image is not responsive on mobile devices #371149Hey!
Check it now, i used this code in Quick CSS:
#top .av-section-mobile-video-disabled { width: 100%; height: 100%; background-size: 100% 100%; background-position: center center; background-repeat: no-repeat; max-height: 550px; }Best regards,
JosueDecember 21, 2014 at 5:09 am in reply to: Why? Increase font size px and em stays the same in mobile #371148Hey ML!
Em is relative to the font size currently set to the parent element, in most cases it would be to this body rule set in css/base.css:
body { font: 13px/1.65em "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; color: #444; -webkit-text-size-adjust: 100%; }If you want to have different font sizes depending on screen size you’d need to use some media queries:
@media only screen and (max-width: 480px) { body{ font-size: 18px; } } @media only screen and (max-width: 767px) { body{ font-size: 16px; } } @media only screen and (max-width: 989px) { body{ font-size: 14px; } }Regards,
JosueHey!
Try adding this code to the Quick CSS:
.logo a { pointer-events: none; }Cheers!
JosueYes, you can have them combined by the way:
ul, p { font-size: 0.8em; line-height: 1.8em; }Cheers!
JosueHey!
This was caused because of this code you had in Quick CSS:
.home .title_container { display: none; }If you want to hide the title/breadcrumbs on a page do it this way – http://screencast.com/t/8e0aw8s59clC
Regards,
JosueHey!
Use this instead:
add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1); function avia_add_social_toolbar_template_builder($content = "") { if(is_singular('post')) $content .= avia_social_share_links(array(), false); $content .= '<div style="height:1px; margin-top:50px;" class="hr"></div>'; return $content; }Regarding comments you’d need to use the Comments element from ALB (Content Elements).
Cheers!
JosueDecember 21, 2014 at 4:42 am in reply to: Why the footer menu items are missing when in mobile/responsive mode? #371141Hi,
Try with this:
@media only screen and (max-width: 479px) { .responsive #socket .sub_menu_socket { display: block !important; } #socket .container { text-align: center; } #socket .container span, #socket .container nav { float: none !important; display: inline-block !important; } #socket .sub_menu_socket li { float: none; text-align: center; width: 100%; margin: 15px 0; border: 0; } #socket{ font-size: 14px; } }Adjust as needed.
Regards,
JosueHey!
Try the following:
1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
2. Go to Settings > Media
3. Change the entry_with_sidebar image size (increase it).
4. Regenerate the thumbnails by clicking the button at the bottom.Cheers!
JosueHello,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueHey!
The problem is there is a function that alters the Posts titles (/enfold/includes/helper-post-format.php:54):
function avia_default_title_filter($current_post) { if(!empty($current_post['title'])) { $heading = is_singular() ? "h1" : "h2"; $output = ""; //$output .= "<{$heading} class='post-title entry-title ". avia_offset_class('meta', false). "'>"; $output .= "<{$heading} class='post-title entry-title' ".avia_markup_helper(array('context' => 'entry_title','echo'=>false)).">"; $output .= " <a href='".get_permalink()."' rel='bookmark' title='". __('Permanent Link:','avia_framework')." ".$current_post['title']."'>".$current_post['title']; $output .= " <span class='post-format-icon minor-meta'></span>"; $output .= " </a>"; $output .= "</{$heading}>"; $current_post['title'] = $output; } return $current_post; }You can put a modified version of this (merged with your initial filter code) in your child theme functions.php.
Best regards,
JosueHey Tim!
Yes, try with a child name with a simpler name without spaces.
Best regards,
JosueHi!
This may be happening because you’ve activated ALB on Posts, add this to functions.php to force it to show on template builder posts;
add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1); function avia_add_social_toolbar_template_builder($content = "") { $content .= avia_social_share_links(array(), false); $content .= '<div style="height:1px; margin-top:50px;" class="hr"></div>'; return $content; }Regards,
JosueTry with this code in Quick CSS:
p { font-size: 0.8em; line-height: 1.8em; }Regards,
JosueHi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHi Joost van der Laan,
Can you post the link to your website please?
Regards,
JosueHey!
Because Posts have built-in elements like comments and share links, when you enable ALB on a post/page/portfolio it creates an empty canvas for you to have total control of the layout.
Regards,
JosueHi!
That’s the product
content, you’d need to change it here – http://screencast.com/t/ak5WVN15v2ERegards,
JosueJust leave it as it is.
Hey!
There is a typo in Elliot’s code, try with this:
add_action( 'wp_footer', 'enfold_customization_back_button' ); function enfold_customization_back_button(){ ?> <script type = "text/javascript"> jQuery(document).ready(function(){ jQuery("#menu-item-524 a").attr('onclick', 'window.history.go(-1);'); }); </script> <?php }Cheers!
JosueHey!
No, the snippet must go inside the child theme functions.php (create one if needed):
<?php add_filter('avf_builder_boxes', 'add_builder_to_posttype'); function add_builder_to_posttype($metabox) { foreach($metabox as &$meta) { if($meta['id'] == 'avia_builder' || $meta['id'] == 'layout') { $meta['page'][] = 'post'; /*instead add the name of the custom post type here*/ } } return $metabox; }Cheers!
JosueHey!
Go to Appearance > Menu and re-assign your menu as the Enfold Child Main Menu (Menu Locations) and yes, the child theme must remain activated.
Cheers!
JosueI see, try the following; wrap the code block with a separate color section and put the
hiddenclass to the color section instead.Hey!
If you are referring to the lightbox script you can disable it in the Theme Options – http://screencast.com/t/3h1BLNnSKc0
Cheers!
JosueHi,
Does the issue persists with the default WordPress theme activated?
Cheers!
Josue -
This reply was modified 11 years, 3 months ago by
-
AuthorPosts
