Forum Replies Created
-
AuthorPosts
-
Great news, glad we could help :)
Set up an administrator account, then post it here as a private reply. Also, give details on what modification you want to make.
Regards,
JosueHi,
Open footer.php and remove line 136:
echo avia_post_nav();Regards,
JosueHello,
Do you have the latest version of Enfold (2.8.1) / WordPress(3.9.1)? have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueJune 19, 2014 at 9:55 am in reply to: unable to goin my admin enfold theme, unbable to reset password. #281072Hi,
I don’t think we could do something from our end. You’d need to contact your hosting support regarding this issue.
Regards,
JosueDon’t edit that, try adding this at the very end of your theme functions.php file:
function av_change_logo($logo, $use_image, $headline_type, $sub, $alt, $link){ if(is_front_page()){ $logo_url = "_LOGO_URL_"; } if(is_woocommerce()){ $logo_url = "_LOGO_URL_"; } if($dimension === true) $dimension = "height='100' width='300'"; if(empty($logo_url)) $logo_url = avia_get_option('logo'); $logo = "<img {$dimension} src='{$logo_url}' alt='{$alt}' />"; $logo = "<$headline_type class='logo bg-logo'><a href='".$link."'>".$logo."$sub</a></$headline_type>"; return $logo; }Change as needed.
Cheers!
JosueYou could try overriding the PP invocation, add this to your child functions.php:
function add_custom_script(){ ?> <script type="text/javascript" charset="utf-8"> jQuery(window).load(function(){ jQuery("a[href*="youtube.com/watch"]").prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery: false, iframe_markup: '<iframe src="{path}&modestbranding=1" width="{width}" height="{height}" frameborder="no"></iframe>' }); }); </script> <?php } add_action('wp_footer', 'add_custom_script');Regards,
JosueHey!
Try adding this at the very end of your theme functions.php file:
add_filter('avf_title_args', 'hide_title_func', 10, 2); function hide_title_func($args,$id) { if(is_singular('_POST_TYPE_SLUG_')){ $args['title'] = ""; $args['link'] = ""; $args['heading'] = 'span'; } return $args; }Cheers!
JosueI’m not sure if that’s doable within Enfold, that’s why i recommended a plugin.
Best regards,
JosueListo Sergio:
http://www.yachtcharterbcn.com/sailboat-charter/He modificado el archivo:
/config-templatebuilder/avia-shortcodes/portfolio.phpY añadido esto al Quick CSS:
.grid-entry-excerpt .more-link{ background: peru; padding: 4px 8px; color: white; }Hey!
I haven’t tried it, but this plugin may do the trick:
http://wordpress.org/plugins/default-featured-image/Regards,
JosueYou are welcome, always glad to help :)
Regards,
JosueHey David!
You can try using this conditional tags for WC pages:
http://docs.woothemes.com/document/conditional-tags/For the blogpage:
http://codex.wordpress.org/Conditional_Tags#The_Blog_PageBest regards,
JosueHey Pgeunw!
I think advanced contact form plugins like Formidable or Gravity Forms enable you to build such a post form for direct publishing but I’m not entirely sure how difficult the setup is. Depending on your skills you might need someone who can help you with the plugin configuration, etc.
Best regards,
JosueHey Omer!
I’m not seeing any white space there:

Try refreshing a few times.
Best regards,
JosueI forgot one line, it should be:
function helper_array2form_fields($base) { $form_fields = array(); $labels = array(); if(is_array($base)) { foreach($base as $key => $field) { $sanizited_id = trim(strtolower($field['attr']['label'])); $labels[$sanizited_id] = empty($labels[$sanizited_id]) ? 1 : $labels[$sanizited_id] + 1; if($labels[$sanizited_id] > 1) $sanizited_id = $sanizited_id . '_' . $labels[$sanizited_id]; $form_fields[$sanizited_id] = $field['attr']; if(!empty($field['content'])) $form_fields[$sanizited_id]['content'] = ShortcodeHelper::avia_apply_autop($field['content']); } } return $form_fields; }Regards,
JosueHi Jason,
Open functions.php and look for line 308:
$avia_upload_dir = wp_upload_dir();Add this below it:
if(is_ssl()) $avia_upload_dir['baseurl'] = str_replace("http://", "https://", $avia_upload_dir['baseurl']);Peter already proposed this fix so it will get included in the next update.
Regards,
JosueTry modifying it in the parent theme.
Cheers!
JosueYou are welcome, always glad to help :)
Regards,
JosueHi!
It’s caused by an tracking img tag you have put there, try adding this to the Quick CSS:
body > img { display: none; }Cheers!
JosueHi!
Apply the after_head_image_func code again and reply to this topic so we can try to debug it live.
Cheers!
JosueHi Philip,
Try adding this at the very end of your theme functions.php file:
function add_custom_script(){ ?> <script> jQuery(window).load(function(){ jQuery('.av-masonry a').each(function(){ jQuery(this).attr('target', '_blank'); }); }); </script> <?php } add_action('wp_footer', 'add_custom_script');Regards,
JosueHey!
Try adding this code to the Quick CSS:
/* highlighted col */ .avia-highlight-col .avia-button-row .avia-button { background: red !important; } /* normal cols */ .avia-button-row .avia-button { background: peru !important; }Cheers!
JosueHi,
Open contact.php and look for 305-319:
function helper_array2form_fields($base) { $form_fields = array(); if(is_array($base)) { foreach($base as $key => $field) { $form_fields[strtolower($field['attr']['label'])] = $field['attr']; if(!empty($field['content'])) $form_fields[strtolower($field['attr']['label'])]['content'] = ShortcodeHelper::avia_apply_autop($field['content']); } } return $form_fields; }Replace that by this:
function helper_array2form_fields($base) { $form_fields = array(); $labels = array(); if(is_array($base)) { foreach($base as $key => $field) { $sanizited_id = trim(strtolower($field['attr']['label'])); $labels[$sanizited_id] = empty($labels[$sanizited_id]) ? 1 : $labels[$sanizited_id] + 1; if($labels[$sanizited_id] > 1) $sanizited_id = $sanizited_id . '_' . $labels[$sanizited_id]; $form_fields[$sanizited_id] = $field['attr']; if(!empty($field['content'])) $form_fields[$sanizited_id]['content'] = ShortcodeHelper::avia_apply_autop($field['content']); } } }This bugfix is already proposed so you don’t have to worry about updates.
Regards,
JosueYou are welcome, always glad to help :)
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.responsive #top .logo, .responsive #top .logo a, .responsive #top .logo img { height: 50px !important; max-height: 50px !important; }Result:

Cheers!
JosueHi!
Remove this code from your Quick CSS:
.big-preview { background-color:#ffffff!important; }Cheers!
JosueThe link you posted is returning this.
Cheers!
JosueHey!
Yes, that’s possible, you need to change a setting in the prettyPhoto activation.
Open (js/avia.js) and replace line 856:elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh });By:
elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh, iframe_markup: '<iframe src="{path}&modestbranding=1" width="{width}" height="{height}" frameborder="no"></iframe>'});Best regards,
JosueHey!
Try adding this code to the Quick CSS:
@media only screen and (min-width: 989px) and (max-width: 1139px) { li#menu-item-3141 { position: absolute; top: 0; right: -130px; } }Cheers!
Josue -
AuthorPosts
