Forum Replies Created
-
AuthorPosts
-
Hey despencer!
Go ahead and take a screenshot highlighting exactly what your trying to do so we can get a better idea.
Regards,
ElliottHey jmcrist!
I don’t think your going to get any SEO benefits doing that.
Changing them would take quite a bit of editing to do so it would have to be considered custom work. It would be best to hire a freelancer to help you out with this customization.
Best regards,
ElliottHey mathswizard!
The Masonry script sets that so I’m not sure if that is going to work. Send us a link to your page and take a screenshot highlighting what your trying to do and we’ll check to see if it’s possible.
Regards,
ElliottHey joshuati!
The advanced layout editor is for users who need complete control over how their post displays. If you want the post to display like a regular post then you’ll want to use the default editor. That being said, if your using the latest version of Enfold then there is a new element called “Social Share Buttons” which you can use to get that element to display with the advanced layout editor.
Cheers!
ElliottHey fineart!
Let’s try the following.
1. Deactivate all plugins.
2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy.
Cheers!
ElliottHi!
@isquaremedia, It says your using Enfold 2.8.1. If you completely deleted it before downloading + uploading a fresh copy from themeforest then you should be on the latest version, 3.1.5. Also, you need to update WordPress as well.
@grantnieddu, Are you sure WordPress and Enfold are updated to their latest versions? If so then send us a WordPress login and we’ll take a look.Cheers!
ElliottHey FlipmodeSQ!
They should be the same regardless of version your using. Send us a link to your page so we can get a better idea of what’s going on.
It would be best to update Enfold to the latest version, 3.1.5, and deactivate all plugins while testing.
Regards,
ElliottHey!
Go ahead and send us a link to your page and take a screenshot highlighting what your trying to do so we can get a better idea.
Best regards,
ElliottHi Vinicius!
So in this case instead of using the AJAX preview you want the images to open up in the magnific popup so you can scroll through them instead correct?
In this case it would be best to use the Masonry Gallery element instead as it does this automatically.
Best regards,
ElliottHey nulrick!
You would need to use a plugin such as s2member or wishlist. Yes, we have made sure bbPress is compatible with Enfold.
Best regards,
ElliottHi Alperito!
Do you mean your wanting to display a link to your forum in the main menu? You could create a custom link and then set the URL to something like this.
http://www.yoursite.com/forum/Or wherever you setup your forum.
Regards,
ElliottMay 18, 2015 at 5:32 pm in reply to: How to display Post Excerpt when using Multi-Author Blog #445882Hi SK!
You can use the more tag or the custom excerpt field when editing the post.
If your trying to have the homepage display a custom excerpt and the archives display the regular excerpt then I’m not sure if that is going to be possible or not.
Regards,
ElliottHi blonddragon!
Add this to your custom CSS.
#wrap_all { max-width: 1030px !important; margin: 0px auto !important; } .home #wrap_all { max-width: 100% !important; }Regards,
ElliottHey!
Yes, create a new menu in Dashboard > Appearance > Menus and then use the “Custom Menu” widget. You can add it to your sidebar or use our column and “Widget Area” elements instead.
Regards,
ElliottHi!
I think what your trying to do is something like this.
nav.main_menu { left: -35% !important; position: fixed !important; top: 20px !important; }Best regards,
ElliottHey Naima!
Please see here, http://kriesi.at/documentation/enfold/register-additional-google-fonts-for-theme-options/.
Cheers!
ElliottHey fredengl!
We use the magnific popup script, http://dimsemenov.com/plugins/magnific-popup/, and it doesn’t look like it has that feature. What I would do is add a link to the image in the alt or title text so the user can view it separately in the browser.
Cheers!
ElliottHi!
That would have to be considered custom work. It would be best to hire a freelancer to help you out with this customization.
Or consider creating a feature request here, https://kriesi.at/support/enfold-feature-requests/, and if it gets enough interest then we may see something get added in a future update.
Regards,
Elliott-
This reply was modified 10 years, 8 months ago by
Elliott.
Hi draig!
Add this in /enfold/framework/css/avia_admin.css.
.post-type-post .avia-builder-button { display: none !important; }Regards,
ElliottHey!
I’m sorry but I’m not sure I understand. Take a screenshot and highlight what your trying to do so we can get a better idea.
Regards,
ElliottHey!
1. So the code is working but your wanting to do it in a child theme or the code is not working at all?
2. Try adding this to your child theme functions.php file.
function avia_backend_add_thumbnail_size(&$avia_config) { if (function_exists('add_theme_support')) { $avia_config['imgSize']['widget'] = array('width'=>136, 'height'=>136); foreach ($avia_config['imgSize'] as $sizeName => $size) { if($sizeName == 'base') { set_post_thumbnail_size($avia_config['imgSize'][$sizeName]['width'], $avia_config[$sizeName]['height'], true); } else { if(!isset($avia_config['imgSize'][$sizeName]['crop'])) $avia_config['imgSize'][$sizeName]['crop'] = true; add_image_size( $sizeName, $avia_config['imgSize'][$sizeName]['width'], $avia_config['imgSize'][$sizeName]['height'], $avia_config['imgSize'][$sizeName]['crop']); } } } }3. I haven’t tested it out but you could try copying the whole class to your child theme functions.php file. Lines 420 – 665. If that does not work then you would need to edit the parent theme instead.
Best regards,
ElliottHi!
Yes, it would look something like this.
$subject = "booking from " . urldecode($new_post['företag_'.(avia_form::$form_id - 1)]);And make sure “foretag” is using the correct ID that I set before.
Cheers!
ElliottMay 18, 2015 at 4:40 pm in reply to: Removing the words "Permanent Link" from Blogroll alt text #445805Hi Evoluu!
Add this to your child theme functions.php file.
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='".$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; }Cheers!
Elliott-
This reply was modified 10 years, 8 months ago by
Elliott.
Hey il_pelle!
Try adding this to the child theme functions.php file.
function avia_title($args = false, $id = false) { global $avia_config; if(!$id) $id = avia_get_the_id(); $header_settings = avia_header_setting(); if($header_settings['header_title_bar'] == 'hidden_title_bar') return ""; $defaults = array( 'title' => get_the_title($id), 'subtitle' => "", //avia_post_meta($id, 'subtitle'), 'link' => get_permalink($id), 'html' => "<div class='{class} title_container'><div class='container'><{heading} class='main-title entry-title'>{title}</{heading}>{additions}</div></div>", 'class' => 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true), 'breadcrumb' => true, 'additions' => "", 'heading' => 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/ ); if ( is_tax() || is_category() || is_tag() ) { global $wp_query; $term = $wp_query->get_queried_object(); $defaults['link'] = get_term_link( $term ); } else if(is_archive()) { $defaults['link'] = ""; } // Parse incomming $args into an array and merge it with $defaults $args = wp_parse_args( $args, $defaults ); $args = apply_filters('avf_title_args', $args, $id); //disable breadcrumb if requested if($header_settings['header_title_bar'] == 'title_bar') $args['breadcrumb'] = false; //disable title if requested if($header_settings['header_title_bar'] == 'breadcrumbs_only') $args['title'] = ''; // OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before. extract( $args, EXTR_SKIP ); if(empty($title)) $class .= " empty_title "; $markup = avia_markup_helper(array('context' => 'avia_title','echo'=>false)); if(!empty($link) && !empty($title)) $title = "<a href='".$link."' rel='bookmark' title='".__('Permanent Link:','avia_framework')." ".esc_attr( $title )."' $markup>".$title."</a>"; if(!empty($subtitle)) $additions .= "<div class='title_meta meta-color'>".wpautop($subtitle)."</div>"; if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true)); $html = str_replace('{class}', $class, $html); if($header_settings['header_title_bar'] == 'breadcrumbs_only') { $html = str_replace('{title}', $title, $html); } $html = str_replace('{additions}', $additions, $html); $html = str_replace('{heading}', $heading, $html); if(!empty($avia_config['slide_output']) && !avia_is_dynamic_template($id) && !avia_is_overview()) { $avia_config['small_title'] = $title; } else { return $html; } } }Best regards,
ElliottHey p_niedrich!
All you would need to do is this, https://kriesi.at/support/topic/background-video-with-no-sound/#post-229951, if your wanting the background video to have sound.
You could request this feature here, https://kriesi.at/support/enfold-feature-requests/, and if it gets enough interest then we may see something get added in a future update.
Best regards,
ElliottHey xianeK!
Try adding this to your custom CSS.
#socket .sub_menu_socket { float: none; left: 50% !important; margin: 0; position: relative; transform: translateX(-25%); } @media screen and (max-width:767px) { #socket .sub_menu_socket { transform: none !important; left: 0px !important; } }Regards,
ElliottHey jolynndeal!
Try creating a copy of your .htaccess file and then delete it and refresh your permalinks in Dashboard > Settings > Permalinks. Pay special attention to any messages WordPress gives you such as .htaccess file not being writable, etc etc.
If your using a custom permalink structure then try setting it to the “default” or “postname” setting instead.
Regards,
ElliottMay 15, 2015 at 10:54 pm in reply to: Facebook & Instagram feed that doesn't make the site super slow ? #445175Hey Paul!
I don’t know of any that I can recommend. The WordPress plugin repository is a good place to find new plugins, https://wordpress.org/plugins/.
If anyone knows of any then please share.
Best regards,
ElliottHi Jakob40004000!
Your screenshot is not loading for me. Go ahead and send us a link to your page so we can get a better idea of what’s going on.
Also be sure to deactivate all plugins while testing to see if they are causing the problem.
Cheers!
ElliottHi webon_israel!
Which shortcode are you using? Send us a link and we’ll take a look.
Make sure Enfold is updated to the latest version, 3.1.5.
Cheers!
Elliott -
This reply was modified 10 years, 8 months ago by
-
AuthorPosts
