Forum Replies Created
-
AuthorPosts
-
I am answering my own question after reviewing the code.
I edited the /themes/enfold/config-templatebuilder/avia-shortcodes/timeline/timeline.js at line 87
I added:
autoplay: true,
Since this is already something that is written into the code, I would like to recommend adding the “Autorotation active?” and ” Slider autorotation duration” options to the shortcode builder.
I hope this helps someone else.
What’s frustrating is this has been known issue since March – https://kriesi.at/support/topic/issues-with-events-calendar-and-events-calendar-pro/#post-1185942
The Event Calendar Pro is one of THE MOST popular calendars out there. I really hope Enfold starts working on a patch to fix this soon!
Here is the most recent website we’ve launched on Enfold.
Hi, I also want to report that the dropcaps are not appearing on Enfold 4.5.4. If I add other non Enfold Shortcodes those shortcodes work, but not the dropcaps.
If I add an additional Enfold shortcode, the dropcaps appear. See link in private comment.
November 11, 2018 at 2:46 am in reply to: Image hotspot Tooltips with click – again – again 2018 #1032125For those that want to copy and paste into functions.php file and don’t have a separate enqueued JS file.
function hide_show_tooltips (){ ?> <script> (function( $ ) { $(window).ready(function() { jQuery('.avia-tooltip').hide(); $('.av-image-hotspot_inner').on( "click", function(e) { jQuery(this).siblings('.avia-tooltip').toggle('slow'); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'hide_show_tooltips');
November 11, 2018 at 2:42 am in reply to: Image hotspot Tooltips with click – again – again 2018 #1032123This was my solution. I set the “Show Tool Tips” to “Always” and added some JS via functions.php. (wp_enqueue_scripts function)
(function( $ ) { $(window).ready(function() { jQuery('.avia-tooltip').hide(); $('.av-image-hotspot_inner').on( "click", function(e) { jQuery(this).siblings('.avia-tooltip').toggle('slow'); }); }); })(jQuery);
June 26, 2018 at 10:01 pm in reply to: Cannot set frontpage in seetings and Enfold Theme Options #978164If the parent of the page was set to a draft or the page itself is a draft it will remove the option to change the front page in enfold and in the reading settings of wordpress. Same with the blog page setting.
Hope this helps!
I wanted to see if there is a response from the Kriesi team before I restore the theme back to 4.1 today?
Hi, I am having the same issue. I think it’s related to the latest theme upgrade to 4.4.
How can I enable the CSS in the settings? The site was fine on 4.1.
The Shortcode.CSS file from 4.1 to 4.4 is missing over 4500 lines of code between the two versions.
Thanks.
- This reply was modified 6 years, 5 months ago by Basilis.
add_filter('avf_frontend_search_form_param', 'avia_deactivate_ajax_search',10,1); function avia_deactivate_ajax_search($params) { $params['ajax_disable'] = true; return $params; }
This solved my problem to just remove the AJAX dropdown but keep the Magnify Glass in the main menu.
Hi Victoria,
I don’t think you’re understanding my question. I don’t want to remove the Enfold search magnify glass, nor do I wish to replace it with anything else.
I want to remove the Ajax dropdown of search results once you start typing. I will find a work around it.
I am using relevanssi plugin and the Enfold Search Dropdown doesn’t include the included search parameters set in Relevanssi and produces separate results. For the sake of consistency, it is in my clients best interest to disable the AJAX dropdown. How can I disable the AJAX search dropdown but keep the search magnify glass in the menu?
October 7, 2015 at 1:35 am in reply to: Not Responsive if Indent Left Button is used (padding-left:30px) #514871I figured it out – was my coding error. :)
-
AuthorPosts