Forum Replies Created
-
AuthorPosts
-
Hi Global_UK!
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 that WordPress gives you such as the .htaccess file not being writable, etc.
Also be sure to deactivate all plugins while testing.
If your still having trouble then send us a WordPress login and we’ll take a closer look.
Regards,
ElliottHey KaptainProdex!
If your WordPress language is set to German then it should already be translated with the included .mo files in /enfold/lang/. If you want your site to be multi lingual then you’ll need to use a plugin such as the one you mentioned or WPML.
Regards,
ElliottOctober 21, 2015 at 7:36 pm in reply to: Got a Demo and its Expired. So i bought the theme. Can you help me to re activa? #522462Hey noozlie!
Try exporting your theme options in Dashboard > Enfold > Import / Export and then completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest. You can then import your settings into the new theme.
Cheers!
ElliottOctober 21, 2015 at 7:34 pm in reply to: Title article not showing with Fotografia Demo template #522460Hey ilsymo!
I’m sorry but I’m not sure I understand. Send us a link to your page and take a screenshot highlighting what your trying to do so we can get a better idea.
You can set your reply as private if you wish.
Regards,
ElliottHey wsnider28!
It’s possible but would take a lot of time and code to implement 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 icodesign!
In Dashboard > LayerSliderWP > Edit > Slider Settings > Layout, make sure that you do not have the “hide on mobile” option turned on.
Cheers!
ElliottHi Peter!
So your just trying to add a transparent aqua color behind the text correct?
Drag a codeblock element to the page and add this inside.
<style type = "text/css"> #av_section_1 h1 { background: rgba(100,200,255,0.4); } </style>
Cheers!
ElliottHey charlestrautman!
Add this to your custom CSS.
.avia-menu.av_menu_icon_beside { border-right: 0 none !important; }
Best regards,
ElliottHey patriscia!
You can do this, http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/, to add a widget area to your header. You can then drag a text widget to it and add more logo images.
You can use this HTML to display an image.
<img src = "URL to your image" />
Regards,
ElliottHi jdrakeproductions!
You can style the menu links in Dashboard > Enfold > Advanced Styling.
Cheers!
ElliottOctober 20, 2015 at 10:17 pm in reply to: Emergency Help Needed: XML files for other languages and mobile menu dissapeared #522039Hey afarahani!
Did you contact the plugin authors? What happens in the default theme?
As for the menu not showing up, it’s probably from some javascript errors your getting. Deactivate all of your plugins and reactivate them one by one to see which are causing the errors.
Regards,
Elliott-
This reply was modified 9 years, 9 months ago by
Elliott.
October 20, 2015 at 10:12 pm in reply to: Double h1 tags in blog posts. How to remove the 2nd one? #522036Hey mrcatt!
Do you have a blog page set? If so then it should be a strong tag instead of H1. Send us a link to your post and we’ll take a look.
Best regards,
ElliottHey DROR!
Add this to your custom CSS.
.av-submenu-container .avia-menu-text { font-size: 14px !important; }
Best regards,
ElliottHey lookashow!
Instead of using left: 80% css try this out.
#header .widget { position: absolute; right: 20px; }
Best regards,
ElliottHi!
Oh, yes, that’s what is supposed to happen. If you need the post to display like a regular blog post then you’ll need to use the default editor. Or if you must use the layout builder then you can use the image element, comments element, etc etc, to make it look like a regular post.
Best regards,
ElliottHi elbnetz!
Not sure I understand. Are you trying to move the header social icons around? 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,
ElliottOctober 20, 2015 at 10:00 pm in reply to: Accordion and Table dont work in WooCommerce 'Product Short Description' #522027Hey!
I don’t think that’s going to be possible. It would be best to hire a freelancer to help you out with this.
Regards,
ElliottOctober 20, 2015 at 9:59 pm in reply to: Drop down background-color is different in Internet Explorer and Chrome #522026Hey!
It looks like your on Windows 10 like me. I tried fiddling around with the CSS but I couldn’t get rid of the top / bottom white borders that Windows 10 adds. I guess it’s just an operating system / browser quirk.
Cheers!
ElliottHey ginigarbick!
You have 7 sliders currently. Let us know which one it is and send us a link to the exact page where your using it please.
Be sure to deactivate all plugins while testing and update Enfold to the latest version, 3.2.2. Your currently using version 3.2.
Best regards,
Elliott-
This reply was modified 9 years, 9 months ago by
Elliott.
Hey!
Hmm, not really sure I understand what’s going on there. It looks like you have quite a bit of CSS customization going on. It would probably be best if you hired a freelancer to help you out with customizing your site.
Regards,
ElliottHey!
Yep, that will work.
Regards,
ElliottHey Mariusz!
We don’t have any features like that currently. Consider creating a 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,
ElliottHey Corina!
Hmm, I’m on Windows 10 and I checked in IE11 but it looks exactly the same to me as it does in Firefox / Chrome. Are you actually viewing on a Windows machine or are you using an online tool such as browsershots, etc etc?
Regards,
ElliottHi!
Sorry, I got the line numbers wrong for some reason. Here is the full class that you can copy to your child theme functions.php file.
/** * AVIA NEWSBOX * * Widget that creates a list of latest news entries * * @package AviaFramework * @todo replace the widget system with a dynamic one, based on config files for easier widget creation */ if (!class_exists('avia_newsbox')) { class avia_newsbox extends WP_Widget { var $avia_term = ''; var $avia_post_type = ''; var $avia_new_query = ''; function __construct() { $widget_ops = array('classname' => 'newsbox', 'description' => 'A Sidebar widget to display latest post entries in your sidebar' ); parent::__construct( 'newsbox', THEMENAME.' Latest News', $widget_ops ); } function widget($args, $instance) { global $avia_config; extract($args, EXTR_SKIP); echo $before_widget; $title = empty($instance['title']) ? '' : apply_filters('widget_title', $instance['title']); $count = empty($instance['count']) ? '' : $instance['count']; $cat = empty($instance['cat']) ? '' : $instance['cat']; $excerpt = empty($instance['excerpt']) ? '' : $instance['excerpt']; $image_size = isset($avia_config['widget_image_size']) ? $avia_config['widget_image_size'] : 'widget'; if ( !empty( $title ) ) { echo $before_title . $title . $after_title; }; if(empty($this->avia_term)) { $additional_loop = new WP_Query("cat=".$cat."&posts_per_page=".$count); } else { $catarray = explode(',', $cat); if(empty($catarray[0])) { $new_query = array("posts_per_page"=>$count,"post_type"=>$this->avia_post_type); } else { if($this->avia_new_query) { $new_query = $this->avia_new_query; } else { $new_query = array( "posts_per_page"=>$count, 'tax_query' => array( array( 'taxonomy' => $this->avia_term, 'field' => 'id', 'terms' => explode(',', $cat), 'operator' => 'IN') ) ); } } $additional_loop = new WP_Query($new_query); } if($additional_loop->have_posts()) : echo '<ul class="news-wrap image_size_'.$image_size.'">'; while ($additional_loop->have_posts()) : $additional_loop->the_post(); $format = ""; if(empty($this->avia_post_type)) $format = $this->avia_post_type; if(empty($format)) $format = get_post_format(); if(empty($format)) $format = 'standard'; $the_id = get_the_ID(); $link = get_post_meta( $the_id ,'_portfolio_custom_link', true) != "" ? get_post_meta( $the_id ,'_portfolio_custom_link_url', true) : get_permalink(); echo '<li class="news-content post-format-'.$format.'">'; //check for preview images: $image = ""; if(!current_theme_supports('force-post-thumbnails-in-widget')) { $slides = avia_post_meta(get_the_ID(), 'slideshow', true); if( $slides != "" && !empty( $slides[0]['slideshow_image'] ) ) { $image = avia_image_by_id($slides[0]['slideshow_image'], $image_size, 'image'); } } if(current_theme_supports( 'post-thumbnails' ) && !$image ) { $image = get_the_post_thumbnail( $the_id, $image_size ); } $time_format = apply_filters( 'avia_widget_time', get_option('date_format')." - ".get_option('time_format'), 'avia_newsbox' ); echo "<a class='news-link' title='".get_the_title()."' href='".$link."'>"; $nothumb = (!$image) ? 'no-news-thumb' : ''; echo "<span class='news-thumb $nothumb'>"; echo $image; echo "</span>"; if(empty($avia_config['widget_image_size']) || 'display title and excerpt' != $excerpt) { echo "<strong class='news-headline'>".get_the_title(); if($time_format) { echo "<span class='news-time'>".get_the_time($time_format)."</span>"; } echo "</strong>"; } echo "</a>"; if('display title and excerpt' == $excerpt) { echo "<div class='news-excerpt'>"; if(!empty($avia_config['widget_image_size'])) { echo "<a class='news-link-inner' title='".get_the_title()."' href='".$link."'>"; echo "<strong class='news-headline'>".get_the_title()."</strong>"; echo "</a>"; if($time_format) { echo "<span class='news-time'>".get_the_time($time_format)."</span>"; } } the_excerpt(); echo "</div>"; } echo '</li>'; endwhile; echo "</ul>"; wp_reset_postdata(); endif; echo $after_widget; } function update($new_instance, $old_instance) { $instance = $old_instance; $instance['title'] = strip_tags($new_instance['title']); $instance['count'] = strip_tags($new_instance['count']); $instance['excerpt'] = strip_tags($new_instance['excerpt']); $instance['cat'] = implode(',',$new_instance['cat']); return $instance; } function form($instance) { $instance = wp_parse_args( (array) $instance, array( 'title' => '', 'count' => '', 'cat' => '', 'excerpt'=>'' ) ); $title = strip_tags($instance['title']); $count = strip_tags($instance['count']); $excerpt = strip_tags($instance['excerpt']); $elementCat = array("name" => "Which categories should be used for the portfolio?", "desc" => "You can select multiple categories here", "id" => $this->get_field_name('cat')."[]", "type" => "select", "std" => strip_tags($instance['cat']), "class" => "", "multiple"=>6, "subtype" => "cat"); //check if a different taxonomy than the default is set if(!empty($this->avia_term)) { $elementCat['taxonomy'] = $this->avia_term; } $html = new avia_htmlhelper(); ?> <p><label for="<?php echo $this->get_field_id('title'); ?>">Title: <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></label></p> <p> <label for="<?php echo $this->get_field_id('count'); ?>">How many entries do you want to display: </label> <select class="widefat" id="<?php echo $this->get_field_id('count'); ?>" name="<?php echo $this->get_field_name('count'); ?>"> <?php $list = ""; for ($i = 1; $i <= 20; $i++ ) { $selected = ""; if($count == $i) $selected = 'selected="selected"'; $list .= "<option $selected value='$i'>$i</option>"; } $list .= "</select>"; echo $list; ?> </p> <p><label for="<?php echo $this->get_field_id('cat'); ?>">Choose the categories you want to display (multiple selection possible): <?php echo $html->select($elementCat); ?> </label></p> <p> <label for="<?php echo $this->get_field_id('excerpt'); ?>">Display title only or title & excerpt</label> <select class="widefat" id="<?php echo $this->get_field_id('excerpt'); ?>" name="<?php echo $this->get_field_name('excerpt'); ?>"> <?php $list = ""; $answers = array('show title only','display title and excerpt'); foreach ($answers as $answer) { $selected = ""; if($answer == $excerpt) $selected = 'selected="selected"'; $list .= "<option $selected value='$answer'>$answer</option>"; } $list .= "</select>"; echo $list; ?> </p> <?php } } }
Cheers!
ElliottHi bluecafe!
There is also..
ava_before_bottom_main_menu ava_inside_main_menu
You can view them all by looking inside the header.php file.
Regards,
ElliottHey McEwans!
Please try this out, http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/.
Cheers!
ElliottHi!
Hmm, we can disable it on both desktop and mobile but I’m not sure about only mobile, that is probably going to be quite difficult.
Best regards,
ElliottHi!
Add this to your custom CSS.
@media screen and (max-width: 1284px) { nav.main_menu { display: none !important; } #advanced_menu_toggle { display: block !important; } }
Regards,
ElliottHey!
Does your code look like this?
onclick="_gaq.push(['_trackPageview', '/VP/XXX/XXX']);"
I suppose you would need to create an event for each button. See here, https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide?hl=en.
Best regards,
ElliottHi!
Hmm, I think that should be working. Try adding it back in but double check for typos anywhere. All you need to do is copy the line (make sure your copying the whole line) and then paste it over line 895 in the /enfold/js/avia.js file.
Cheers!
Elliott -
This reply was modified 9 years, 9 months ago by
-
AuthorPosts