Forum Replies Created
-
AuthorPosts
-
Hey!
Please update the theme to v2.7.1 (you’re using 2.5.3 at the moment). It contains a new version of LayerSlider which might fix the issue. I recommend to update to WP3.9.1 too. I recommend to use ftp: https://vimeo.com/channels/aviathemes/67209750 to update the theme.
Regards,
PeterHey crschulz!
Search for
avia_get_post_list('showposts='. $posts .'&orderby=post_date&order=desc');
and replace this line with
$query_args = array('showposts'=>$posts, 'orderby'=>'post_date', 'order'=>'desc', 'post_type'=>array('post', 'portfolio')); avia_get_post_list($query_args);
and instead of ‘post’, ‘portfolio’ insert your post types.
Regards,
PeterHey!
The quick css code is added to the dynamic stylesheet located in wp-content/uploads/dynamic_avia/enfold.css. Try to delete the entire dynamic_avia folder and re-save the theme options. Enfold should create the folder again and also regenerate the dynamic stylesheet.
Best regards,
PeterHi!
Glad you solved the problem. The default form stylings can be found in enfold/css/base.css below this headline
/* #Forms ================================================== */
Cheers!
PeterHey!
Can you please create us an admin account – I’ll check the console for javascript errors. The login credentials you posted here: https://kriesi.at/support/topic/problem-with-woocommerce-2/#post-265526 don’t work for me.
Regards,
PeterHey mand4mac3!
You need to pick one of the layouts. Changing the layout on a per page/post basis is not easily possible.
Best regards,
PeterHi!
You can try to use the search conditional to increase the number of search results on the search page only –
// limit the results to 5 function avia_searchwp_search_num_results() { if(is_search()) return 5; return 4; }
Best regards,
PeterHey Helchar!
Enfold already uses the jQuery noconflict mode. You don’t need to modify the theme files. The main problem is though that you can’t easily use two different jquery versions on the same website. Our theme relies on the standard wordpress jquery version which is 1.11.x and it definitely won’t work with the (very outdated) 1.3.2 version. You can try to initialize your old jquery script first and to store it into a variable (i. e. like http://stackoverflow.com/a/17407562 ) but then you also need to modify your calendar script to use the right jquery variable which contains the outdated jquery code, etc. If you’re not sure how to do this please hire a developer who can dig into the code and modify it for you.
Cheers!
PeterHey Swarez!
Yes, all images are saved as wordpress media files and are assigned to the “attachments” post type.
Best regards,
PeterHi!
Nein, die einzelnen Blog Einträge unterstützen leider keine “Fullwidth” Elemente wie zB den LayerSlider oder die “Color Sections”. Dies ist derzeit aus technischen Gründen nicht leicht machbar und würde diverse Anpassungen an den Theme Dateien erfordern. Ich empfehle euch daher entweder den Slider wegzulassen, oder ihr probiert den LayerSlider Shortcode direkt in den Artikeltext einzufügen. Dieser wird dann aber nicht die volle Breite ausfüllen, sondern nur bis zum “Content”-Rand gehen.
Cheers!
PeterHi!
Try to insert this code into the quick css field:
.active_tc.toggle_wrap { display: none; }
and then change then replace the transition speed in the shortcode.js file – i.e replace
content.addClass('active_tc').slideDown(200,
with
content.addClass('active_tc').slideDown(1500,
Cheers!
PeterHey!
Please go to Enfold > Theme Options > Blog Layout and change the “Blog Style” dropdown option to “Use the advance layout editor to build your own blog layout (simply edit the page you have chosen in Enfold->Theme Options as a blog page)”. Then save the settings and the breadcrumb should work. If you didn’t set a blog page go to Enfold > Theme Options and select the blog page from the dropdown.
Regards,
PeterHey!
Actually there’s a redirection in place and this is not a theme issue. If I deactivate the “Redirection” plugin the http://www.amequipment.com/es/ url does not redirect me to http://www.amequipment.com/es/la-serie-2d/ . Please configure the redirection plugin properly or (if you think it’s an incompatibility issue with WPML) try to contact the plugin author to fix this issue.
Cheers!
PeterMay 20, 2014 at 9:15 am in reply to: AJAX-Suche – Workaround funktioniert nicht bei allen Texten #267162Hi chilli-mind!
Bitte erstellt mir einen Admin Account und postet die Login Daten als “Private Reply” – ich sehe mir den Code an.
Best regards,
PeterHey advocatusneo!
Bitte verwende diesen Code um die Schriftgröße zu ändern
.csstransitions .av_fullscreen.avia-fade-slider .active-slide .avia-caption-content { font-size: 20px; }
Regards,
PeterHi!
If you want to place the hooks into the child theme use the after_theme_setup action like:
add_action('after_setup_theme','avia_change_wc_templates'); function avia_change_wc_templates(){ remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 100 ); }
I’m not sure which hooks are used by Gravity Forms though. Your best bet is to contact the developers of the Gravity Forms plugin or WC extension.
Regards,
PeterMay 18, 2014 at 8:11 pm in reply to: Single Page Menu / Organizing Portfolio Order Display / Shadows on Fonts #266413Hey Nomadigo!
1) You can try to change the post date of the portfolio entries (date when the entry was published). The post date normally should affect the order of the entries. You can also try this plugin: https://wordpress.org/plugins/taxonomy-terms-order/ to order the entries via drag’n’drop.
2) This is quite simple – basically you just need add several “color sections” to your advanced template and then drag’n’drop the elements into these color sections. Each color section can be assigned to a main menu link by using the “ID” setting – see: http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/
3) I recommend to use the text shadow generator here: http://css3gen.com/text-shadow/ – then insert the css code into the quick css field or into your child theme style.css file – it will look like:
h1 { text-shadow: 4px 4px 2px rgba(150, 150, 150, 1); }
Regards,
PeterMay 18, 2014 at 8:03 pm in reply to: text widget in footer, LayerSlider sliders layer transition #266412Hey!
Please create us an admin account and post the login credentials as private reply – we’ll look into it.
Cheers!
PeterMay 18, 2014 at 7:41 pm in reply to: Title (The which show-up on browsers tabs) and Descriptions #266401Hi!
Please insert this code into your child theme functions.php or enfold/functions.php file:
add_filter('avf_title_tag', 'avia_change_title_tag', 10, 2); function avia_change_title_tag($title, $wptitle) { if(!is_front_page() && !is_home()) $title = get_bloginfo('name').' | '.$wptitle; return $title; }
Best regards,
PeterHi!
Du kannst probieren mit folgenden CSS Code das Menü zu verstecken:
.av_header_transparency .av-main-nav-wrap{ display: none !important; }
Sobald dann der weiße Hintergrund hinzugefügt wird erscheint das Menü.
Cheers!
PeterHi!
Tbh I’m not sure if there’s a plugin which can do this. You can try to use this plugin: http://wordpress.org/plugins/custom-permalinks/ to set a custom permalink for each portfolio entry but it won’t add the category to the permalink automatically.
Cheers!
PeterHi!
The plugin custom post type is called “global_product_addon”. Our query is not based on the products post type but the taxonomy and terms(s) of the products. If the plugin just registers a new post type but uses the same taxonomy/terms like the standard woocommerce products it’s also included in the products query.
Regards,
PeterHi!
Great – glad it works ;)
Best regards,
PeterHey!
If you want to list the categories (instead of the portfolio pages) in the breadcrumb you can use the code I posted here: https://kriesi.at/support/topic/breadcrumbs-with-portfolio/
Regards,
PeterHi!
There’s an option which enables you to feature the first entry – you can either display it on the left side and the “small” entries on the right side or display it on top of the other entries.
Regards,
PeterHey!
Ok – it seems to be a plugin conflict between “The Events Calendar” plugin and WPML. I deactivated the events calendar plugin and the post query on the blog page started to work. I recommend to contact the developers of the events calendar plugin and to ask them to debug the issue…
Update – it seems like the events calendar plugin is not fully compatible with WPML: https://tri.be/support/forums/topic/version-3-wpml-ready/ – probably you need t switch to another plugin…
Cheers!
PeterHi!
I couldn’t find any errors on the theme option page and I couldn’t reproduce the issue on my test server but maybe your server fails to generate the dynamic stylesheet when you safe the theme options a second time without reloading the option page. You can deactivate the dynamic stylesheet by replacing this line in enfold/enfold-functions.php:
add_action('avia_ajax_after_save_options_page', 'avia_generate_stylesheet', 30, 1);
with
//add_action('avia_ajax_after_save_options_page', 'avia_generate_stylesheet', 30, 1);
Best regards,
PeterHey!
Copy the entire code of enfold\includes\helper-social-media.php into your child theme functions.php file (maybe you need to remove the first line which contains the
$this->html .= "<a {$blank} href='".$share['url']."' ".av_icon_string($icon)." title='' data-avia-related-tooltip='{$name}'><span class='avia_hidden_link_text'>{$name}</span></a>";
with
$this->html .= "<a {$blank} rel='nofollow' href='".$share['url']."' ".av_icon_string($icon)." title='' data-avia-related-tooltip='{$name}'><span class='avia_hidden_link_text'>{$name}</span></a>";
and
$html .= "<a {$blank} href='".$icon['social_icon_link']."' ".av_icon_string($icon['social_icon'])." title='".ucfirst($icon['social_icon'])."'><span class='avia_hidden_link_text'>".ucfirst($icon['social_icon'])."</span></a>";
with
$html .= "<a {$blank} rel='nofollow' href='".$icon['social_icon_link']."' ".av_icon_string($icon['social_icon'])." title='".ucfirst($icon['social_icon'])."'><span class='avia_hidden_link_text'>".ucfirst($icon['social_icon'])."</span></a>";
Regards,
PeterHi!
Maybe a plugin is incompatible with WP3.9+. Please try to deactivate all plugins and check if the editor starts to work…
Cheers!
PeterMay 17, 2014 at 8:45 pm in reply to: Enfold with dsIDXpress WP Plugin – Search Filter Box Breaks #266179Hi!
Oh, I see. Unfortunately I couldn’t find a fix for this issue. Your best bet is to contact the plugin author – maybe he can provide some help. Otherwise you need to hire a developer who investigates the plugin/theme conflict and who fixes js/css/html code errors if necessary.
Best regards,
Peter -
AuthorPosts