Forum Replies Created
-
AuthorPosts
-
Yes I did figure it out. Thanks! It was my own stupid mistake. I guess the code I replaced worked but I didn’t notice because they were being hidden by some custom css we had in there.
Does anybody have any idea how I can fix this?
I found a workaround. The problem seemed related to the managed wordpress environment so I installed a blank theme on a different server and imported the demon there with no problems. i them exported the content and media and imported that into my original site along with the theme settings. All is good now.
I just had GODaddy do it for me and they added this to the wp-config.
define( ‘WP_MEMORY_LIMIT’, ‘256M’ );
I’m still getting an internal server error after I try the import. Any ideas?
I am having trouble import the Gym Theme. I tried manually and it did not work. Are you able to help me as well?
I’m having the same issue. Was there any resolution?
I just confirmed them. It should be good to go.
Does anybody have any ideas?
I figure it out. I was missing a couple closing brackets.
@media screen and (max-width: 769px) { #av-custom-submenu-1, #sub_menu1 { display:none !important; } } @media only screen and (min-width: 768px) { #av-custom-submenu-2, #sub_menu2 { display: none !important; } }
So I’ve created a copy of the sub menu and given those two sections unique ids. That seemed to have solved the weird jumping issue thanks! But now I have a different issue. I can’t seem to hide one of the menus using css. Sub menu 1 dissapears on mobile but sub menu 2 will not disappear above 769.
Here is the code I am using.
@media screen and (max-width: 769px) { #av-custom-submenu-1, #sub_menu1 { display:none !important; } @media only screen and (min-width: 768px) { #av-custom-submenu-2, #sub_menu2 { display: none !important; }
Am I doing something wrong?
I’ve cleared my cahce and all cookies. On Safari, Firefox and Chrome I’m still getting the same behaviour.
Here are two sample videos I recorded to show you exactly what I’m experience.
Any thoughts?
For me it works fine on a computer but once it is on a phone those 2 buttons don’t work. I’ve tried it on Chrome, Firefox and Safari on my iphone and Chrom on an android. Same thing on both devices.
Thank you so much!! This will definitely get me started on the right track. I had no idea where to begin. I’m glad this won’t require a plugin.
I am having this issue as well. Is there a solution as of yet?
Hi Rikard,
I’ve disabled the auto optimize plugin and the issues is still there.
Yep. It is defintiely therer. I am using Far Future Exoiry but even with . it deactivated the gap is still there.
https://i.postimg.cc/tTNnVygX/Screen-Shot-2019-01-19-at-11-13-19-PM.png
Try adding a product to you cart and then go to ”View Cart’ or ‘Checkout’. Those pages specifically it shows up on mobile or if the viewing area is small enough.
Well finally after 2 days of scraping through google and trial and error i figured it out.
wnet to searchform.php and changed the following
$search_params = apply_filters('avf_frontend_search_form_param', array( 'placeholder' => __('Search','avia_framework'), 'search_id' => 's', 'form_action' => home_url( '/' ), 'ajax_disable' => false ));
to
$search_params = apply_filters('avf_frontend_search_form_param', array( 'placeholder' => __('Search','avia_framework'), 'search_id' => 's', 'form_action' => home_url( '/shop/' ), 'ajax_disable' => false ));
… :(
Anyone have any ideas?
I tried to figure it out and it looks like it works at first but the actual search results do not reflect the change. I copied functions-enfold.php to my child theme and changed the following lines
$items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown menu-item-avia-special"> <a href="shop/?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a> </li>';
to
$items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown menu-item-avia-special"> <a href="shop/?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a> </li>';
- This reply was modified 5 years, 11 months ago by hotspot01. Reason: update
It can be marked as closed. Thanks.
Brilliant! Thank you.
I may have spoken too soon. It looks like it worked on all pages except for the woocommerce shop pages.
Hi Victoria,
The code above didn’t work but MIke gave me some code that solved another problem and this one at the same time. I gues they were related. in WordPress > Customize > Additional CSS:
@media only screen and (max-width: 767px) { .responsive#ls-global #top.stretched #wrap_all #header.all_colors { height: 80px !important; } .menu-item-avia-special { top: 40px !important; } }
Thanks. You guys all make a great support team
Worked Perfectly! Thank you so much!
I’ve tried adding it to the custom css file in the enfold folder and it didn’t do anything.
I just update it again. It should work now.
Also, I’m assuming it’s related but the is a huge gap above the layerslider when I go into mobile view. So weird.
That worked wonderfully!! Thank you so much.
Ok. I have one last question. Is it possible to only get the bg panel to show when the page is scrolled similar to the way the coloured logo shows up? or does the ‘transparency logo’ just cover the regular logo?The problem with doing it that way (at least when I tried it) is that it will always be inside the container. I actually want it to hang outside of the container on the left. Here is a sample of what I am going for:
[img]https://thumb.ibb.co/j0U8Pc/apex_nav_sample.jpg[/img]
https://ibb.co/j0U8PcI just need to figure out how to make the overflow display the part of the the panel that is currently hidden. Is it something that is possible?
- This reply was modified 6 years, 8 months ago by hotspot01.
-
AuthorPosts