Forum Replies Created
-
AuthorPosts
-
Hey neuropetvet,
I commented out the old menu fix and added the new menu fix. If all goes well feel free to remove the old code.@media only screen and (max-width: 1023px) { .av-burger-menu-main { display: block!important; } #top .av_mobile_menu_tablet .av-main-nav .menu-item { display: none!important; }}I cleared your site’s cache, Please clear your browser cache :)

Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
Oh I see, Try disabling your plugins and clear your cache If that resolves the issue, reactivate each one individually until you find the cause.Best regards,
MikeHey jockejansson,
I didn’t see any smoother change hover state for the menu items or links, but it got me researching for a solution:I think this could be adopted for your needs.
Best regards,
MikeAugust 13, 2017 at 8:59 pm in reply to: can I use Enfold Onepage template with the Default template? #838327Hi,
Please enable debug mode by adding the code provided in this link to your functions.php file which can be accessed from Appearance > Editor http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/This lets you view the shortcode for all the page elements.
Then you can import the demos and copy the sections you like to create a whole new look.Best regards,
MikeHey enricobaumgart,
Sorry, that feature is not available yet, I tried setting it further in the background (z-index) and bring the image to the top, but the red part is solid and covers the place the white arrow was. I also tried setting the white arrow to transparent with no better luck.
Perhaps try to request – or vote if already requested – such feature on Enfold feature request form.Best regards,
MikeHey vadikcoma,
I don’t have an iPad mini, but here is the brakepoint code you can adjust to suit.@media only screen and (max-width: 768px) { .av-burger-menu-main { display: block!important; } #top .av_mobile_menu_tablet .av-main-nav .menu-item { display: none!important; }}Best regards,
MikeAugust 13, 2017 at 8:28 pm in reply to: Mobile Menu after update not obeying "nomobile" class anymore #838322Hey alexandervellguth,
The new menu doesn’t show the classes like the old one, I believe this is being changed, but adding your request – or vote – on this feature at the Enfold feature request form.Best regards,
MikeHey Sir_G0ran-The_L0rd,
Is there a chance that the Enfold Theme Options > Header > Header Size has a custom number setting it that large.
If not, can you please include a admin login in the private content area so we can take a closer look.Best regards,
MikeHi,
You can try adjusting the number to suit, I just tried this and it worked well:#av_section_1 { min-height: 85vh !important; }Please clear your cache
Best regards,
MikeHi,
@Guenni007 great example, very smooth, thanks.Best regards,
MikeAugust 13, 2017 at 7:44 pm in reply to: Youtube link shows up as first thing in the post preview #838306Hi,
Try this one:@media only screen and (max-width: 1290px) { .av-burger-menu-main { display: block!important; } #top .av_mobile_menu_tablet .av-main-nav .menu-item { display: none!important; }}Please clear your cache :)
Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHey Sankte,
Try adding this code to the end of your functions.php file in Appearance > Editor:/** * Changes the redirect URL for the Return To Shop button in the cart. * * @return string */ function wc_empty_cart_redirect_url() { return 'http://yourdomain.com/your-page/'; } add_filter( 'woocommerce_return_to_shop_redirect', 'wc_empty_cart_redirect_url' );This will redirect to the URL specified in the code
Best regards,
MikeAugust 13, 2017 at 6:56 pm in reply to: add custom link to image title instead of image itself in masonry gallery #838291August 13, 2017 at 6:38 pm in reply to: ENFOLD – Contact Form – Only Emailing to Default email, not custom emails #838287Hi,
Can you please describe your issue in more detail so that we can help.
Please note that if you are using Gmail, Yahoo, etc and use the same email address as the to and from addresses, such as testing, these providers mark it as spam. Also note that some hosts such as HostGator have very slow php mail, and some cPanels offer SpamAssassin on the server side that some people don’t realize is on.Best regards,
MikeHi,
Try this code in the General Styling > Quick CSS field:@media only screen and (max-width: 1290px) { nav.main_menu {display:none !important;} #advanced_menu_toggle, #advanced_menu_hide {display:block !important;} }Best regards,
MikeAugust 13, 2017 at 5:51 pm in reply to: show woocommerce shopping cart icon only in the shop pages #838271Hi,
I think you would do better to use a plugin for this, I found this article about how to do so, but you could also try a little plugin searching.I also found this function for functions.php, but I didn’t test, so use at your own risk:
add_action( 'wp_enqueue_scripts', 'dequeue_woocommerce_styles_scripts', 99 ); function dequeue_woocommerce_styles_scripts() { if ( function_exists( 'is_woocommerce' ) ) { if ( ! is_woocommerce() && ! is_cart() && ! is_checkout() ) { # Styles wp_dequeue_style( 'woocommerce-general' ); wp_dequeue_style( 'woocommerce-layout' ); wp_dequeue_style( 'woocommerce-smallscreen' ); wp_dequeue_style( 'woocommerce_frontend_styles' ); wp_dequeue_style( 'woocommerce_fancybox_styles' ); wp_dequeue_style( 'woocommerce_chosen_styles' ); wp_dequeue_style( 'woocommerce_prettyPhoto_css' ); # Scripts wp_dequeue_script( 'wc_price_slider' ); wp_dequeue_script( 'wc-single-product' ); wp_dequeue_script( 'wc-add-to-cart' ); wp_dequeue_script( 'wc-cart-fragments' ); wp_dequeue_script( 'wc-checkout' ); wp_dequeue_script( 'wc-add-to-cart-variation' ); wp_dequeue_script( 'wc-single-product' ); wp_dequeue_script( 'wc-cart' ); wp_dequeue_script( 'wc-chosen' ); wp_dequeue_script( 'woocommerce' ); wp_dequeue_script( 'prettyPhoto' ); wp_dequeue_script( 'prettyPhoto-init' ); wp_dequeue_script( 'jquery-blockui' ); wp_dequeue_script( 'jquery-placeholder' ); wp_dequeue_script( 'fancybox' ); wp_dequeue_script( 'jqueryui' ); } } }Best regards,
MikeHey abedia,
Try this code in the General Styling > Quick CSS field:@media only screen and (max-width: 767px){ .responsive #top #wrap_all .main_menu {left: 1%!important; }}Best regards,
MikeAugust 13, 2017 at 5:23 pm in reply to: blank space on page after adding newsletter sign up form #838267Hi,
Try this code in the General Styling > Quick CSS field:#after_section_8 {display:none !important; }please see screenshot in Private Content area to be sure I’m looking at the right space.
Best regards,
MikeHi,
I added this code in the General Styling > Quick CSS field:@media (max-width: 910px){ .wp-megamenu-main-wrapper.wpmm-ctheme-wrapper.wpmega-default-theme .wpmegamenu-toggle { background: transparent!important; }}It now doesn’t show, Please clear your cache :)
Best regards,
MikeAugust 13, 2017 at 4:52 pm in reply to: Youtube link shows up as first thing in the post preview #838257Hey annajou,
One option is to manually change the excerpt by using the excerpt field below each post, this allows you to set the excerpt you wish to show. To use this option go to a post, and at the top of the page click “Screen Options” and choose the “Excerpt” box.
In my testing, adding the embed iframe link from Youtube does not show in the excepts on the blog page, nor does using the video element within the builder. How are you adding the videos?
Another option is to add this code to the end of your functions.php file in Appearance > Editor:add_filter('wpv_filter_post_excerpt', 'remove_youtubelinks_func'); function remove_youtubelinks_func($excerpt){ return $excerpt = preg_replace('~(?:http|https|)(?::\/\/|)(?:www.|)(?:youtu\.be\/|youtube\.com(?:\/embed\/|\/v\/|\/watch\?v=|\/ytscreeningroom\?v=|\/feeds\/api\/videos\/|\/user\S*[^\w\-\s]|\S*[^\w\-\s]))([\w\-]{11})[a-z0-9;:@?&%=+\/\$_.-]*~i', '', $excerpt); }Best regards,
MikeAugust 13, 2017 at 4:22 pm in reply to: Integrating Autoposting From Zapier Into Enfold Advanced Layout Editor #838248Hi,
Your Image with Hotspots is a full width element, so it is dropping down and forcing your sidebar below it. Try putting your Image with Hotspots at the top of the page, and your blog post element below it. It may still force your sidebar down. Also try disabling your plugins. I’ve seen the JetPack plugin cause the sidebar to drop below the content before too.Best regards,
Mike -
AuthorPosts







