Forum Replies Created
-
AuthorPosts
-
September 7, 2013 at 7:34 am in reply to: How to export AdvancedLayoutBuilder page template for import in another website #139859
There’s no import/export function at the moment. You can use a tool like: WP MIGRATE DB to clone the entire database (including the templates) or you can activate the debug mode: https://kriesi.at/support/topic/conditional-shortcode-around-layout-objects#post-138555 and copy the template content from the “debug window” into the TinyMCE editor field (html mode) of the other website/page.
Not sure why it’s not working in your case. The hash value should not link to other pages at all (it makes no difference if it’s #practice-area or #tab-id). Try to deactivate all plugins (maybe it’s a plugin conflict) and if this doesn’t help try to contact you hoster – maybe you need to change the server or htaccess configuration somehow. In addition your url structure seems to be wrong. http://www.company.com/practices/#practice-area will not work because the / at the end tells the server it’s a (sub)page. The correct url would look like: http://www.company.com/practices#practice-area
Hi,
I fixed it. I changed the thumbnail size of the gallery images and applied a small patch which fixes a js error when you use menu names with non Latin characters (eg Cyrillic or Greek characters).
Hi!
Can you post a link to your website please? The latest version can be found here: http://wordpress.org/plugins/wp-backgrounds-lite/
Best regards,
Peter
Tbh I’m not sure if the iframe supports the draggable option. If you want build advanced maps without taking care of code modifications I recommend to use this plugin: WP Google Maps. I tested it with Enfold and it’s very intuitive & easy to use and it integrates well into our theme. You can create an unlimited number of maps & markers, re-size the maps, etc.
It also allows you to activate/deactivate the dragging function. Just go to Maps > Settings and check the “Disable Mouse Dragging” checkbox.
Something on your server (probably a plugin, maybe your hoster) adds php vars to the image links. Normally the image link should look like: http://i1.wp.com/www.volantexrc.com/volantex/wp-content/uploads/2013/09/757-FPVraptor-01.jpg and the jpg extension helps the lightbox script to determine if the link points to an image or just another website. In your case the link looks like: http://i1.wp.com/www.volantexrc.com/volantex/wp-content/uploads/2013/09/757-FPVraptor-01.jpg?resize=260%2C185 and the ?resize=260%2C185 extension breaks the file type detection. Please try to deactivate all plugins to get rid of the php vars (?resize=260%2C185, etc.). Then activate them one by one to find the culprit.
Hey!
Ja, man könnte aber single.php in den Child Theme Ordner kopieren, sodass deine modifizierte Version auch in Zukunft verwendet wird. Das Parent Theme lädt nämlich immer zuerst die ChildTheme Templates.
Best regards,
Peter
Hi,
Yes, unfortunately it’s wishful thinking . WooCommerce pages (shop pages, product archive pages and product single pages) are not compatible with the layout builder. The layout builder would overwrite the default woocommerce plugin templates and break many existing (third party) woocommerce extensions.
Hi!
Please try following code instead
.toggle_content .flex_column + br {
display: none !important;
}
.toggle_content {
overflow: hidden !important;
}Regards,
Peter
No, by default the arrow navigation buttons (left/right side of the screen) will always link to the next or previous post without checking the category. The posts are selected by date. If you want to limit the navigation to the current category you can use following code;
add_filter('avia_post_nav_categories', 'use_same_category_filter');
function use_same_category_filter($same_category)
{
$same_category = true;
return $same_category;
}– insert it at the bottom of functions.php. This code will only work for standard posts and it doesn’t support portfolio entries/post at the moment. This is indeed a bug in the software but not in our “software” or theme code but it’s a wordpress core bug/limitation: https://kriesi.at/support/topic/is-it-possible-to-create-two-completely-seperate-portfolios#post-108132
open up wp-contentthemesenfoldincludeserror404.php and delete
<h3 class=''><?php _e('Feel like browsing some posts instead?', 'avia_framework'); ?></h3>
<?php
the_widget('avia_combo_widget', 'error404widget', array('widget_id'=>'404',
'before_widget' => '<div class="widget avia_combo_widget">',
'after_widget' => '</div>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>'
));
?>Some images – eg http://wpdavy.bwmc.be/cms/wp-content/uploads/2013/06/campagnebeeld01-1500×1164.jpg – require 3-5 seconds to load (also compare the time line here: http://gtmetrix.com/compare/bkiyc62C/ezh2BMUl ). You might want to compress the image to reduce the loading time. In addition your server doesn’t support gzip compression (or at least it’s not activated right now – that explains the low YSlow rating (compare F grade “Compress components with gzip”).
Hi!
Please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out) – I’ll look into it.
Best regards,
Peter
Hey!
See: https://kriesi.at/support/topic/error-message-at-wordpress-login – probably a whitespace character at the end of a php file triggers this warning.
Best regards,
Peter
In wp-contentthemesenfoldframeworkphpclass-framework-widgets.php replace
var myOptions = {
zoom:".$zoom.",
mapTypeControl:true,
mapTypeId:google.maps.MapTypeId.".$type.",
mapTypeControlOptions:{style:google.maps.MapTypeControlStyle.DROPDOWN_MENU},
navigationControl:true,
navigationControlOptions:{style:google.maps.NavigationControlStyle.SMALL},
center:latlng
};with
var myOptions = {
zoom:".$zoom.",
mapTypeControl:true,
mapTypeId:google.maps.MapTypeId.".$type.",
mapTypeControlOptions:{style:google.maps.MapTypeControlStyle.DROPDOWN_MENU},
navigationControl:true,
navigationControlOptions:{style:google.maps.NavigationControlStyle.SMALL},
center:latlng,
draggable: false
};this code mod will deactivate the google map scroll function and the user interaction (touch/input event) will affect the website and not the map area.
1) I tested the code on my test server and the draggable: false setting and the code I posted above works. Note that it will only work with the Enfold Maps widget and will not affect third party google map plugins or iframes you generated with a map generator. I didn’t find the draggable: false setting in the source code on this page: http://mep.raffeltest.nl/vestigingen/amsterdam/ and it seems like you didn’t modify the file yet.
2) Can you post a link to the parallax website please? I didn’t notice any issues on this page: http://mep.raffeltest.nl/vestigingen/amsterdam/
Hey!
Go to Enfold > Styling. There you’ll see a textarea field (“Quick CSS”) where you can insert your css code.
Regards,
Peter
Hey!
Hallo,
öffne single.php und entferne folgende Zeile:
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(array('title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));
Regards,
Peter
For now a quick fix is to rename the menu. Just use latin characters for the menu name and re-save it. Eg call the main menu “Main Menu” and the top menu “Sub Menu” and it should work. I’ll look into it and try to find a fix for the next update.
Hey!
Yes, that’s right.
Best regards,
Peter
Hi!
You can use the “conditional menu” feature instead: https://kriesi.at/support/topic/enfold-conditional-menu
Regards,
Peter
No, this code will not work. You must make sure that the closing tags are within the same av_textblock shortcode. Use follow code instead
[av_textblock ]
[s2If current_user_can(access_s2member_ccap_custom1)]
Text
[/s2if]
[/av_textblock]
[av_textblock ]
[s2If current_user_can(access_s2member_ccap_custom2)]
[av_portfolio columns='2' items='16' contents='excerpt' preview_mode='auto' image_size='portfolio' linking='' sort='yes' paginate='yes']
[/s2if]
[/av_textblock]September 5, 2013 at 11:15 am in reply to: Is there a way to backup and export all settings? #139395Actually you don’t need to change the theme. If it’s a standard post you just need to switch from the “Visual” mode to the “Text” mode to copy the shortcodes. If you want to copy the content of a dynamic layout you can use the “Save Template” button ( http://www.screenr.com/ee97 ) or activate the debug mode ( https://kriesi.at/support/topic/how-to-copy-contents-from-the-demo-pages-to-a-new-page#post-137408 ) to have access to the plain shortcode source code.
Hi!
Try following – open up js/avia.js and replace
(function($)
{
"use strict";
$(document).ready(function()
{with
(function($)
{
"use strict";
$(document).ready(function()
{
$('.lshowcase-logos a').addClass('noLightbox');Regards,
Peter
Hey!
Please insert following code into the quick css field to fix the issue
.toggle_content .flex_column + br {
display: none;
}Best regards,
Peter
Hi!
You can configure the category archive layout on the theme option page. Go to “Enfold > Sidebar” and select “Sidebar on Archive Pages” > “Right Sidebar”.
Regards,
Peter
1) You can remove the white space with following css code
#fullwidthmap .avia-builder-widget-area {
margin-bottom: -6px !important;
}2) In wp-contentthemesenfoldframeworkphpclass-framework-widgets.php replace
var myOptions = {
zoom:".$zoom.",
mapTypeControl:true,
mapTypeId:google.maps.MapTypeId.".$type.",
mapTypeControlOptions:{style:google.maps.MapTypeControlStyle.DROPDOWN_MENU},
navigationControl:true,
navigationControlOptions:{style:google.maps.NavigationControlStyle.SMALL},
center:latlng
};with
var myOptions = {
zoom:".$zoom.",
mapTypeControl:true,
mapTypeId:google.maps.MapTypeId.".$type.",
mapTypeControlOptions:{style:google.maps.MapTypeControlStyle.DROPDOWN_MENU},
navigationControl:true,
navigationControlOptions:{style:google.maps.NavigationControlStyle.SMALL},
center:latlng,
draggable: false
};Hey!
I use following rules on my websites
User-agent: *
Disallow: /cgi-bin
Disallow: /wp-admin
Disallow: /wp-includes
Disallow: /wp-content/plugins
Disallow: /wp-content/cache
Disallow: /wp-content/themes
Disallow: /*?*
Disallow: /*?
Allow: /wp-content/uploadsRegards,
Peter
Hi,
no, Flashlight does not support the ajax portfolio feature. Btw – my answer here: https://kriesi.at/support/topic/one-column-portfolio-option is also not valid for Flashlight but the feature is only planned for Enfold at the moment.
No, it should work even if you installed WooCommerce before you assigned the main menu to the theme location. However note that the cart won’t display if no product was added to the cart. Eg like on the demo page: http://kriesi.at/themes/enfold/shop/ you must first select a product and afterwards Enfold fades in the cart (right side). If the cart still doesn’t work please post a link to your website and we’ll check the code.
-
AuthorPosts