Forum Replies Created
-
AuthorPosts
-
Hey!
There is a missing closing “}” in the Quick CSS code, try fixing that first.
Regards,
JosueOctober 15, 2014 at 11:47 pm in reply to: Promo BoX Button not showing up after WP 4.0 upgrade #336455It is working for me (changed the recipient to avia.josue at gmail.com, result: http://screencast.com/t/AjPzUj9LyxFD), try with another address or check your Spam folder in your inbox.
Best regards,
JosueOctober 15, 2014 at 11:45 pm in reply to: Promo BoX Button not showing up after WP 4.0 upgrade #336452I though you removed it, but it’s still there so technically the cf should work. I’ll make a test right now.
Best regards,
Josue-
This reply was modified 11 years, 5 months ago by
Josue.
October 15, 2014 at 11:34 pm in reply to: Promo BoX Button not showing up after WP 4.0 upgrade #336447Did you add the code i suggested to functions.php?
function change_cf_from() { return " (Email address hidden if logged out) "; } add_filter('avf_form_from', 'change_cf_from', 10);Alternatively, as you are not using a child theme installation you could use this plugin to store custom functions like that.
Cheers!
JosueYou are welcome, glad to help :)
Regards,
JosueOctober 15, 2014 at 11:04 pm in reply to: Promo BoX Button not showing up after WP 4.0 upgrade #336434Hi,
Try adding this at the very end of your theme functions.php file:
function add_custom_script(){ ?> <script> jQuery(window).load(function(){ jQuery('.tab').on('click', function(){ jQuery(window).trigger('resize'); }); }); </script> <?php } add_action('wp_footer', 'add_custom_script');Regards,
JosueOctober 15, 2014 at 10:45 pm in reply to: Promo BoX Button not showing up after WP 4.0 upgrade #336426I added the following code at the very end of the /enfold/functions.php file:
function change_cf_from() { return " (Email address hidden if logged out) "; } add_filter('avf_form_from', 'change_cf_from', 10);The error at the top says it is coming from the enfold/functions-enfold.php file, not enfold/functions.php:
Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /home/***/***/wp-content/themes/enfold/functions-enfold.php:1) in /home/***/***/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33
Best regards,
JosueHey!
It’s fixed now, the problem was the fifth slider, you put the video URL in the aspect ratio field.
Best regards,
JosueAdd this:
.av-main-nav > li > a { padding: 0 10px; }Cheers!
JosueHI Marie,
I don’t see a problem with that as you are using the theme available options.
Cheers!
JosueHi,
Open enfold/config-templatebuilder/avia-shortcodes/events_upcoming.php and look for line 182:
'eventDisplay' => 'upcoming',Replace it by this:
'eventDisplay' => 'list',Regards,
JosueHey Thomas!
Do the following:
1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
2. Go to Settings > Media
3. Adjust the gallery image size to your needs.
4. Regenerate the thumbnails by clicking the button at the bottom.Regards,
JosueOctober 15, 2014 at 8:28 pm in reply to: Promo BoX Button not showing up after WP 4.0 upgrade #336363Hi Terri!
The CF7 form is working because i modified the From email to ” (Email address hidden if logged out) ” so the server allows it to send emails, to do the same in the Enfold form you’d need to add the following to your theme / child theme functions.php:
function change_cf_from() { return " (Email address hidden if logged out) "; } add_filter('avf_form_from', 'change_cf_from', 10);Edit:
I already added the code to the theme functions.php, the Enfold form is working now, you can test it here:
http://www.holleycreative.com/cf-test/Best regards,
Josue-
This reply was modified 11 years, 5 months ago by
Josue.
Hey!
Try with this code instead:
@media only screen and (min-width: 767px) { .logo a img { width: 350px; height: auto; } .logo a img{ top: 22px; } .header-scrolled .logo a img{ top:0; } } @media only screen and (max-width: 1024px) { .html_mobile_menu_tablet .main_menu , .html_mobile_menu_tablet #header_main_alternate{display:none;} .html_mobile_menu_tablet .container #advanced_menu_toggle, .html_mobile_menu_tablet #advanced_menu_hide{display:block;} .html_mobile_menu_tablet #mobile-advanced{display:block;} }Best regards,
JosueNo, you can use the same class in any other elements you want.
Regards,
JosueHi!
The bug seems to be related to the textdomain indeed, one easy fix is to change this line in /config-events-calendar/views/default-template.php:
$title = tribe_is_month() ? __('Calendar of Events', 'tribe-events-calendar') : tribe_get_events_title(false);To:
$title = tribe_is_month() ? __('Calendar of Events', 'avia_framework') : tribe_get_events_title(false);I’ll report this so hopefully a definitive solution will be included in the next update.
Regards,
JosueHi,
Indeed, that would be ideal. Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHi,
You can put this code to your child functions.php:
add_action('tribe_events_template', 'avia_events_tempalte_paths', 10, 2); function avia_events_tempalte_paths($file, $template) { $redirect = array('default-template.php' , 'single-event.php' , 'pro/map.php' ); if(in_array($template, $redirect)) { $file = get_stylesheet_directory_uri() . "config-events-calendar/views/".$template; } return $file; }Then you’d duplicate the /config-events-calendar/views/ content and structure to your child theme directory.
Regards,
JosueOctober 14, 2014 at 10:00 pm in reply to: How does the Contact Form integrates with Gravity Forms? #335772Hi!
Gravity Forms is meant to be used as a replacement of the Enfold built-in form.
Cheers!
JosueOctober 14, 2014 at 9:33 pm in reply to: Link colors in title text of "Magnific-Popup" lightbox (bug or missing feature?) #335757Hey Eckhard!
I’m not sure if this is possible with how the dynamic stylesheet works right now, if you check at the generated selectors (http://screencast.com/t/VvsISYzsrX) you’ll note that they make use of container classes like
main_color,header_color,socket_color, etc. the problem is that the Magnific Popup element appears outside of these containers (http://screencast.com/t/VvsISYzsrX).Maybe a solution would be to add a new color scheme (PopUp Colors?) to the theme options, feel free to request something like that here.
Regards,
JosueHi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHey George!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 989px) { .responsive div .avia_responsive_table .avia-data-table table, .responsive div .avia_responsive_table .avia-data-table tbody, .responsive div .avia_responsive_table .avia-data-table tr, .responsive div .avia_responsive_table .avia-data-table td, .responsive div .avia_responsive_table .avia-data-table th{display:block; border-top:none; border-right:none; border-left:none; text-align: center;} .responsive .avia_responsive_table .avia-data-table{border-style:solid; border-width: 1px;} .responsive .avia_responsive_table .avia-data-table .avia-pricing-row .avia-desc-col{text-align: center;} .responsive .avia_responsive_table .avia-data-table .avia-button-row, .responsive .avia_responsive_table .avia-data-table tr:first-child th{display:none;} .responsive .avia_responsive_table .avia-data-table td:before { display:block; font-style: italic; font-size: 11px; } .responsive .avia_responsive_table .avia-data-table td { position: relative; } .responsive .avia_scrollable_table { width: 100%; overflow-x: scroll; overflow-y: hidden; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } .responsive .avia_scrollable_table .avia-data-table > thead > tr > th, .responsive .avia_scrollable_table .avia-data-table > tbody > tr > th, .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > th, .responsive .avia_scrollable_table .avia-data-table > thead > tr > td, .responsive .avia_scrollable_table .avia-data-table > tbody > tr > td, .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > td { white-space: nowrap; } }Cheers!
JosueHey!
Can you post a screenshot/mockup of what would you want to achieve?
Best regards,
JosueHey!
Try changing that in /enfold/config-events-calendar/views/default-template.php, line 10.
Regards,
JosueHi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHey Marie,
Try this code instead:
.mc-hr-gradientcolor .hr-inner { border: 0; height: 1px; background: #00c472; background: -moz-linear-gradient(left, #00c472 0%, #3cd52e 100%); background: -webkit-gradient(linear, left top, right top, color-stop(0%,#00c472), color-stop(100%,#3cd52e)); background: -webkit-linear-gradient(left, #00c472 0%,#3cd52e 100%); background: -o-linear-gradient(left, #00c472 0%,#3cd52e 100%); background: -ms-linear-gradient(left, #00c472 0%,#3cd52e 100%); background: linear-gradient(to right, #00c472 0%,#3cd52e 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00c472', endColorstr='#3cd52e',GradientType=1 ); }Adjust height: 1px as needed.
Best regards,
JosueOctober 14, 2014 at 5:43 pm in reply to: Easy Slider – caption title on the bottom of the image 100% width #335680Hey!
Please post a link to the page where you’re trying this.
Best regards,
JosueHi!
You can’t put gradients in the border-color property, you’d need to use border-image, refer to this – http://css-tricks.com/examples/GradientBorder/
Regards,
JosueHi,
Can you please create me an administrator account in the staging website? post it here as a private reply.
Regards,
Josue -
This reply was modified 11 years, 5 months ago by
-
AuthorPosts
