Forum Replies Created
-
AuthorPosts
-
November 9, 2014 at 11:00 pm in reply to: Mailchimp for WordPress plugin breaks after Enfold 3.0 Update #348499
Hi,
Can you check if the forms work with the default WordPress theme activated?
Cheers!
JosueHi!
The Flash logo appears when the Flash plugin is missing, you can download it here.
Cheers!
JosueHi gb!
Check out this video:
Best regards,
JosueHey!
Try adding this code to the Quick CSS:
.avia-menu-fx{ display: none !important; }Cheers!
JosueHey!
Here’s how i see it. Can you post a screenshot/mockup of what would you want to achieve?
Best regards,
JosueNovember 9, 2014 at 10:50 pm in reply to: Coming Soon Demo: setting up the countdown and the sign up form #348484Hey!
1. To change the countdown date just go to the edit page screen and edit the “Animated Countdown” element – http://screencast.com/t/P3VXTEfz087d
2. You’d need to use a Mailchimp WordPress plugin signup shortcode for that, the form put there is just an Enfold contact form and does not have collecting capabilities.
Best regards,
JosueNovember 9, 2014 at 10:44 pm in reply to: How to hide caption on a movie slider when the movie starts playing #348481Hey!
Can you please specify which headline are you referring to in your website?
Best regards,
JosueHey Peter!
Try with this:
<?php if(!function_exists('avia_theme_featured_image_meta')) { add_filter( 'admin_post_thumbnail_html', 'avia_theme_featured_image_meta'); function avia_theme_featured_image_meta( $content ) { global $post, $post_type; if($post_type == "meeting" || $post_type == "cpt1" || $post_type == "cpt2" || $post_type == "cpt3") { $text = __( "Don't display image on single post", 'avia_framework' ); $id = '_avia_hide_featured_image'; $value = esc_attr( get_post_meta( $post->ID, $id, true ) ); $selected = !empty($value) ? "checked='checked'" : ""; $label = '<label for="' . $id . '" class="selectit"><input '.$selected.' name="' . $id . '" type="checkbox" id="' . $id . '" value="1" > ' . $text .'</label>'; return $content .= $label; } return $content; } }Replace cpt1, cpt2, cpt3 by the other CPT slugs.
Best regards,
JosueHey!
Try adding this to your .htaccess file (.com site):
<FilesMatch "\.(ttf|otf|woff)$"> <IfModule mod_headers.c> Header set Access-Control-Allow-Origin "*" </IfModule> </FilesMatch>Cheers!
JosueNovember 9, 2014 at 10:20 pm in reply to: How to use icon fonts (including Font Awesome) with Enfold 3.0.2? #348470Hi!
I’ll tag this topic to Kriesi, please wait for his response.
Cheers!
JosueNovember 9, 2014 at 10:15 pm in reply to: Testimonial, fullwidth slider, icon lists and pictures not loading #348467Hey Ronald!
Nevermind, i managed to fix it by editing the index.php file located at the root, you just needed to reference the correct WordPress installation:
require( dirname( __FILE__ ) . '/wordpress/wp-blog-header.php' );It was loading the one located at the root instead.
Cheers!
Josue-
This reply was modified 11 years, 5 months ago by
Josue.
November 9, 2014 at 10:01 pm in reply to: Child theme css problem – testing webpage speed — 404 error #348463Hey!
We normally ask that because we have the latest version in our environments, anyways seems you are using the parent theme now, let us know when you switch to the child theme so we can troubleshoot the original problem.
Best regards,
JosueNovember 9, 2014 at 9:57 pm in reply to: Multiple problems with "Blank – No Header, No Footer" template. #348460Hi!
I managed to solve it by wrapping the last part of the content within a Color Section, please check the test page.
Cheers!
JosueHey!
Try adding this code to the Quick CSS:
.title_container .container { padding-left: 0; margin-left: 30px; }Cheers!
JosueNovember 9, 2014 at 9:06 pm in reply to: Theme closes main div after first grid row element it encounters #348443We looking forward to hearing from you :)
Regards,
JosueNovember 9, 2014 at 8:58 pm in reply to: Page updates to elements in Advanced Editor often breaks code #348442Hi @seanogee!
I think the problem was that some of the Image elements were missing their closing tag ([/av_image]) while the affected one had it, i fixed that via debug mode and the issue seems to be resolved now.
Regarding the button label, you’d need to use the entity version of the greater than sign because that symbol is reserved for closing HTML tags – http://dev.w3.org/html5/html-author/charref
Cheers!
JosueHi!
Not sure what could be to be honest but i made a copy of that page and it works fine, check /services/service-details-test/.
Best regards,
JosueHey!
Thanks for your feedback Simon, i’ll let Kriesi know :)
Best regards,
JosueYou are welcome, glad we could help :)
Regards,
JosueNovember 9, 2014 at 7:28 am in reply to: Enfold theme – Sort portfolio items for real estate website #348286Hey!
You’d need to use two snippets in functions.php, (child theme would be ideal):
The first one would be to enable custom fields for Portfolio items:
add_filter('avf_portfolio_cpt_args', 'avf_portfolio_add_custom_fields', 1); function avf_portfolio_add_custom_fields($args) { $args['supports'] = array('title','thumbnail','excerpt','editor','comments', 'custom-fields'); return $args; }And the second one to alter the portfolio grid order (“custom_price” being the custom field):
function custom_post_grid_query( $query, $params ) { $query['orderby'] = 'meta_value'; $query['order'] = 'ASC'; $query['meta_query'] = array(array('key' => 'custom_price')); return $query; } add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);Best regards,
JosueNovember 9, 2014 at 6:58 am in reply to: Advanced Layout Editor Conflict with WordPress Related Posts Plugin? #348284Hi,
There seems to be a conflict indeed, unfortunately making third-party plugins compatible with the theme is beyond the support scope we can offer. You can contact a developer to help you debug the plugin.
Regards,
JosueNovember 9, 2014 at 6:37 am in reply to: CONTACT FORMS STOPPED WORKING. PLEASE NEED HELP URGENTLY #348281Hi!
There is no need to install any additional plugin, the Enfold contact form is working fine. I’ve created a test page (/cf-test/), made a test with my email (+ autoresponder) and the two messages did get to my inbox as expected – http://screencast.com/t/CzAdrbbvAOfI
Based on that i’d suggest changing the recipient to see if that’s the root of the issue.
Best regards,
JosueHi!
Refer to this topic:
https://kriesi.at/support/topic/gravity-forms-date-picker-popup-displays-incorrectly/Best regards,
JosueHey!
Try adding this at the very end of your theme / child theme functions.php file:
function custom_func() { echo ztrans_generateLanguageSelectCode('text'); } add_action('ava_after_main_menu', 'custom_func');Cheers!
JosueHey Chinmay!
Try putting the flags as images in HTML format in the label field – http://screencast.com/t/YZJllLBe:
<img src="http://www.naturahealthcare.com/wp-content/uploads/2014/11/aus.jpg"> <img src="http://www.naturahealthcare.com/wp-content/uploads/2014/11/uk.jpg">Cheers!
JosueNovember 9, 2014 at 4:08 am in reply to: How to edit font colour for all of the links in the header menu #348270Hey!
The problem is that the greater than signs didn’t get copied correctly, make sure it’s exactly like this in the Quick CSS;
.page-id-11 .av-main-nav > li > a .avia-menu-text { color: white !important; }Best regards,
Josue -
This reply was modified 11 years, 5 months ago by
-
AuthorPosts
